Capabilities

Features

25 skills that turn Claude Code into a knowledge engine.

Ingest

Process any source into wiki pages

Drop in a URL, PDF, YouTube video, tweet, gist, Office doc, or pasted text. Claude reads it, extracts key information, creates source notes, entity pages, and concept pages.

A single source typically creates 3-7 wiki pages with full YAML frontmatter and wikilinks.

ingest
> /ingest https://article.com --vault research Creating pages: + wiki/sources/article-name.md + wiki/entities/author-name.md + wiki/concepts/key-idea.md ~ wiki/index.md (updated) Committed: ingest article-name
Query

Ask questions, get cited answers

Claude reads your wiki's index, finds relevant pages, and synthesizes answers with citations. Add --save to file answers back into the wiki — your explorations compound.

query
> /query "Compare RAG vs wiki" --save Found 4 relevant pages... RAG re-derives each query. A persistent wiki compiles once, keeps current. Saved to: + wiki/comparisons/rag-vs-wiki.md
Lint

Health-check your knowledge

8 automated checks: orphan pages, broken wikilinks, missing frontmatter, empty source links, contradictions. Reports grouped by severity. --fix auto-repairs.

lint
> /lint --vault research --fix Critical: [[missing-page]] referenced but missing Warning: old-tool.md — orphan (0 inlinks) Info: "ML" — 8 mentions, no page Auto-fixed: 2 issues
Promote

Graduate knowledge between vaults

When finishing a project, promote reusable learnings to your meta vault. Claude identifies what's reusable vs project-specific, creates or merges pages in the target vault.

promote
> /promote project-alpha --to meta Promoted: + meta/concepts/nextjs-deploy.md ~ meta/concepts/auth-patterns.md (merged) Skipped: - client-api.md (project-specific)