From oh-my-claudecode
Persistent markdown knowledge base for cross-session project knowledge. Supports ingest, query, lint, and auto-capture with wiki-links and categorized pages.
How this skill is triggered — by the user, by Claude, or both
Slash command
/oh-my-claudecode:wikiThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Persistent, self-maintained markdown knowledge base for project and session knowledge. Inspired by Karpathy's LLM Wiki concept.
Persistent, self-maintained markdown knowledge base for project and session knowledge. Inspired by Karpathy's LLM Wiki concept.
Process knowledge into wiki pages. A single ingest can touch multiple pages.
wiki_ingest({ title: "Auth Architecture", content: "...", tags: ["auth", "architecture"], category: "architecture" })
Search across all wiki pages by keywords and tags. Returns matching pages with snippets — YOU (the LLM) synthesize answers with citations from the results.
wiki_query({ query: "authentication", tags: ["auth"], category: "architecture" })
Run health checks on the wiki. Detects orphan pages, stale content, broken cross-references, oversized pages, and structural contradictions.
wiki_lint()
Add a single page quickly (simpler than ingest).
wiki_add({ title: "Page Title", content: "...", tags: ["tag1"], category: "decision" })
wiki_list() # Show all pages (reads index.md)
wiki_read({ page: "auth-architecture" }) # Read specific page
wiki_delete({ page: "outdated-page" }) # Delete a page
View wiki operation history by reading .omc/wiki/log.md.
Pages are organized by category: architecture, decision, pattern, debugging, environment, session-log
.omc/wiki/*.md (markdown with YAML frontmatter).omc/wiki/index.md (auto-maintained catalog).omc/wiki/log.md (append-only operation chronicle)Use [[page-name]] wiki-link syntax to create cross-references between pages.
At session end, significant discoveries are automatically captured as session-log pages. Configure via wiki.autoCapture in .omc-config.json (default: enabled).
.omc/wiki/ is project-local)npx claudepluginhub yeachan-heo/oh-my-claudecode --plugin oh-my-claudecode74plugins reuse this skill
First indexed Jul 7, 2026
Showing the 6 earliest of 74 plugins
Build, maintain, and query a personal LLM-managed markdown wiki where the LLM owns all writing, cross-referencing, and bookkeeping while the user curates sources. Includes idempotent scripts for ingest, query, and lint.
Builds and maintains an LLM-curated personal knowledge base of markdown files from ingested sources (papers, articles, notes). Compiles sources once into structured, cross-referenced wiki pages to accumulate knowledge over time.
Maintains persistent wiki knowledge base with Markdown formats for entities, concepts, decisions, syntheses, index, and logs. Manages ingest, query, and lint workflows in /pith wiki mode.