Персистентная база знаний между сессиями

★ 8.5 · knowledge-management

wiki is a Claude Code skill that implements a persistent markdown knowledge base compounding across sessions, inspired by Karpathy's LLM Wiki concept. It exposes six core operations: `wiki_ingest` (process knowledge into one or more pages), `wiki_query` (keyword and tag search with LLM-synthesized answers and citations), `wiki_lint` (health checks for orphan pages, stale content, broken cross-references, and structural contradictions), plus `wiki_add`, `wiki_read`, and `wiki_delete`. Pages are stored as YAML-frontmatter markdown files under `.omc/wiki/`, organized into categories such as architecture, decision, pattern, debugging, and session-log. Cross-references use `[[page-name]]` wiki-link syntax, and at session end significant discoveries are automatically captured as session-log pages — all without vector embeddings, relying solely on keyword and tag matching.