From llm-wiki
Bootstrap a fresh LLM Wiki vault with the three-layer structure, schema files, and starter templates. Usage /wiki-init <path> --topic "<topic>" [--tool all|claude-code|codex|cursor|antigravity]
How this command is triggered — by the user, by Claude, or both
Slash command
/llm-wiki:wiki-initThe summary Claude sees in its command listing — used to decide when to auto-load this command
# /wiki-init
Bootstrap a new LLM Wiki vault. Creates `raw/`, `wiki/{entities,concepts,sources,comparisons,synthesis}`, the index and log, and installs the schema file(s) for your LLM CLI of choice.
## Usage
## Examples
## What it creates
## Next steps
After init:
1. Open the vault in Obsidian
2. Drop a source into `raw/`
3. Run `/wiki-ingest raw/<your-file>`
## Script
- `engineering/llm-wiki/skills/llm-wiki/scripts/init_vault.py`
## Skill Reference
→ `engineering/llm-wiki/skills/llm-wiki/SKILL.md`Bootstrap a new LLM Wiki vault. Creates raw/, wiki/{entities,concepts,sources,comparisons,synthesis}, the index and log, and installs the schema file(s) for your LLM CLI of choice.
/wiki-init <path> --topic "<one-line topic>"
/wiki-init <path> --topic "<topic>" --tool <claude-code|codex|cursor|antigravity|opencode|gemini-cli|all>
/wiki-init <path> --topic "<topic>" --force # overwrite non-empty dir
/wiki-init ~/vaults/research --topic "LLM interpretability"
/wiki-init ./book-wiki --topic "The Power Broker — Robert Caro" --tool all
/wiki-init ~/vaults/founders --topic "SaaS founder playbook" --tool codex
<path>/
├── raw/
│ └── assets/
├── wiki/
│ ├── index.md # from template
│ ├── log.md # from template
│ ├── entities/
│ ├── concepts/
│ ├── sources/
│ ├── comparisons/
│ ├── synthesis/
│ └── .templates/ # page templates for reference
├── CLAUDE.md # if --tool claude-code or all
├── AGENTS.md # if --tool codex|cursor|antigravity|opencode|gemini-cli|all
├── .cursorrules # if --tool cursor or all
└── .gitignore
After init:
raw//wiki-ingest raw/<your-file>engineering/llm-wiki/skills/llm-wiki/scripts/init_vault.py→ engineering/llm-wiki/skills/llm-wiki/SKILL.md
npx claudepluginhub leahyra/claude-skills-collection --plugin llm-wiki/wiki-initInteractive setup wizard for a knowledge base wiki: scans markdown-heavy directories, prompts for name/sources/output, creates .wiki-compiler.json config and output directory structure.