Files
ClaudeDo/docs/explore-notes
mika kuns 168ab1cd2f feat(merge): verify once per batch via skipVerify + verify_merges
Per-merge verify made an N-task batch pay N x ~7 min, each run testing
the same moving main. review_task/merge_task/continue_merge now take
skipVerify: the merge lands but the gate AND the Done transition are
deferred (status merged_verify_pending, task stays WaitingForReview).
The new verify_merges tool runs the list verify command once for the
explicitly listed tasks and promotes them to Done on success - explicit
ids so the handler own submitted task and parked verify_failed tasks
are never swept up; an Active worktree is refused per entry.

PlanningMergeOrchestrator threads the flag through the unit merge (no
more per-child verify) and skips FinalizeParentDoneAsync when verifies
were deferred. The merge-helper Merge prompt approves with
skipVerify=true and calls verify_merges once after the last merge. UI
approve is unchanged; the no-Done-without-green-verify invariant stays
server-enforced.
2026-08-26 15:29:20 +02:00
..

Explore-notes

Distilled, reusable maps of complex subsystems, produced by deep code exploration. The goal: stop re-exploring the same subsystem from scratch in every new session.

These sit between the CLAUDE.md files and the code:

  • CLAUDE.md — high-level orientation, hand-maintained, always-loaded.
  • explore-notes — deeper subsystem detail (flows, who-calls-whom, invariants) that is too fine-grained for a CLAUDE.md but stable enough to be worth caching. Read on demand.
  • code — the only source of truth.

Index

Note Covers
worker-task-pipeline TaskRunner end-to-end: config resolution, worktree, CLI invocation, streaming, commit
usage-monitoring OAuth usage endpoint, gate, throttle, per-run token accounting, usage pill/modal
external-mcp The claudedo MCP tool surface + its two test-enforced conventions
review-merge Approve=merge-unit, verify gate, MergeCommit/revert, diff stack, conflict resolver
conpty-sessions Interactive/planning/list-handler launch specs + the arg-flattening gotcha
installer-preflight CLI version/login/auto-mode research, the ExecutableResolver/shim root cause, and the Installer's Checks/+SystemCheckPage implementation status
list-virtualization-spike Phase 2a gate spike: virtualized ListBox + the existing ghost-drag InputHitTest model, verified headless

Rules

  • Only stable structure. Flows, responsibilities, entry points, invariants, relative file paths. No line numbers, no exhaustive symbol dumps — those rot fastest.
  • Verify before trusting. A note is a starting map, not authority. Always confirm against current code before acting on it. Each note records the commit it was verified against so you can diff for drift.
  • Not a substitute for CLAUDE.md. If a fact belongs in orientation, put it there.

Header every note must carry

> **Explore-note — verify before trusting.** Distilled map of a subsystem, not authoritative.
> Last verified against commit `<short-hash>` (<date>).
> Drift check: `git log --oneline <short-hash>..HEAD -- <paths this note covers>`
> Stable structure only (no line numbers). See docs/explore-notes/README.md.

Workflow

  1. Before deep-exploring a subsystem, check for a matching note here and read it first; explore only to fill gaps or confirm.
  2. After a deep explore, distill the durable findings into a new/updated note and bump its "verified against" commit line.
  3. If the drift check shows the covered paths changed a lot since the verified commit, treat the note as suspect and re-verify the parts you rely on.