LLM Wiki Ingest
Turn a Raw source into short, reusable, source-linked Wiki notes.
Steps
Confirm the source file lives in
Raw/Sources/and has valid source frontmatter (Title,Reference,Created,Processed,tags: [source]).Search the catalog before opening anything broad:
python scripts/wiki_tool.py search-catalog --query "<source topic>"Open only the most relevant existing Wiki notes. Prefer updating an existing note over creating a near-duplicate.
Read the Raw source and extract its distinct, reusable claims.
Create or update focused notes under
Wiki/using the templates in_templates/. One idea per note. Use the correct folder and tag (seeSchema/naming-conventions.md).In every note you create or touch, add the Raw source path to
sourcesand keepsource_countequal tolen(sources). Bumpupdated.Rebuild and validate:
python scripts/wiki_tool.py build python scripts/wiki_tool.py lint python scripts/wiki_tool.py source-scan --update --accept-covered python scripts/wiki_tool.py source-lintIf the ingest meaningfully changed the Wiki, add a log entry:
python scripts/wiki_tool.py log --title "Ingested <source>" --details "<what changed>"
Rules
- Never invent claims the source does not support.
- Never edit the Raw source content itself (frontmatter
Processedis managed bysource-scan --update --accept-covered). - Keep the transformation visible: a small source becomes a few focused notes, not one giant dump.