docs(wiki): LLM-Wiki pilot — decisions/architecture knowledge base #162
Loading…
Add table
Reference in a new issue
No description provided.
Delete branch "wiki-pilot"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Pilot step 1 of the Karpathy LLM-Wiki pattern, scoped to decision-dense areas — a starting point to discuss, not a finished system.
What it is
An agent-maintained
docs/wiki/that records what was decided and links to where it lives in code. Code stays the source of truth; pages link rather than duplicate (per thedecisions-match-shipped-codeprinciple).index.md— purpose, conventions (the "schema" that keeps the LLM a maintainer), the lint workflow, and the page catalog.agent-harness.md— zot (agent) + Colibri (control plane) split; autospawn + the RPC driver (colibri#143); links toAGENTS.md,spawner.rs,socket.rs, the transcript, the smoke test.naming-decisions.md— a living ledger of renames from superseded assumptions: shipped (COLIBRI_AUTOSPAWN_PI→,pi_session_id→session_id,fake→sample, …), in-flight (usb_nodes→hive_nodes, #161), and known residue (pi_type,FEATURE_COLIBRI,clawdie-startx, the danglingADR-agent-harness-consolidation.md).quality-gates.md—ci-checks.shas the pre-merge gate and why drift reachedmain.Why
Directly targets the "lingering old decisions" pain: one lintable place that ties decisions ↔ code, so half-finished renames and stale docs surface cheaply. It already captures real open drift found during the sweep.
Deliberately NOT included yet
mother-hivepage — waits on #161.Markdown gate green. Uses Forge-clickable relative links as the wikilink convention (Obsidian
[[ ]]adapted to a repo).🤖 Generated with Claude Code
Pilot step 1 of the Karpathy LLM-Wiki pattern, scoped to decision-dense areas: an agent-maintained docs/wiki/ that records WHAT was decided and links to WHERE it lives in code (code stays the source of truth; pages link, don't duplicate). Pages: - index.md — purpose, conventions (the 'schema'), lint workflow, catalog - agent-harness — zot (agent) + Colibri (control plane); autospawn + RPC driver - naming-decisions — ledger of harness-neutral/architecture renames (shipped, in-flight, and known residue) — the drift tracker - quality-gates — ci-checks.sh as the pre-merge gate; why drift reached main Intent: make the 'lingering old decision' bookkeeping near-zero-cost and lintable. Lint tool itself (advisory, flag-don't-rewrite) is the next pilot step. Already records real open drift (e.g. the dangling ADR reference). Markdown gate green. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>