Command
/wiki-ingest
Ingest a source file from raw/ into the LLM Wiki — read, discuss, write summary page, update cross-references across 5-15 pages, regenerate index, append to log. Usage /wiki-ingest <path-to-source>
One command from claude-skills.
shell
$ npx -y skills add alirezarezvani/claude-skills --agent claude-codeShips with claude-skills. Installing the plugin gets this command.
How it fires
How this command gets triggered: by you, by Claude, or both.
- Fires itselfClaude auto-loads it when your prompt matches the work.
- You can call itInvoke it directly when you want it.
- Slash command
/wiki-ingest
Context preview
What this command does when you run it.
Ingest a source file from raw/ into the LLM Wiki — read, discuss, write summary page, update cross-references across 5-15 pages, regenerate index, append to log. Usage /wiki-ingest <path-to-source>
Stats
Stars23,060
Forks3,139
LanguagePython
LicenseMIT
Ships with claude-skills
Command definition
wiki-ingest.md
--- name: wiki-ingest description: Ingest a source file from raw/ into the LLM Wiki — read, discuss, write summary page, update cross-references across 5-15 pages, regenerate index, append to log. Usage /wiki-ingest <path-to-source> --- <!-- canonical copy: engineering/llm-wiki/commands/wiki-ingest.md — keep in sync (root copy uses repo-root-relative script paths) --> # /wiki-ingest Ingest a new source into the LLM Wiki. This is the most-used command. The flow: read the source → discuss TL;DR and key claims with you → write a source summary page → update every relevant entity and concept page → flag contradictions → update `index.md` → append to `log.md`. A typical ingest touches **5-15 wiki pages**. You (the user) are in the loop: the ingestor proposes changes and waits for your confirmation before writing. ## Usage ``` /wiki-ingest <path> /wiki-ingest raw/papers/monosemanticity.pdf /wiki-ingest raw/articles/2026-04-01-interpretability-post.md ``` ## What happens 1. **Prep** — runs `engineering/llm-wiki/skills/llm-wiki/scripts/ingest_source.py` to get title, preview, and suggested summary path 2. **Read** — reads the source directly 3. **Discuss** — reports TL;DR, key claims, which pages will be touched, any contradictions 4. **Confirm** — waits for your go-ahead (or redirects) 5. **Write** — creates the source summary, updates 5-15 pages, flags contradictions
