Wiki Log¶
Append-only chronological record of wiki operations.
[2026-04-08] init¶
- Wiki repository created
- Directory structure established (raw/, wiki/, schema/)
- Index and log initialized
[2026-04-09] ingest: oh-my-codex¶
- Researched
Yeachan-Heo/oh-my-codex(18.9k stars) and ecosystem (claw-code, 178k stars) - Ingested: GitHub repo, documentation website, AGENTS.md, README
- Created
wiki/oh-my-codex.md— concept page covering: state persistence (.omx/), staged pipeline, ralph vs team modes, native hooks, MCP servers, comparison with ralph - Updated index.md with new page under Concepts category
- Key findings: OMX solves Codex long-task timeout via persistent state + staged pipeline + parallel worktrees — not by making a smarter agent, but by making a better调度层
[2026-04-18] harness | BMAD-inspired agent harness¶
- Created root
AGENTS.mdas the agent entry contract - Created
schema/AGENT_HARNESS.mdmapping BMAD roles and workflows to wiki maintenance - Added raw source cards for Karpathy LLM Wiki, BMAD Method, and legacy oh-my-codex traceability
- Created missing concept pages:
llm-wiki,three-layer-architecture,rag-vs-llm-wiki,agent-harness - Added
tools/wiki_lint.pyas the local verification gate - Updated
wiki/index.md,README.md, andschema/WIKI.mdto reflect the harness
[2026-04-18] conversation | automatic learning from project chat¶
- Captured the user's expectation that substantive project chats should be auto-ingested
- Created
raw/conversations/2026-04-18-chat-learning-expectation.md - Created
wiki/conversation-learning.md - Updated
AGENTS.md,schema/AGENT_HARNESS.md,README.md,wiki/agent-harness.md, andwiki/index.md
[2026-04-18] publishing | GitHub Pages search site¶
- Captured the request in
raw/conversations/2026-04-18-github-pages-search-request.md - Created
wiki/github-pages-site.md - Added
tools/build_pages.pyand tests intests/test_build_pages.py - Generated the static site bundle in
site/ - Added
.github/workflows/pages.ymlfor Pages deployment - Updated
README.mdandwiki/index.md
[2026-04-18] publishing | switch GitHub Pages to MkDocs Terminal theme¶
- Captured the theme decision in
raw/conversations/2026-04-18-mkdocs-terminal-request.md - Reworked
tools/build_pages.pyto generate MkDocs docs source and runmkdocs build - Updated tests to validate MkDocs staging and config generation
- Updated
.github/workflows/pages.yml,README.md, andwiki/github-pages-site.md
[2026-04-18] harness | add publishing flow for MkDocs site¶
- Updated
AGENTS.mdwithPublishing Flowand MkDocs rebuild expectations - Updated
schema/AGENT_HARNESS.mdwith a dedicated publishing workflow - Updated
wiki/github-pages-site.mdto state that public content changes require a rebuild
[2026-04-18] publishing | group MkDocs navigation and ignore generated artifacts¶
- Updated
tools/build_pages.pyto stage raw source cards into MkDocs docs and grouped navigation - Updated tests to cover source-card staging and grouped
mkdocs.ymloutput - Added
.gitignoreentries for generated MkDocs artifacts:mkdocs.yml,mkdocs_docs/, andsite/ - Updated
README.mdandwiki/github-pages-site.md
[2026-04-18] publishing | add source-card index links and make targets¶
- Updated
wiki/index.mdso the Sources section links to captured raw source cards by category - Added
Makefilewithtest-site,build-site,lint-wiki, andverify - Updated
README.md,AGENTS.md, andwiki/github-pages-site.md
[2026-04-18] publishing | group concept navigation and add GitHub verify workflow¶
- Captured the request in
raw/conversations/2026-04-18-navigation-and-verify-request.md - Updated
tools/build_pages.pyso concept navigation is grouped into architecture, workflow, and publishing - Updated
wiki/index.mdto mirror the grouped concept navigation and include the new conversation source - Added
.github/workflows/verify.ymlto runmake verifyon pull requests and pushes tomain - Updated
README.md,AGENTS.md, andwiki/github-pages-site.md
[2026-04-18] publishing | make verify compatible with CI runners without uv¶
- Updated
Makefilesobuild-siteusesuv tool runwhenuvexists and falls back to the active Python environment otherwise - Confirmed
make verifyworks in a no-uvvirtualenv withmkdocs-terminalinstalled
[2026-04-18] conversation | CEX wallet system learning¶
- Captured the tutoring session in
raw/conversations/2026-04-18-cex-wallet-system-learning.md - Created
wiki/cex-wallet-system.md - Updated
wiki/index.mdwith the new architecture concept and conversation source - Distilled durable conclusions around: internal ledger vs on-chain settlement, dual state machines, withdrawal object model, settlement boundary, retryable vs terminal failure, sweep vs rebalancing, wallet tiers, and BTC vs EVM adapter differences