Maintains a persistent, interlinked markdown wiki between immutable raw sources and answers: ingest, query, lint, index and log—compounding knowledge instead of one-shot RAG.
94
94%
Does it follow best practices?
Impact
96%
0.97xAverage score across 3 eval scenarios
Passed
No known issues
Paths and filenames come from the wiki schema. This document describes behaviors that work across layouts.
Purpose: Let the agent (and human) find pages without embedding search. At small-to-medium scale, reading the index first is often enough.
Typical contents:
Update rule: After every ingest that adds or materially changes wiki pages, update the index so it stays a complete catalog of wiki pages the schema cares about.
Purpose: Chronological audit trail: what happened, when, and which files moved.
Discipline:
## [YYYY-MM-DD] ingest | Short title
## [YYYY-MM-DD] query | Short label
## [YYYY-MM-DD] lint | Short labelBody: Bullets listing touched wiki paths, new sources referenced, or lint findings summary.
Grep examples (adjust path to schema):
grep '^## \[' wiki/log.md | tail -10
grep 'ingest' wiki/log.mdIf the schema allows, use frontmatter for date, tags, sources—enables Dataview-style queries in Obsidian and similar tools. Do not require it unless the schema says so.