From wiki
Purge the wiki vault, then re-index the entire codebase via the `wiki` MCP service.
How this command is triggered — by the user, by Claude, or both
Slash command
/wiki:reindexThe summary Claude sees in its command listing — used to decide when to auto-load this command
# /reindex — wipe wiki, re-index codebase Purge the wiki vault, then re-index the entire codebase via the `wiki` MCP service. ## Steps 1. **Confirm with user** before wiping. Wipe is irreversible — destroys all thoughts, entities, reasons, conclusions, purposes. 2. **Purge `.wiki/` vault** (keep `.wiki/purposes/` definitions if user wants — ask): - Default (full wipe): `rm -rf .wiki/thoughts .wiki/entities .wiki/reasons .wiki/conclusions .wiki/questions .wiki/ingest` - Recreate empty `.wiki/ingest/` after. 3. **Read** `.claude/tools/wiki/INGEST_FLOW.md` for current ingest semanti...
Purge the wiki vault, then re-index the entire codebase via the wiki MCP service.
Confirm with user before wiping. Wipe is irreversible — destroys all thoughts, entities, reasons, conclusions, purposes.
Purge .wiki/ vault (keep .wiki/purposes/ definitions if user wants — ask):
rm -rf .wiki/thoughts .wiki/entities .wiki/reasons .wiki/conclusions .wiki/questions .wiki/ingest.wiki/ingest/ after.Read .claude/tools/wiki/INGEST_FLOW.md for current ingest semantics.
Walk codebase — collect source files. Skip:
target/, node_modules/, dist/, build/, .git/.wiki/, .claude/tools/wiki/target/For each source file call ingest_thought({title: <relpath>, content: <file body>}). Auto-chunking handles multi-purpose splits.
Periodically (every ~25 files) run search_fulltext for emerging clusters; promote 3+ similar thoughts to entities via ingest_entity.
After batch run /learn (ingest-time mode) on the new doc IDs to wikilink mentions and dedupe.
OPENAI_API_KEY — without it everything falls into general purpose..wiki/ingest/ state.npx claudepluginhub yesitsfebreeze/wiki --plugin wiki/reindexRebuilds Repowise vector store by re-embedding all wiki pages into LanceDB. Useful after switching embedding providers, data corruption, or adding new pages.
/reindexForces full re-index of the codebase by deleting embeddings.db, running sync script, and reporting completion stats.