Your Aeris agents share a brain.
Andrej Karpathy described an "LLM Wiki": instead of re-reading everything from scratch every chat, the system compiles your raw sources into a real, interlinked wiki of markdown files that grows over time. Aeris does exactly that for your agents.
Every agent writes to the same fabric. Aeris reads each write, extracts entities and topics, and updates a persistent wiki of plain markdown pages. The wiki lives as a folder of .md files — open it in Obsidian, commit it to git, grep it from the terminal.
Watch the wiki build itself
Write as any agent. Entities and topics appear in the sidebar. Other agents can recall them through wiki_ask.
Northwind
The explorable graph
Every write becomes a node. Entities and topics are the cross-references. Hover a node to highlight its edges.
- aeris-011 writes shared
- aeris-021 writes shared
- aeris-031 writes shared
aeris-03 wrote: "Acme contact is Priya at priya@acme.co; she signs purchase orders."
other agents can now use wiki_ask to retrieve this.
Command console
Run wiki_llm_status, fabric_write, and wiki_ask as any persona. Output goes straight into the same fabric as the panels above.
Training data export
Best writes get exported as JSONL fine-tuning pairs.
{
"messages": [
{
"role": "system",
"content": "You are Mira Ahn, an Aeris agent. Answer from shared fabric memory when relevant."
},
{
"role": "user",
"content": "What do we know about Vendor?"
},
{
"role": "assistant",
"content": "Vendor Northwind requires PO before invoice; net-30 terms."
}
],
"meta": {
"source": "aeris-01",
"id": 1,
"score": 0.68
}
}
{
"messages": [
{
"role": "system",
"content": "You are Tev Okoro, an Aeris agent. Answer from shared fabric memory when relevant."
},
{
"role": "user",
"content": "What do we know about Customer?"
},
{
"role": "assistant",
"content": "Customer Acme prefers webhook delivery over polling for order events."
}
],
"meta": {
"source": "aeris-02",
"id": 2,
"score": 0.7
}
}Each row is a {messages, meta} sample — drop straight into your fine-tuning pipeline.
One agent learns it, every agent can recall it.
Every write gets extracted into entity pages, topic pages, and cross-references.
Quality scoring, duplicate detection, auto-archival of dead weight. Your brain stays clean as it grows.
Your best agent work becomes fine-tuning pairs for replacement models.
curl -fsSL https://aeris.dev/install.sh | sh
use wiki_llm_status— confirm the model is wired upuse fabric_writeto record any decision, fact, or fix- watch
~/fabric/wiki/entities/and~/fabric/wiki/topics/fill in use wiki_ask "what do we know about X"— synthesized answers with citations
Every future session starts with that knowledge already loaded. That's the whole pitch.
Inspired by the Icarus wiki plugin and the Nous Research Hermes agent ecosystem.