Spot-check of the three drafts gemini produced in the --max 3 survey smoke test: all cited file paths exist, line numbers and function names land within 1-2 lines of actual symbols (game.pyx:217 cdef class GameState, evaluate.py:220 batched-entropy block, trainer.py:892 _evaluate_parallel, action_distribution at evaluate.py:238 with cited code at line 250 inside it). Numbers cross-checked against archives match. Conclusions preserved. The one systemic weakness was the Last-verified commit field: gemini left a `<short-hash>` placeholder, a literal `HEAD`, or omitted the commit entirely depending on the call. Fixed in two places: 1. Manually patched the three drafts before acceptance and copied them into docs/research/. 2. Added _current_commit_sha and _post_process_draft helpers to both librarian_survey.py and librarian_promote.py. The drafts now go through `**Last verified:**` line normalization that substitutes today's date and `git rev-parse --short HEAD` before being written to disk. Future runs converge deterministically. Net: docs/research/ gains classic-port-notes.md, deep-cfr-batched-evaluation.md, and deep-cfr-evaluation-profile.md. 12 archive entries remain unprocessed. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
280 lines
12 KiB
Markdown
280 lines
12 KiB
Markdown
# Plan: Vendor-Agnostic Librarian
|
||
|
||
**Status:** Design phase. AGENTS.md "Docs & Experiment Workflow" section
|
||
landed in commit `09d5815` (2026-05-07). Shell script and prompt-file
|
||
move not yet started.
|
||
**Owner:** operator-driven; Claude/Codex/Gemini may execute parts.
|
||
**Background:** A `librarian` subagent at `.claude/agents/librarian.md`
|
||
already drafts research notes and surveys docs, but it is Claude-only,
|
||
read-mostly, and cannot be triggered periodically. Doc placement rules
|
||
also lived inside that prompt instead of AGENTS.md, so non-librarian
|
||
agents never saw them.
|
||
|
||
## Goal
|
||
|
||
Split documentation hygiene into two layers:
|
||
|
||
1. **Authoring rules in AGENTS.md** — every agent reads these on every
|
||
turn, so docs land in the right place at write time.
|
||
2. **`scripts/librarian.sh`** — periodic, vendor-agnostic, never
|
||
auto-applies. Catches drift that Layer 1 missed.
|
||
|
||
Layer 1 already exists (commit `09d5815`). This plan covers Layer 2.
|
||
|
||
## Non-Goals
|
||
|
||
- Replacing the existing `librarian.md` prompt content. The note-drafting
|
||
prompt is reused as a Stage 2 backend; only its location moves.
|
||
- Modifying `docs/archive/` or `runs/archive/`. Read-only forever.
|
||
- Editing code, configs, or running training/benchmarks from the
|
||
librarian. Doc/memory work only.
|
||
- Any `auto-apply` mode. Librarian only proposes; humans (or a follow-up
|
||
PR) apply.
|
||
|
||
## Architecture
|
||
|
||
Three stages, run in order. Each stage is independently invocable for
|
||
debugging.
|
||
|
||
### Stage 1 — Deterministic lint (no LLM)
|
||
|
||
Pure shell + `rg`/`find`/small Python helpers + [`lychee`](https://github.com/lycheeverse/lychee).
|
||
Output: a JSON report at `runs/tmp/librarian-<timestamp>.json`. Checks:
|
||
|
||
- **Markdown link integrity** (lychee): every `[text](path)` link in
|
||
`docs/**` and `README.md` resolves; anchors point to real headers.
|
||
Run `lychee --offline --root-dir . docs/**/*.md`. Precedent:
|
||
`~/dev/coolrl/src/coolrl/dev/check_doc_links.py` wraps the same call
|
||
for the sibling repo. We can lift that wrapper as-is.
|
||
- **Code-docs parity** (custom; lychee does not cover this): every
|
||
`path/to/file.py:NN` citation in `docs/**` resolves (file exists,
|
||
line within range). These are inline prose, not markdown links, so
|
||
lychee ignores them. Short Python helper required.
|
||
- **Stale plans**: `docs/plans/*.md` with mtime > N days and no recent
|
||
git commit referencing them.
|
||
- **Promotable archive**: `docs/archive/<name>-*.md` with no
|
||
`docs/research/<name>.md` counterpart, where the archive body
|
||
contains durable-conclusion language.
|
||
- **MEMORY.md drift**: index lines in `~/.claude/projects/.../MEMORY.md`
|
||
that disagree with the target file's `description:` frontmatter.
|
||
- **Duplicate prose**: pairs of docs with high text overlap (e.g., a
|
||
research note that copies an archive body instead of linking it).
|
||
- **Oversize**: files past the 500-line soft cap in AGENTS.md.
|
||
|
||
No LLM calls in Stage 1. Cheap to run frequently.
|
||
|
||
### Stage 2 — LLM judgment (vendor-agnostic)
|
||
|
||
Reads the Stage 1 report and the relevant doc bodies, dispatches to an
|
||
LLM CLI selected by env var:
|
||
|
||
```bash
|
||
LIBRARIAN_LLM=claude # claude code
|
||
LIBRARIAN_LLM=codex # codex cli
|
||
LIBRARIAN_LLM=gemini # gemini cli
|
||
```
|
||
|
||
The system prompt is loaded from `scripts/librarian-prompt.md` (moved
|
||
from `.claude/agents/librarian.md`; same content). LLM produces:
|
||
|
||
- Research-note drafts for promotable archive entries.
|
||
- MEMORY.md drift fixups (one-line diffs).
|
||
- Duplicate-doc merge proposals.
|
||
|
||
Output format: a unified diff + a short rationale per change. Never
|
||
written to disk by the LLM directly — emitted as a patch file under
|
||
`runs/tmp/librarian-<timestamp>.patch`.
|
||
|
||
### Stage 3 — Dry-run apply (default) / human apply
|
||
|
||
Default: print the patch and exit. With `--apply`: `git apply` the patch
|
||
(still requires the human to commit). Conflicts surface as standard
|
||
patch failures — operator resolves manually.
|
||
|
||
`docs/archive/` and `runs/archive/` are filtered out of any patch
|
||
target before apply.
|
||
|
||
## Concurrency Policy
|
||
|
||
Librarian is **never invoked from within an active agent session**. It
|
||
runs on demand by the operator (or via cron / post-commit hook). Because
|
||
Stage 3 is propose-only by default, two parties editing the same file
|
||
cannot corrupt each other — git's 3-way merge handles overlap when the
|
||
operator applies the patch.
|
||
|
||
## Open Questions
|
||
|
||
- Cron cadence? (start with manual-only; add cron once Stage 1 is
|
||
stable)
|
||
- "Durable-conclusion language" detection in Stage 1 — keyword heuristic
|
||
vs. defer to Stage 2 entirely. Default to deferring; Stage 1 just
|
||
flags every archive without a research counterpart.
|
||
- Where the Stage 1 ignore-list lives once false positives accumulate.
|
||
Tentatively `scripts/librarian-ignore.txt` with one rg-style pattern
|
||
per line.
|
||
|
||
## Progress
|
||
|
||
- ✅ AGENTS.md "Docs & Experiment Workflow" section landed
|
||
(commit `09d5815`, 2026-05-07).
|
||
- ✅ Plan drafted at `docs/plans/librarian.md` (this file).
|
||
- ✅ Prompt moved: `.claude/agents/librarian.md` →
|
||
`scripts/librarian-prompt.md`. Claude-specific subagent registration
|
||
removed.
|
||
- ✅ Stage 1, piece 1: `scripts/librarian_check_links.py` (lychee
|
||
wrapper). Caught one stale README link on first run (commit
|
||
`b9bbb4f`).
|
||
- ✅ Stage 1, piece 2: `scripts/librarian_check_citations.py` (custom
|
||
`file:line` citation checker over inline-code spans). Skips
|
||
`docs/archive/` and `docs/plans/archive/`. Ignore list at
|
||
`scripts/librarian-ignore.txt` for intentional future-tense
|
||
references. Caught one real drift in
|
||
`docs/research/optimization_sequencing.md` (path moved into
|
||
`docs/plans/archive/`).
|
||
- ✅ Stage 1 orchestrator: `scripts/librarian.sh`. Runs every Stage 1
|
||
check in order, aggregates exit code, prints findings inline. Single
|
||
entry point for users and (future) cron.
|
||
- ✅ AGENTS.md mentions `scripts/librarian.sh` as the doc-lint entry
|
||
point in "Notes For Future Agents" (commit `0b363b5`).
|
||
- ✅ Stage 1, piece 3: `scripts/librarian_check_oversize.py`. Flags
|
||
any non-archive markdown file over the 500-line soft cap declared
|
||
in AGENTS.md. Caught one real finding on first run:
|
||
`docs/performance.md` at 914 lines — split into sub-topics deferred
|
||
as a separate task.
|
||
- ✅ Stage 1, piece 4: `scripts/librarian_check_stale_plans.py`. Uses
|
||
`git log -1 --format=%cs` per plan file; flags plans whose last
|
||
commit is older than 60 days. Clean on first run (all four plans
|
||
committed 2026-05-07).
|
||
- ✅ Stage 1, piece 5: `scripts/librarian_check_memory_drift.py`.
|
||
Validates that every MEMORY.md index line points to a real file
|
||
with required frontmatter fields (`name`, `description`, `type` ∈
|
||
{user, feedback, project, reference}) and that no memory file is
|
||
orphaned from the index. Memory dir derived from repo root, so the
|
||
script is portable. Clean on first run.
|
||
|
||
## Stage 1 Status: Complete
|
||
|
||
All deterministic checks land. Two remaining concepts intentionally
|
||
moved out of Stage 1 because they require LLM judgment, not
|
||
deterministic detection:
|
||
|
||
- **Promotable archive entries** → Stage 2. "Durable conclusion"
|
||
detection is judgment, not pattern matching.
|
||
- **Duplicate prose** → Stage 2. Shingled-overlap heuristics produce
|
||
too many false positives in this repo's mix of archive snapshots
|
||
and derived research notes; LLM should decide whether two passages
|
||
are the *same idea* vs the *same evidence*.
|
||
|
||
## Stage 1 finding closed
|
||
|
||
`docs/performance.md` 914-line oversize finding is resolved by
|
||
routing the dated experiments and design analysis out of the file:
|
||
|
||
- `docs/archive/deep-cfr-performance-experiments-2026-05-07.md` —
|
||
`torch.compile`, AMP, GPU-forward profiling, Option B (4 sub-experiments).
|
||
- `docs/research/batched-traversal-inference-decision.md` —
|
||
durable A/B/C design rationale.
|
||
- `docs/archive/post-a-optimization-calculus-2026-05-07.md` —
|
||
forward-looking sequencing recorded pre-bench.
|
||
- `docs/archive/option-a-bench-result-2026-05-07.md` —
|
||
bench regression + structural-ceiling diagnosis.
|
||
|
||
`docs/performance.md` trimmed to 345 lines and now points at the
|
||
extracts via a "See Also" section. AGENTS.md soft-cap rule reworded
|
||
to clarify it is a *routing trigger*, not a split mandate.
|
||
|
||
## Stage 2 v1: promote dispatcher
|
||
|
||
✅ `scripts/librarian_promote.py`. Takes a `docs/archive/*.md` path,
|
||
stitches `scripts/librarian-prompt.md` (system prompt) onto the
|
||
archive body with a "draft a research note" task instruction, then
|
||
shells out to the LLM CLI selected by `LIBRARIAN_LLM`
|
||
(claude / codex / gemini; default claude). Output is captured to
|
||
`runs/tmp/librarian-promote-<timestamp>-draft.md` for human review;
|
||
the script never writes into `docs/research/` itself. `--show-prompt`
|
||
prints the assembled prompt for inspection without calling the LLM.
|
||
`--accept` is an explicit per-invocation opt-in that copies the draft
|
||
to the suggested target as part of the same command — still
|
||
propose-only by design (the operator chooses acceptance knowingly,
|
||
not auto-applied).
|
||
|
||
Refuses to run if:
|
||
- the path is not under `docs/archive/`,
|
||
- the implied target `docs/research/<stem>.md` already exists, or
|
||
- the file is missing.
|
||
|
||
If the LLM judges the archive non-promotable, it is instructed to
|
||
return a single line `SKIP: <reason>` instead of a draft.
|
||
|
||
### First successful round-trip (2026-05-08)
|
||
|
||
Smoke test against `docs/archive/option-a-bench-result-2026-05-07.md`
|
||
with `LIBRARIAN_LLM=gemini` produced a draft that passed spot-check:
|
||
`Last verified` header used today's date and the current commit
|
||
(`8bbed31`); cited file paths and line numbers were verified as
|
||
real (`traversal.pyx:473-475`, `inference_server.py:226-228`); code
|
||
snippets matched current source; durable conclusion (sync-blocking
|
||
policy boundary as the structural ceiling) preserved; ~60 lines of
|
||
prose, no bullet soup. Accepted verbatim as
|
||
`docs/research/option-a-bench-result.md`. The whole loop —
|
||
oversize finding → extracted archive → LLM draft → human accept —
|
||
closed without touching the LLM's output.
|
||
|
||
## Stage 2 v2: survey mode
|
||
|
||
✅ `scripts/librarian_survey.py`. Walks `docs/archive/*.md`, filters
|
||
out entries that already have a research counterpart (exact stem
|
||
match or tail match — research notes sometimes drop a domain
|
||
prefix), and dispatches each remaining archive to the same prompt
|
||
template as `librarian_promote.py`. Outputs land under
|
||
`runs/tmp/librarian-survey-<timestamp>/`, one file per archive,
|
||
classified into `<stem>.md` (draft), `<stem>.SKIP.txt` (LLM judged
|
||
non-promotable), or `<stem>.ERROR.txt` (CLI failure).
|
||
|
||
`--dry-run` lists candidates without calling the LLM. `--max N`
|
||
caps the number of archives processed per run, useful for smoke
|
||
tests or cost control.
|
||
|
||
### Smoke test results (2026-05-08, gemini, --max 3)
|
||
|
||
3 drafts, 0 skips, 0 errors. Spot-check verified:
|
||
|
||
- All cited file paths exist; line numbers and function names
|
||
resolve to within 1–2 lines of the actual symbols
|
||
(`game.pyx:217` `cdef class GameState`, `evaluate.py:220`
|
||
batched-entropy block, `trainer.py:892` `_evaluate_parallel`,
|
||
etc.).
|
||
- Numbers cross-checked against archives match (61.83/38.92/14.83
|
||
eval seconds; 4.05/2.88 advantage train seconds).
|
||
- Conclusions preserved.
|
||
- One systemic weakness: gemini did not run `git` to resolve HEAD,
|
||
leaving `commit <short-hash>` placeholder, literal `commit
|
||
\`HEAD\``, or omitting the commit field. Fixed in two places:
|
||
the three drafts were patched manually before acceptance, and
|
||
both `librarian_promote.py` and `librarian_survey.py` now
|
||
post-process the LLM's output to rewrite the `**Last verified:**`
|
||
line with the real short SHA from `git rev-parse --short HEAD`
|
||
before writing to disk. Future runs converge to the right header
|
||
deterministically.
|
||
|
||
All three drafts accepted into `docs/research/`:
|
||
`classic-port-notes.md`, `deep-cfr-batched-evaluation.md`,
|
||
`deep-cfr-evaluation-profile.md`. 12 archive entries remain
|
||
unprocessed for the next survey run.
|
||
|
||
## Stage 2 remaining
|
||
|
||
- MEMORY.md drift fixup mode (read drift report, propose one-line
|
||
diffs). Currently no drift to act on, so deferred.
|
||
- Duplicate-doc merge proposal mode.
|
||
|
||
## Next Concrete Step
|
||
|
||
Smoke-test `librarian_promote.py` against one real archive entry
|
||
(`docs/archive/option-a-bench-result-2026-05-07.md` is a good
|
||
candidate — durable architecture content). Run with the default
|
||
claude backend, review the draft, and either accept it as
|
||
`docs/research/option-a-bench-result.md` or note specific
|
||
edit-distance from what we'd want. The result drives whether the
|
||
prompt template needs tightening before adding survey mode.
|