AGENTS.md · git:20260710.4385c2c · 2026-07-10 · sha256 14c8f8d725fa7530
AGENTS.md git:20260710.4385c2cA
Immutable. This exact content is served forever at /api/v1/blob/14c8f8d725fa7530.
# AGENTS.md — continuous-improvement
Project-local rules for AI coding agents. Global rules live in `~/.Codex/AGENTS.md`. This file only adds what is *specific to this repo*.
## Repository
- npm package `continuous-improvement` (Codex plugin + GitHub Action transcript linter)
- Marketplace at `.Codex-plugin/marketplace.json` ships 5 plugins: 1 native + 4 vendored companions (Obra superpowers, addy/agent-skills, ruflo-swarm, oh-my-Codex). pm-skills is out-of-band per [docs/THIRD_PARTY.md](docs/THIRD_PARTY.md).
- Source layout: `skills/`, `commands/`, `hooks/`, `agents/`, `bin/`, `lib/`, `templates/`, `instinct-packs/`, `synthetic-checks/`, `third-party/`, `plugins/continuous-improvement/`.
## Think Before Acting
- For any non-trivial request, produce a short plan before editing files. Under the 7 Laws this is Law 2.
- When the user references prior work (`PR #X`, `last session's fix`), verify it exists with `gh pr view X` or `git log` before acting on the assumption.
- Use TDD for new features: failing test → code → verify. The native [tdd-workflow](skills/tdd-workflow.md) skill enforces RED-GREEN-REFACTOR strictly — pre-test code is deleted.
## Verification Discipline
- After any code change, run `npm run verify:all` (12 content invariants + typecheck: skill-mirror, skill-tiers, skill-law-tag, skill-count, docs-substrings, everything-mirror, routing-targets, doc-runtime-claims, test-imports-only, scripts-citation-drift, third-party-shape, tool-count, typecheck). Anything below that is incomplete.
- For doc-only or template-only changes, `npm run typecheck` is the floor.
- Run all commands from repo root. Verify CWD with `pwd` if a previous step may have changed it.
- Never claim "verified" or "done" without the passing output. Silence is not a pass.
## Build pipeline (CRITICAL)
- `.mts` files under `src/` are the source. `.mjs` files in `bin/`, `lib/`, `test/` are **generated by `tsc`**.
- Direct edits to `.mjs` files are **wiped on next `npm run build`** and fail CI's `git diff --exit-code -- bin test lib plugins` invariant. PR #66 was rejected for exactly this; PRs #73/#74 shipped the fix.
- After editing `.mts`: `npm run build` regenerates the `.mjs`. Commit both.
## Environment Notes (Windows + Git Bash + PowerShell)
- Shell is Git Bash on Windows. `jq` is not installed — use Node, PowerShell, or vendored helpers for JSON parsing.
- `autocrlf=true` produces 40+ phantom modifications on `git status` after a clean checkout. **Never** stage with `git add .` or `git add -A`. Stage by explicit filename. Use `git diff --stat` (not `git status`) to see real content drift.
- AGENTS.md is case-sensitive on the filesystem when checked into Git. Always uppercase.
## Git & Release Workflow
- **Never push directly to `main`.** Every change — including doc-only, lockfile-only, release commits — goes through a feature branch + PR. The PR flow is mandatory and the harness has historically caught direct-push attempts.
- After merge, fast-forward `main`: `git switch main && git pull --ff-only origin main`. Squash-merge is the default (`gh pr merge <N> --squash --delete-branch`).
- `git push --force-with-lease` and `git reset --hard origin/X` are gated. If a rebase diverges, supersede via a new branch + new PR — do not force-recover.
- Release trains are vulnerable to **auto-merge ordering hazards**: GitHub orders by CI-completion time, not PR number. A release PR can land before its dependency lockfile/refactor PR and leave a stale base. When chaining release PRs, gate the release on the lockfile PR completing first.
## third-party vendoring contract
- The 5 vendored companions (`third-party/superpowers/`, `third-party/addy-agent-skills/`, `third-party/ruflo-swarm/`, `third-party/oh-my-Codex/`, `third-party/mattpocock-skills/`) are **pinned-SHA snapshots**.
- Each snapshot must carry `MANIFEST.md` (SHA + version), `OUR_NOTES.md` (drift radar + integration scope), `AGENTS.md` (read-only guard).
- To refresh a snapshot: `node bin/refresh-third-party.mjs <name>` from a worktree off `origin/main`.
- Never edit files inside `third-party/<name>/` directly — those are verbatim upstream copies. Cross-cutting integration code lives outside the snapshot.
## Single source of truth
- Exactly one `AGENTS.md` at repo root (this file). Do not create `AGENTS.md` (lowercase) — Windows treats them as the same file but Git treats them as distinct.
- Plugin manifests at `.Codex-plugin/marketplace.json` and `plugins/continuous-improvement/.Codex-plugin/plugin.json` are **generated** by `bin/generate-plugin-manifests.mjs`. Source is `package.json` + `marketplace.json` plus discovery walk.
## Past Mistakes
Dated entries. Roll older than 60 days into `docs/audits/archive-<quarter>.md`.
| Date | Mistake | Lesson | Enforcement |
|---|---|---|---|
| 2026-05-06 | Observer field-name bug — pre-2026-05-06T00:38Z `observations.jsonl` rows have empty `output_summary` because the field was named `tool_output` instead of `tool_response`. | Live-patched on host, PR #67 merged as a477ec1. | Ignore historical `event` field on rows before that timestamp. |
| 2026-05-08 | Direct `.mjs` edit (PR #66) — bypassed the `.mts` source, was wiped by tsc, failed `verify:generated`. | `.mts` is source; `.mjs` is generated. | `verify:generated` invariant + this file's "Build pipeline" section. |
| 2026-05-08 | Auto-merge ordering hazard during release train — GitHub orders by CI completion time, not PR number; release PR landed before its dependency lockfile PR, left base stale. | Gate the release PR on dependency PRs completing first. | This file's "Git & Release Workflow" section. |
| 2026-05-09 | `agent-skills/` stray full-clone at repo root duplicated `third-party/addy-agent-skills/`. | Vendored snapshots are the single source of truth; never re-clone upstream at repo root. | `.gitignore` rule + this file's "third-party vendoring contract" section. |
| 2026-05-17 | PR #151 first commit shipped a stale `test/run-synthetic.test.mjs` because the `.mts` source had its `mkdirSync` import removed during code-review cleanup but the previously-built `.mjs` was already staged. CI's `verify:generated` caught it; fix shipped as follow-up commit 3eedea3. | "Build once at the start" is a trap when the `.mts` is edited again post-build. Treat `npm run build` + `git add` as one atomic step — rerun the build before every stage of `.mts` changes, even tiny ones like dropping an unused import. | `verify:generated` invariant (Linux CI) + this file's "Build pipeline" section + memory `feedback_mts_is_source.md` rebuild-before-stage section. |
| 2026-05-17 | PR #151 plan doc claimed the runner pre-flights `BASE_URL`/`BASELINE_URL` and exits 2 if unset; the implementation instead chose a pure-aggregator design (checks self-report exit 2). The code-reviewer subagent flagged the divergence as HIGH. | When implementation diverges from the spec-subagent's plan mid-build, update the plan doc to match the shipped code — do not back-fit code to the stale plan. Surface the divergence explicitly in the PR description. | Stage 2 code-reviewer subagent under subagent-driven-development + memory `feedback_plan_doc_matches_impl.md`. |
| 2026-06-03 | Adversarial audit of the 3 new Law-7 features (goal-monitor, recall, skill-distillation) on the PR #154 branch found 14 verified defects (3 HIGH) that passed `verify:all` + the 715-test suite — all input-validation / fail-open boundary gaps: an empty `## Goal Keywords` section forced false drift; the recall `since` filter leaked undated rows; a distill candidate id built from raw tool names flowed into a draft path (traversal). | Green gates do not prove boundary safety. New parser/scorer/index code needs explicit edge-case tests for empty/malformed/undated input and must fail closed on time and identity boundaries. | Regression tests in the goal-state/recall-index/skill-distill/mcp-server suites + audit doc `docs/audits/2026-06-03-new-feature-audit.md` + the Deferred list below. |
| 2026-07-10 | The v3.20.0 npm package and generated plugin omitted `scripts/`, so bundled skills cited helpers that consumers did not receive. The citation checker passed when the whole surface was absent. | Distribution contracts must inspect the packed artifact, compare generated copies, execute one consumer path, and reconcile inventory entries in both directions. | `distribution-artifacts.test.mts` + dual-tree `verify:scripts-citation-drift`. |
| 2026-07-10 | Gateguard classified every unquoted `@{...}` token as a Git selector and blocked valid PowerShell hashtables. | A syntax gate must validate the distinguishing grammar before denying a command. | Hashtable, quoted-brace, comment-only, and Git date-selector regressions in `gateguard-hook.test.mts`. |
| 2026-07-10 | Query-cost and typecheck Stop hooks inspected tracked diffs only, so new untracked migrations and TypeScript files bypassed both gates. | Changed-file gates must include `git ls-files --others --exclude-standard`. | Untracked-file cases in both hook suites. |
| 2026-07-10 | The Windows installer accepted any executable answering `bash --version`; WSL Bash then failed on the native `C:/...` hook paths written to settings. | Probe the exact capability the installed command needs before writing any target. | Installer path-read probe + incompatible-Bash integration test. |
| 2026-07-10 | Landing release markers stayed at v3.14.0 after package v3.20.0, and the mobile hero nowrap rule overflowed a 375 px viewport. | Tie landing markers to `package.json` in CI and verify the smallest supported viewport. | `verify:landing-version` + landing mobile regression + 375/768/1440 browser checks. |
| 2026-07-10 | Windows committed new generated CLIs and copied plugin helpers as `100644`; the Linux build normalized them to `100755` and failed `verify:generated` after all tests passed. | New generated executables need their Git mode recorded explicitly from Windows. | `git update-index --chmod=+x` on new CLI and helper artifacts + Linux generated-diff CI gate. |
| 2026-07-10 | The v3.20.1 and v3.20.2 releases passed PR CI but stopped before publish because npm v12 returned `npm pack --json` as a package-name-keyed object on Linux while the artifact test required an array or direct result object. | Release tests must normalize every supported CLI output shape used by the trusted-publishing environment. | Array, direct-object, and keyed-object regression in `distribution-artifacts.test.mts` + release workflow test gate. |
| 2026-07-10 | The v3.20.3 release passed every build and test gate but `npx npm@latest publish` crashed before registry contact because npm 12's temporary npx install lacked `sigstore`. | Pin the proven npm 11.18.0 publisher, install it before publish, and call it directly instead of reinstalling through npx. | `release-workflow.test.mts` pins version, step order, and direct `npm publish`. |
## Deferred
⚠️ Logged, not dropped. Action or close each explicitly.
### 2026-06-03 — new-feature audit (`docs/audits/2026-06-03-new-feature-audit.md`)
Four verified-but-unfixed findings remain from the PR #154 feature audit, left to the feature owner — each is a design choice, a latent gap with no live bug, or broader than a surgical fix. (NaN threshold #2 closed via `4ef2e83`; overlapping n-gram #10 closed via `c19e9f3`; window:0 #3, ASCII-tokenizer #6, and limit:0 #13 closed 2026-06-03 via `/proceed` on branch `fix/goal-monitor-boundary-edges` — see annotations below.) Two new follow-ups added by the completeness sweep.
- **goal-state window:0/negative → default 30 (MED):** treats an explicit out-of-range window as "unset". Defensible as invalid→default; decide clamp vs reject. — **CLOSED** by `6207648`: `scoreObservations` now throws `RangeError` on a non-positive-integer window (reject chosen over clamp); `ci_goal_check` pre-validates `limit`.
- **goal-state keyword substring match (LOW):** `.includes` matches `test` inside `latest`. Intentional fuzzy heuristic (4-char min + stopwords).
- **recall tokenize ASCII-only (MED):** `/[^a-z0-9]+/` drops CJK/Cyrillic/accents; same pattern in goal-state. Switch both to `/[^\p{L}\p{N}]+/u` together. — **CLOSED** by `d2001ac`: both scorers now split on `/[^\p{L}\p{N}]+/u`; the goal-state pure-digit filter was hardened to `/^\p{N}+$/u` in `0161b80`.
- **skill-distill empty verify output = success (MED):** `output === ""` counts as a pass. NOT a clean fix — silent-success commands (`tsc --noEmit`) legitimately emit nothing; needs a data-model decision.
- **skill-distill NaN-ts gap split (MED):** unparseable timestamps suppress the time-gap split, merging unrelated runs. Degrades draft mining only (drafts never auto-apply). — **CLOSED** by `b4f2eaf` (PR #189): `extractTrajectories` now treats a valid→invalid or invalid→valid timestamp pair as a trajectory boundary (fail-closed); consecutive invalid timestamps stay together. Regression tests in `src/test/skill-distill.test.mts`.
- **skill-distill overlapping n-gram count (LOW):** `occurrences` counts windows, not distinct runs; `minSessions` is the real guard. Add a contract-pinning test. — **CLOSED** by `c19e9f3`: regression test pins that `occurrences` counts every matching window; `minSessions` stays the single-session guard.
- **mcp getRecentObservations limit:0 (LOW):** `slice(-0)` reads the whole history; output stays bounded downstream. Clamp `limit<=0`. Confirmed not unit-testable as-is: `mcp-server.mts` has no `import.meta` main guard, so importing it to test the internal fn would start the server — needs an entry-point refactor (guard + export) or handler seeding first. — **CLOSED** by `08cdbae` (clamp inside `getRecentObservations`, covers all callers incl. `ci_observations`) + `6207648` (`ci_goal_check` guard); integration-tested through `tools/call` in `cc265e8` (the entry-point-refactor blocker was sidestepped by driving the spawned server, not importing it).
- **manifest generator skill-discovery glob (MED):** `/^[a-z][a-z0-9-]*\.md$/` would silently drop a future skill with an uppercase/underscore/leading-digit name while `verify:all` stays green. No live bug (3 new skills compliant). Align with the tier-lint filter. — **CLOSED** by `2fde059`: generator now uses the same loose filter `file.endsWith(".md") && file !== "README.md"` as the tier-lint discovery.
- **goal-state KEYWORD_MIN_LENGTH=4 vs short-word scripts (MED):** the unicode tokenizer (`d2001ac`) now keeps Korean/Thai tokens, but the 4-char floor drops them anyway (Korean technical words are ~2 chars), so a Korean/Thai goal still extracts zero keywords and scores all work as drift. Lower the floor for those scripts or add a script-aware threshold. New follow-up from the 2026-06-03 completeness sweep. — **CLOSED `c71a6b9`**: `keywordMinLengthFor()` returns 2 for tokens containing Hangul syllables (`\p{Script=Hangul}`), keeping the global 4-char floor for all other scripts. Regression test in `src/test/goal-state.test.mts` pins 2-char and 3-char Hangul keywords.
- **recall Thai combining-mark fragmentation (LOW):** `/[^\p{L}\p{N}]+/u` treated Thai combining marks (Unicode `\p{M}`) as delimiters, fracturing Thai words into garbled length-2/3 fragments that recall then indexed. — **CLOSED `747451a`**: both `recall-index` and `goal-state` now split on `/[^\p{L}\p{N}\p{M}]+/u`; regression tests in `src/test/recall-index.test.mts` and `src/test/goal-state.test.mts` pin Thai words with tone/vowel marks. Goal-state's 4-char floor now accepts length-4+ Thai keywords.
Flaky (not a regression): `test/hook.test.mjs` "completes within 2000ms" is an environmental wall-clock flake on a loaded Windows host (2.5–4.2s under heavy concurrent load; passes at 725/725 when the host is quiet). Do not inflate the budget to mask it.
## Companion skills (enforce these rules at the tool boundary)
| Rule | Enforcing skill |
|---|---|
| Think Before Acting | [gateguard](skills/gateguard.md) — blocks Edit/Write/Bash before grounding |
| Verification Discipline | [verification-loop](skills/verification-loop.md) — per-project ladder via `templates/verify-ladder.example.json` |
| Build pipeline | `bin/check-everything-mirror.mjs` + `verify:generated` script |
| 7 Laws routing | [proceed-with-the-recommendation](skills/proceed-with-the-recommendation.md) — walks recommendation lists under all 7 Laws |
| Recommendation shape | [wild-risa-balance](skills/wild-risa-balance.md) — 5+2 floor + R-I-S-A filter |
| Goal-Driven Execution | [goal-monitor](skills/goal-monitor.md) + `hooks/goal-drift-stop.mjs` — Stop-boundary drift gate (warn by default; `CLAUDE_GOAL_DRIFT_GATE=block` enforces) |
AGENTS.md text tells humans the rule. Skills make the agent obey it. Keep both layers.