wiki-workflow
Wiki Workflow
Maintain an LLM-native wiki on the local filesystem. The wiki is a structured, interlinked collection of markdown files that the agent grows incrementally as the user feeds it source material and asks questions. Because Agent Computer VMs are persistent, the local filesystem IS the wiki — no external database or sync layer needed.
Why this workflow exists
Traditional RAG embeds source chunks and retrieves them on each query. That works, but the index is opaque, hard to maintain, and doesn't compound. This workflow takes the opposite approach: the agent reads sources, distills them into focused wiki pages, and links them together. Over time the user owns a real, browsable, editable knowledge base — the agent is the librarian, not the search engine.
The whole wiki lives under /code/wiki/. Standard Unix tools (rg, cat, ls) are the search layer. The agent reads files directly. There is no sync command and no external service.