Agent Skills
› Yeachan-Heo/oh-my-codex
› wiki
wiki
GitHub提供持久化的 Markdown 项目知识库管理功能,支持通过 CLI 进行知识条目的录入、查询、编辑、删除及全文检索。具备自动捕获会话发现内容的能力,并维护页面间的交叉引用,用于沉淀架构决策与调试经验等上下文信息。
Trigger Scenarios
需要记录或查找项目架构设计文档时
需要整理和检索历史调试经验或环境配置时
会话结束时自动捕获关键发现点时
Install
npx skills add Yeachan-Heo/oh-my-codex --skill wiki -g -y
SKILL.md
Frontmatter
{
"name": "wiki",
"triggers": [
"wiki add",
"wiki lint",
"wiki query",
"wiki read",
"wiki delete"
],
"description": "Persistent markdown project wiki stored under repository omx_wiki with keyword search and lifecycle capture"
}
Wiki
Persistent, self-maintained markdown knowledge base for project and session knowledge.
Operations
Ingest
omx wiki wiki_ingest --input '{"title":"Auth Architecture","content":"...","tags":["auth","architecture"],"category":"architecture"}' --json
Query
omx wiki wiki_query --input '{"query":"authentication","tags":["auth"],"category":"architecture"}' --json
Lint
omx wiki wiki_lint --json
Quick Add
omx wiki wiki_add --input '{"title":"Page Title","content":"...","tags":["tag1"],"category":"decision"}' --json
List / Read / Delete
omx wiki wiki_list --json
omx wiki wiki_read --input '{"page":"auth-architecture"}' --json
omx wiki wiki_delete --input '{"page":"outdated-page"}' --json
omx wiki wiki_refresh --json
Categories
architecture, decision, pattern, debugging, environment, session-log, reference, convention
Storage
- Pages:
omx_wiki/*.md - Index:
omx_wiki/index.md - Log:
omx_wiki/log.md
Cross-References
Use [[page-name]] wiki-link syntax to create cross-references between pages.
Auto-Capture
At session end, discoveries can be captured as session-log-* pages. Configure via wiki.autoCapture in .omx-config.json.
Hard Constraints
- No vector embeddings — query uses keyword + tag matching only
- Wiki files are repository project knowledge under
omx_wiki/; legacy.omx/wiki/is read-only compatibility input when no canonical wiki exists
Version History
- e94437f Current 2026-08-20 07:18


