원클릭으로
wiki
LLM Wiki — persistent markdown knowledge base that compounds across sessions (Karpathy model)
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
LLM Wiki — persistent markdown knowledge base that compounds across sessions (Karpathy model)
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Clean AI-generated code slop with a regression-safe, deletion-first workflow and optional reviewer-only mode
Process-first advisor routing for Claude, Codex, or Gemini via `omc ask`, with artifact capture and no raw CLI assembly
Full autonomous execution from idea to working code
Cancel any active OMC mode (autopilot, ralph, ultrawork, ultraqa, swarm, ultrapilot, pipeline, team)
Given a target Android app — an APK path, a running emulator serial, or an installed package id — scope every screen and build a high-fidelity cloned RN/Expo app forked from app-template, filled with original mock content. Runs a 6-stage Acquire→Scope→Scaffold→Build→Parity→Deliver pipeline with 3 hard gates. Triggers: "clone app", "clone this APK", "clone <app> for me", "high-fidelity RN clone", "make a clone of this emulator app", /clone-app.
Configure notification integrations (Telegram, Discord, Slack) via natural language
| name | wiki |
| description | LLM Wiki — persistent markdown knowledge base that compounds across sessions (Karpathy model) |
| triggers | ["wiki","wiki this","wiki add","wiki lint","wiki query"] |
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)