.claude/skills/vault-status/SKILL.md
Show status of all LLM Wiki vaults — page counts, source counts, last activity, and git status. Use when user wants to see vault status, list vaults, or check wiki health.
npx skillsauth add RonanCodes/llm-wiki vault-statusInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Show an overview of all vaults and their current state.
/vault-status
Scan for vaults in the vaults/ directory. Each subdirectory with a CLAUDE.md is a vault.
For each vault, gather stats by running these commands:
VAULT="vaults/<name>"
# Page count (markdown files in wiki/, excluding index.md)
find "$VAULT/wiki" -name "*.md" ! -name "index.md" | wc -l
# Source count (files in raw/, excluding assets/)
find "$VAULT/raw" -maxdepth 1 -type f | wc -l
# Domain (from CLAUDE.md)
grep "Domain" "$VAULT/CLAUDE.md" | head -1
# Last log entry
grep "^## \[" "$VAULT/log.md" | tail -1
# Git status
cd "$VAULT" && git status --porcelain | wc -l # 0 = clean
## LLM Wiki Vaults
| Vault | Domain | Pages | Sources | Last Activity | Git |
|-------|--------|-------|---------|---------------|-----|
| my-research | ai-research | 42 | 15 | 2026-04-13 ingest | clean |
| personal | personal | 8 | 3 | 2026-04-10 query | 2 dirty |
No vaults found. Create one with: /vault-create <name>
vaults/ containing a CLAUDE.md are treated as vaults.md files in wiki/ subdirectories (concepts, entities, sources, comparisons), excluding index.mdraw/ (not assets/)## [date] type | Title entry in log.mddata-ai
Extract transcript from a YouTube video as clean readable text. Use when user shares a youtube.com or youtu.be link and wants the transcript, content summary, or to read what was said.
development
Page type templates and frontmatter conventions for LLM Wiki pages. Reference skill loaded by ingest, query, and lint skills to ensure consistent wiki structure.
documentation
Import an existing Obsidian vault, markdown folder, or git repo as an llm-wiki vault. Moves content into vaults/, adds missing structure (index, log, CLAUDE.md, frontmatter). Use when user wants to import, adopt, migrate, or bring in an existing knowledge base.
documentation
Create a new LLM Wiki vault with proper directory structure, index, log, and conventions. Use when user wants to create a vault, start a new wiki, or set up a new knowledge base.