wiki-initlisted
Install: claude install-skill litianyi-007/kata
# wiki-init
Bootstrap a new wiki from scratch — **interactively**. The wiki's shape depends on
the domain, so this skill does not hardcode categories. Instead it asks about the
user's domain, proposes a category set that fits, and lets the user edit. The
resulting SCHEMA.md is the authoritative config that all other skills read.
> "The exact directory structure, the schema conventions, the page formats, the
> tooling — all of that will depend on your domain, your preferences, and your
> LLM of choice." — Karpathy, LLM Wiki
## When to use
- User asks to create, start, or initialize a wiki or knowledge base
- No wiki exists yet at the configured path
## Non-interactive mode
For interactive setup, this skill does the LLM walkthrough. For
**scripted setup** (CI, automated provisioning, fresh-machine bootstrap),
shell out to `plugin/scripts/wiki_init.py` directly — it implements the
same final state without any LLM call.
```bash
# Bootstrap from scratch with explicit flags
python {plugin_root}/scripts/wiki_init.py \
--path ~/research-wiki \
--domain "AI research" \
--categories entities,concepts,comparisons,queries \
--set-tags model,paper,concept,reference \
--set-active-days 365 --set-archived-days 730 \
--set-driving-field published_at \
--set-dimension "version:string:false:ingest"
# Or use a domain template (recommended)
python {plugin_root}/scripts/wiki_init.py \
--path ~/market-wiki \
--template market_research
```
Available temp