Language models can help a body of knowledge compound when they collect, compile, query, audit, and extend durable files such as markdown.
Summary
The basic pattern is:
- Collect source material in
raw/. - Compile source material into linked wiki pages.
- Use the wiki as context for later questions.
- Save useful answers and visual outputs.
- Promote durable answers back into the wiki.
- Run audits to improve consistency and coverage.
Architecture
This vault follows three layers:
- Raw sources: immutable evidence in
raw/andClippings/. - Wiki: LLM-owned compiled understanding in
wiki/. - Schema: maintainer instructions in AGENTS.md, supported by index.md and log.md.
The point is accumulation. The LLM should not re-summarize raw sources from scratch for every question. It should maintain a current synthesis in the wiki, then answer from that compiled layer first.
Why It Matters
At small-to-medium scale, a well-maintained markdown wiki can act as practical agent memory without requiring a complex RAG stack. The LLM can read indexes, summaries, source notes, and related pages directly, then write improved artifacts back into the repository.
Related Concepts
- Raw to Wiki Compilation
- Wiki Health Checks
- Question Answering Against a Wiki
- Context Engineering
- Agentic Engineering
- Understanding Bottleneck
Sources
Open Questions
- What is the minimum metadata schema that remains useful after the wiki grows?
- What scale requires a search index or RAG layer?
- How should public summaries cite private or copyrighted raw material?