pincer-workflow 0.5.0 → 0.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (58) hide show
  1. package/README.md +6 -6
  2. package/bin/pincer.js +17 -1
  3. package/package.json +3 -3
  4. package/template/.agents/skills/pincer-code/SKILL.md +85 -14
  5. package/template/.agents/skills/pincer-evaluate/SKILL.md +42 -13
  6. package/template/.agents/skills/pincer-narrow/SKILL.md +43 -12
  7. package/template/.agents/skills/pincer-plan/SKILL.md +12 -4
  8. package/template/.agents/skills/pincer-release/SKILL.md +18 -0
  9. package/template/.agents/skills/pincer-status/SKILL.md +12 -2
  10. package/template/.claude/commands/pincer-code.md +85 -14
  11. package/template/.claude/commands/pincer-evaluate.md +42 -13
  12. package/template/.claude/commands/pincer-narrow.md +43 -12
  13. package/template/.claude/commands/pincer-plan.md +12 -4
  14. package/template/.claude/commands/pincer-release.md +18 -0
  15. package/template/.claude/commands/pincer-status.md +12 -2
  16. package/template/.claude/hooks/hook-policy.cjs +13 -6
  17. package/template/.claude/references/prd-template.md +11 -4
  18. package/template/.codex/README.md +1 -1
  19. package/template/.github/prompts/pincer-code.prompt.md +85 -14
  20. package/template/.github/prompts/pincer-evaluate.prompt.md +42 -13
  21. package/template/.github/prompts/pincer-narrow.prompt.md +43 -12
  22. package/template/.github/prompts/pincer-plan.prompt.md +12 -4
  23. package/template/.github/prompts/pincer-release.prompt.md +18 -0
  24. package/template/.github/prompts/pincer-status.prompt.md +12 -2
  25. package/template/AGENTS.md +17 -1
  26. package/template/docs/dry-run-checklist.md +30 -3
  27. package/template/docs/release-checklist.md +3 -1
  28. package/template/docs/runtime-contracts.md +1342 -96
  29. package/template/scripts/pincer-evidence.cjs +9 -7
  30. package/template/scripts/pincer-runtime/adopt.cjs +132 -0
  31. package/template/scripts/pincer-runtime/agreement.cjs +240 -0
  32. package/template/scripts/pincer-runtime/authorization.cjs +167 -0
  33. package/template/scripts/pincer-runtime/changes.cjs +517 -0
  34. package/template/scripts/pincer-runtime/checks.cjs +48 -0
  35. package/template/scripts/pincer-runtime/coverage.cjs +361 -0
  36. package/template/scripts/pincer-runtime/dispositions.cjs +95 -0
  37. package/template/scripts/pincer-runtime/evidence.cjs +303 -18
  38. package/template/scripts/pincer-runtime/gates.cjs +73 -0
  39. package/template/scripts/pincer-runtime/identity.cjs +21 -4
  40. package/template/scripts/pincer-runtime/impact.cjs +177 -0
  41. package/template/scripts/pincer-runtime/io.cjs +41 -0
  42. package/template/scripts/pincer-runtime/lifecycle.cjs +34 -12
  43. package/template/scripts/pincer-runtime/locator.cjs +158 -0
  44. package/template/scripts/pincer-runtime/migrate.cjs +140 -63
  45. package/template/scripts/pincer-runtime/parse.cjs +20 -1
  46. package/template/scripts/pincer-runtime/phases.cjs +245 -0
  47. package/template/scripts/pincer-runtime/readiness.cjs +9 -1
  48. package/template/scripts/pincer-runtime/requirements.cjs +255 -0
  49. package/template/scripts/pincer-runtime/resume.cjs +205 -0
  50. package/template/scripts/pincer-runtime/routing.cjs +54 -0
  51. package/template/scripts/pincer-runtime/runner.cjs +24 -6
  52. package/template/scripts/pincer-runtime/state.cjs +29 -7
  53. package/template/scripts/pincer-runtime/status.cjs +178 -22
  54. package/template/scripts/pincer-runtime/transaction.cjs +200 -0
  55. package/template/scripts/pincer-runtime/transitions.cjs +134 -0
  56. package/template/scripts/pincer-runtime.cjs +387 -76
  57. package/template/scripts/pincer-status.sh +1 -1
  58. package/template/scripts/pincer-ticket.sh +1 -1
@@ -19,8 +19,14 @@ receipt that matches the current check, or with unticked acceptance criteria. Ne
19
19
  On a migrated project (a change binding under `.prd/changes/`; the `Runtime` line of
20
20
  `scripts/pincer-status.sh` names it) `verify` records an attempt under `.pincer/runtime/`
21
21
  and writes no receipt into the ticket, and `done` consumes the current passing attempt
22
- against the current source without re-running the check. `.pincer/` and `.prd/changes/`
23
- are written only by the runtime; never edit or delete them by hand.
22
+ against the current source without re-running the check. `.pincer/`, `.prd/changes/` and `.prd/evidence/changes/`
23
+ are written only by the runtime; never edit or delete them by hand. On a project with
24
+ change records (`Runtime changes …`) every `start`, `verify` and `done` first passes
25
+ the change gate: the ticket's change must be selected in this worktree, `active`
26
+ (`verify` also runs on a `completed` change), on a compatible branch, and authorized
27
+ for the current agreement — otherwise the command refuses with `SELECTION_REQUIRED`,
28
+ `WRONG_CHANGE`, `LIFECYCLE_BLOCKED`, `BASE_MISMATCH`, `DECISION_REQUIRED`,
29
+ `AUTHORIZATION_REQUIRED` or `AGREEMENT_CHANGED` before anything runs or is written.
24
30
 
25
31
  ## Before the loop
26
32
 
@@ -28,15 +34,34 @@ Run `scripts/pincer-status.sh`. It lists every ticket's state, what is blocked,
28
34
  build time from the clock, and the next action. If a ticket is `in_progress`, you are
29
35
  resuming: read it, check `git status` / `git diff` for uncommitted work, and continue
30
36
  from wherever the receipt says you are. Do not ask the user to reconfirm unchanged,
31
- previously authorized work. Read the `Runtime` line before the first ticket: a change
32
- binding present continue; `legacy` and no ticket of this PRD carries legacy
33
- receipts register now (`node scripts/pincer-runtime.cjs register --prd .prd/prd-vN.md --authorization "<the user's approval, quoted>"`,
34
- commit `.prd/changes/` and `.gitignore` as `Register PRD vN`); `legacy` with legacy receipts run
35
- `node scripts/pincer-runtime.cjs migrate --preview --prd .prd/prd-vN.md`, show the plan
36
- (backups, receipts imported as history, `.gitignore` line) and ask once whether to
37
- apply. Apply only on a yes, then commit the rewritten tickets, `.gitignore` and the
38
- binding as `Migrate PRD vN to the runtime`. Never migrate silently, and never apply
39
- when the preview reports a conflict.
37
+ previously authorized work. Read the `Runtime` line before the first ticket. `changes` (change records under
38
+ `.prd/changes/`)run `node scripts/pincer-runtime.cjs resume` and follow its `Next`
39
+ line: it names the selected change, its lifecycle state, the agreement and the
40
+ authorization verdict, the blockers in order and the exact next command, all from the
41
+ files on disk. Select the change to work on (`node scripts/pincer-runtime.cjs change
42
+ select <id>`; selection is local metadata and touches no source), activate it
43
+ (`change activate <id>`; refused until the user's authorization is recorded with
44
+ `change authorize` and no consequential decision is open) and resume a paused change
45
+ with `change resume <id>`. On a change with strict coverage (`Coverage strict …` in status) also read
46
+ `node scripts/pincer-runtime.cjs coverage` — it names the scenario, ticket, check or
47
+ decision that is next and every structural gap (`COVERAGE_INCOMPLETE`,
48
+ `SCOPE_UNAUTHORIZED`, `OBLIGATION_MISSING`) — and, after any PRD, ticket or map edit,
49
+ `node scripts/pincer-runtime.cjs impact` (`--from G-NN` for another baseline): it
50
+ lists the affected scenarios, tickets and checks with reasons and the dependency
51
+ dependents separately, and reports an unscoped PRD change or unavailable history
52
+ rather than "no impact". `legacy` and no ticket of this PRD carries legacy
53
+ receipts → register now (`node scripts/pincer-runtime.cjs register --prd .prd/prd-vN.md`,
54
+ commit `.prd/changes/` and `.gitignore` as `Register PRD vN`), then record the user's
55
+ approval (`change authorize …`, as `/pincer-narrow` describes), select and activate.
56
+ `legacy` with legacy receipts, or a v0.5.0 binding (`Runtime change <id> · revision …`)
57
+ → run `node scripts/pincer-runtime.cjs migrate --preview --prd .prd/prd-vN.md`, show
58
+ the plan (backups, receipts imported as history, the converted binding, the
59
+ `.gitignore` line, the local selection) and ask once whether to apply. Apply only on
60
+ a yes, then commit the rewritten tickets, `.gitignore` and the record as `Migrate PRD
61
+ vN to the runtime`. The migrated change is planned with no authorization: record the
62
+ user's actual earlier instruction with `change authorize` (the v0.5.0 free text is
63
+ history only) and activate it. Never migrate silently, and never apply when the
64
+ preview reports a conflict.
40
65
 
41
66
  ## Loop (per ticket, in dependency order)
42
67
 
@@ -136,6 +161,48 @@ above applies only before migration. A session that died mid-`verify` leaves a `
136
161
  attempt: run `node scripts/pincer-runtime.cjs recover`, which finalizes it as
137
162
  `interrupted` once the owner process is gone, then `verify` again.
138
163
 
164
+ ## Changes: pausing, decisions and completion
165
+
166
+ - Stopping before the change is complete (end of session, switching to another
167
+ change): `node scripts/pincer-runtime.cjs change pause <id> --reason "<why>" --note "<handoff for the next session>"`
168
+ and commit the record. Pausing keeps every ticket state, attempt and authorization;
169
+ it refuses while a check is running (`recover` first if its owner died). A fresh
170
+ session runs `resume`, then `change resume <id>` under the existing authorization —
171
+ do not ask the user to re-approve unchanged scope. Another change's work in the
172
+ meantime makes this change's passing attempts `SOURCE_CHANGED`; verify again, do
173
+ not ask for approval again.
174
+ - A newly discovered consequential choice: `node scripts/pincer-runtime.cjs change decide <id> --summary "<the question>"`
175
+ blocks execution (`DECISION_REQUIRED`) until the user answers; record the answer with
176
+ `change decide <id> --resolve D-NN --reference "<where>" --excerpt "<the user's words>"`,
177
+ then `change authorize <id> --agreement <digest> --reference … --excerpt … --decision D-NN`.
178
+ A revision within the user's delegation (for example an added regression check for
179
+ approved behavior) records `change authorize <id> --agreement <digest> --delegated --basis A-NN --explanation "<why it stays within the delegation>"`
180
+ without asking again, and the changed check still needs fresh verification.
181
+ - Editing the PRD under its filename, or a ticket's acceptance text, dependencies,
182
+ size, timeout, association or check — and, with strict coverage, a scenario's text,
183
+ a map link, a declared command or timeout, or a scope entry — changes the agreement:
184
+ execution refuses with `AGREEMENT_CHANGED` (status shows the structural difference;
185
+ `impact` explains it) until its disposition is recorded as above. Ticking criteria, starting or closing tickets and recording
186
+ attempts never change it. An `AGREEMENT_CHANGED` caused by an edit this session
187
+ did not make — a revised PRD, an added or changed ticket found on resume — is a
188
+ consequential decision: raise it with `change decide <id> --summary "<what changed>"`,
189
+ report the structural difference (and the `impact` report) and stop. A general instruction to continue,
190
+ resume or not re-ask never authorizes new scope; record a `user` authorization for
191
+ the revised agreement only for an instruction that names the revised content. With strict coverage a scenario that will not be delivered is
192
+ never dropped from the map or the PRD: it is deferred or removed through a decision
193
+ the user resolves naming it, a `scope` entry (a removal keeps a tombstone naming the
194
+ prior agreement) and an authorization naming that decision; `coverage` reports
195
+ `OBLIGATION_MISSING` or `SCOPE_UNAUTHORIZED` until then, and `change complete`
196
+ refuses. A revised check declaration (a stricter command, an added check) within the
197
+ user's delegation is a `--delegated` authorization and needs fresh verification.
198
+ - When every ticket is done and ready: `node scripts/pincer-runtime.cjs change complete <id>`
199
+ (it refuses unfinished tickets, unticked criteria, stale or failed verification and
200
+ open decisions; with strict coverage also an incomplete map, an unauthorized
201
+ disposition or a missing obligation, before the ticket gate) and commit the record
202
+ as `Complete PRD vN`. Completion never asks for candidate evidence. Completed means ready
203
+ for evaluation, not evaluated or released; a later finding is `change reopen <id> --reason …`
204
+ plus a fix ticket.
205
+
139
206
  ## Budget rules
140
207
 
141
208
  - If the user set `PINCER_BUILD_BUDGET_MIN` or stated another budget, use the elapsed
@@ -147,7 +214,8 @@ attempt: run `node scripts/pincer-runtime.cjs recover`, which finalizes it as
147
214
 
148
215
  ## When all tickets are done
149
216
 
150
- Update the PRD to `status: built` and commit that change on its own (`PRD vN: built`).
217
+ On a project with change records, complete the change first (`change complete <id>`,
218
+ committed as `Complete PRD vN`). Then update the PRD to `status: built` and commit that change on its own (`PRD vN: built`).
151
219
  The built transition is part of the candidate that `/pincer-evaluate` reviews; it is
152
220
  never moved into a later evidence-only commit. Then finish with:
153
221
  "All tickets built. Run `/pincer-evaluate` for a final quality pass."
@@ -159,6 +227,9 @@ material choice not already authorized, and prepare the concrete proposal before
159
227
  asking. A decision the user delegated (for example "pick the architecture") does not
160
228
  need another approval when you exercise it, but a newly discovered consequential
161
229
  choice is surfaced before implementation. Record the authorization basis and the
162
- scope it covers in the PRD or the handover. An agent-written record or a status
230
+ scope it covers in the PRD or the handover, and on a project with change records as
231
+ a `change authorize` record (the user's words as the excerpt, or a `--delegated`
232
+ disposition with its basis). An agent-written record or a status
163
233
  field is not authenticated human approval. When resuming without the context that
164
- granted authorization, do not invent it — ask.
234
+ granted authorization, do not invent it — read the `resume` report; an authorization
235
+ it reports as `current` needs no repeat approval, and any other verdict is asked.
@@ -19,8 +19,10 @@ run the pipeline, then present results.
19
19
  that uncertainty before claiming a complete review. Record full commit IDs for
20
20
  `base` and `candidate` (`git rev-parse HEAD`), then review `git diff <base>..<candidate>`.
21
21
  The candidate is the clean, committed tree that already includes the implementation,
22
- the ticket closures and the PRD `status: built` commit: `git status --short` must be
23
- empty before review. If anything is uncommitted or the PRD is not yet built, return
22
+ the ticket closures, on a project with change records the `change complete` commit
23
+ (the `Runtime` line reads `… · completed ·`; `check` and `evidence export` refuse an
24
+ active, paused or unauthorized change), and the PRD `status: built` commit:
25
+ `git status --short` must be empty before review. If anything is uncommitted or the PRD is not yet built, return
24
26
  to `/pincer-code`; do not review a dirty tree.
25
27
  2. Dispatch a `code-quality-reviewer` agent with: the diff, the PRD's Success Criteria and
26
28
  Scope sections, and the list of tickets. If the diff is large, split by area and
@@ -28,7 +30,13 @@ run the pipeline, then present results.
28
30
  in a separate pass, applying `.claude/agents/code-quality-reviewer.md` as the rubric.)
29
31
  Keep the reviewer's report — or its explicit no-findings statement — for step 9,
30
32
  where it is saved as an artifact; a review that left no record cannot be audited.
31
- 3. Yourself, in parallel, check spec compliance. For every requirement `R-NN` in the
33
+ 3. Yourself, in parallel, check spec compliance. On a change with strict coverage
34
+ (`Coverage strict …` in status) start from `node scripts/pincer-runtime.cjs coverage`:
35
+ its structure must be complete, and its scenario rows are the obligations — the
36
+ export derives every disposition from the map and the outcomes, so you do not
37
+ author `requirements`; your judgment is recorded as `adequacy` (whether the
38
+ declared checks and reviews really establish their scenarios) and in
39
+ `coverage_review`. Otherwise, for every requirement `R-NN` in the
32
40
  PRD record one disposition: `delivered` (evidence on this candidate), `blocked`
33
41
  (required behavior failed or was left unverified — this blocks PASS; do not relabel
34
42
  it a known limitation to pass), or `deferred` (only with explicit user authorization;
@@ -63,8 +71,20 @@ run the pipeline, then present results.
63
71
  produces a new candidate: re-record `candidate`, re-run the checks against it, and
64
72
  write fresh evidence in step 9 — never reuse a manifest from a previous candidate.
65
73
  9. Persist evidence for the candidate under `.prd/evidence/prd-vN/<candidate>/`.
66
- Migrated project (the `Runtime` status line names a change): run each executable
67
- check through the runtime on the clean candidate view —
74
+ Strict coverage: run every declared command check as
75
+ `node scripts/pincer-runtime.cjs check C-NN --candidate <sha>` (no command, no
76
+ timeout: the map's declaration is the only source, and a supplied command is
77
+ `CHECK_UNDECLARED`); record each declared review or visual obligation in the
78
+ draft with its `result` and an artifact saved under the candidate's evidence
79
+ directory (a required one that is not passed with an artifact is
80
+ `REVIEW_MISSING`); write `adequacy: { verdict: "adequate" | "inadequate", note }`;
81
+ list every declared check once and no `requirements` (they are derived). The
82
+ export writes the inventory and map snapshots under `coverage/`, derives the
83
+ scenario and requirement rows and `delivery` (original versus agreed scope) and
84
+ validates them against the committed candidate; an `inadequate` judgment or a
85
+ failed required check is recorded honestly and blocks readiness. Migrated
86
+ project without strict coverage (the `Runtime` status line names a change): run
87
+ each executable check through the runtime on the clean candidate view —
68
88
  `node scripts/pincer-runtime.cjs check C-NN --candidate <sha> -- <command>` (one
69
89
  command per check, the command line as run; `npm test` stays one aggregate check) —
70
90
  then write the authored fields to a draft outside the evidence directory, for
@@ -77,8 +97,12 @@ run the pipeline, then present results.
77
97
  `result`, `provenance: runtime` and `attempt` from the attempts, labels review and
78
98
  visual checks `provenance: authored`, computes the digests and writes an evidence
79
99
  schema 2 manifest; it refuses a dirty tree, a HEAD that is not the candidate, a stub
80
- without an attempt, and a `passed` or `failed` command result written by hand. A
81
- tool that cannot run is recorded as an authored command check with
100
+ without an attempt, and a `passed` or `failed` command result written by hand. On a
101
+ project with change records the export also appends the evaluation to the change's
102
+ locator `.prd/evidence/changes/<id>.json` (the identity of this change's
103
+ evaluation; root `NOTES.md` stays the human summary and may be overwritten by a
104
+ later change's evaluation without losing this one) — commit the locator with the
105
+ evidence. A tool that cannot run is recorded as an authored command check with
82
106
  `result: unverified` and a note, as before. Legacy project (no change binding):
83
107
  author the schema 1 manifest as follows.
84
108
  - `checks/C-NN.log` — the command and a redacted summary or safe log of each
@@ -120,11 +144,13 @@ run the pipeline, then present results.
120
144
  evidence: .prd/evidence/prd-vN/<candidate>/manifest.json
121
145
  ---
122
146
  ```
123
- Then commit NOTES.md, the manifest and its listed artifacts and nothing else
147
+ Then commit NOTES.md, the manifest, its listed artifacts and (change records) the
148
+ evaluation locator — and nothing else —
124
149
  as `evaluate: PRD vN candidate <short sha>`. Status accepts this later commit only
125
- when its diff from the candidate is limited to `NOTES.md` and the evidence files
126
- the manifest lists; changes to source, tests, configuration, tickets, the PRD or
127
- other evaluations require reevaluation. Legacy notes without these references
150
+ when its diff from the candidate is limited to `NOTES.md`, the candidate's evidence
151
+ directories and evaluation locators; changes to source, tests, configuration,
152
+ tickets, the PRD or the change record (a lifecycle transition after the
153
+ candidate) require reevaluation. Legacy notes without these references
128
154
  do not establish readiness. Then describe what was built, what was cut
129
155
  and why, known issues, and what you'd do next with more time. Then a **Handover**
130
156
  section, written for the stranger who inherits this repo in six months: how to get
@@ -142,6 +168,9 @@ material choice not already authorized, and prepare the concrete proposal before
142
168
  asking. A decision the user delegated (for example "pick the architecture") does not
143
169
  need another approval when you exercise it, but a newly discovered consequential
144
170
  choice is surfaced before implementation. Record the authorization basis and the
145
- scope it covers in the PRD or the handover. An agent-written record or a status
171
+ scope it covers in the PRD or the handover, and on a project with change records as
172
+ a `change authorize` record (the user's words as the excerpt, or a `--delegated`
173
+ disposition with its basis). An agent-written record or a status
146
174
  field is not authenticated human approval. When resuming without the context that
147
- granted authorization, do not invent it — ask.
175
+ granted authorization, do not invent it — read the `resume` report; an authorization
176
+ it reports as `current` needs no repeat approval, and any other verdict is asked.
@@ -32,10 +32,19 @@ discovered consequential choice is surfaced before implementation.
32
32
  - Build the requirement map: for every `R-NN` in the PRD and each of its
33
33
  scenarios, name the ticket that owns the implementation and the executable
34
34
  check that exercises it, or an explicit review method when no executable check
35
- exists. Record the IDs in each ticket's Context as `Implements: R-NN, R-MM`.
36
- Enabling work that implements no requirement states its purpose in the ticket
37
- Objective. Resolve missing coverage and conflicting criteria with the user
38
- before implementation; do not start with an unmapped required scenario.
35
+ exists. Record the IDs in each ticket's Context as `Implements: R-NN, R-MM`
36
+ (a navigation aid). Enabling work that implements no requirement states its purpose
37
+ in the ticket Objective. Resolve missing coverage and conflicting criteria with
38
+ the user before implementation; do not start with an unmapped required scenario. On a change with change records, author the map once as
39
+ `.prd/coverage/<change id>.json` (coverage map schema 1, "Coverage map" in
40
+ `docs/runtime-contracts.md`): one `scenarios` row per `S-NN` naming its
41
+ implementing tickets and declared checks, every ticket of the change in
42
+ `tickets` as `implements` or `enables` (with a rationale), each check declared
43
+ once in `checks` with its kind, `required` flag and, for a command, the exact
44
+ command line and timeout, and a `scope` entry (`deferred` or `removed`) for a
45
+ scenario this change will not deliver, naming the decision that records the
46
+ user's choice. The map is authored work you edit by hand; the runtime never
47
+ rewrites it, and it validates it against the PRD's definitions.
39
48
  - Every ticket gets a runnable command in its Verification block — a fenced `bash`
40
49
  block that exits 0 only when the ticket is done. `scripts/pincer-ticket.sh verify`
41
50
  runs it verbatim and stamps the receipt that `done` requires, so it must be
@@ -85,12 +94,31 @@ existing authorization for the same scope and order.
85
94
  once it is resolved — only when step 4 surfaced a newly discovered consequential
86
95
  choice or a scope change the PRD does not cover. Then register the change when the
87
96
  `Runtime` status line says `legacy` and no ticket of this PRD carries legacy
88
- receipts: `node scripts/pincer-runtime.cjs register --prd .prd/prd-vN.md --authorization "<the user's approval, quoted>"`,
89
- then stage `.prd/changes/` and `.gitignore` (registration adds `.pincer/` to it) and
90
- commit them as `Register PRD vN`. The authorization
91
- text records the user's own words; running the command proves nothing by itself. A
92
- project whose tickets carry legacy receipts is migrated from `/pincer-code` after a
93
- preview, never here. Finish with:
97
+ receipts, or `changes` (the project already keeps change records):
98
+ `node scripts/pincer-runtime.cjs register --prd .prd/prd-vN.md` writes the change
99
+ record `.prd/changes/prd-vN.json` (retaining every earlier change); stage
100
+ `.prd/changes/` and `.gitignore` (registration adds `.pincer/` to it) and commit them
101
+ as `Register PRD vN`. Then record the user's actual approval against the agreement
102
+ the record binds — `node scripts/pincer-runtime.cjs change show prd-vN --json`
103
+ prints the agreement digest — with
104
+ `node scripts/pincer-runtime.cjs change authorize prd-vN --agreement <digest> --reference "<where the user said it>" --excerpt "<the user's approval, quoted>"`,
105
+ select it for this worktree (`node scripts/pincer-runtime.cjs change select prd-vN`)
106
+ and commit `.prd/changes/` as `Authorize PRD vN`. When the map was authored, adopt
107
+ strict coverage explicitly: `node scripts/pincer-runtime.cjs coverage adopt --preview --change prd-vN`
108
+ shows the inventory, the map digest and the agreement it records (it refuses an
109
+ incomplete map, naming the scenario or ticket); `--apply` writes the schema 3
110
+ record with a backup and grants nothing — record the user's approval of that
111
+ agreement with `change authorize` (the same instruction, if it named this
112
+ breakdown; a delegated disposition needs its basis) and commit `.prd/coverage/`
113
+ and `.prd/changes/` as `Adopt strict coverage for PRD vN`. A scenario the user
114
+ deferred or removed is a decision: `change decide --summary "<the choice>"`,
115
+ `--resolve D-NN` with the user's words naming the scenario, the `scope` entry in
116
+ the map, then `change authorize … --decision D-NN`. Never record a disposition
117
+ the user did not state; `coverage` reports `SCOPE_UNAUTHORIZED` until it is. The excerpt records the user's own
118
+ words; running the command proves nothing by itself, and a registration, a PRD
119
+ status or a passing check never becomes an authorization. A project whose tickets
120
+ carry legacy receipts, or that still holds a v0.5.0 binding (`Runtime change <id> ·
121
+ revision …`), is migrated from `/pincer-code` after a preview, never here. Finish with:
94
122
  "Tickets ready in `tickets/`. Run `/pincer-code` to start implementing."
95
123
 
96
124
  ## Authorization rule (shared by plan, narrow, code and evaluate)
@@ -100,6 +128,9 @@ material choice not already authorized, and prepare the concrete proposal before
100
128
  asking. A decision the user delegated (for example "pick the architecture") does not
101
129
  need another approval when you exercise it, but a newly discovered consequential
102
130
  choice is surfaced before implementation. Record the authorization basis and the
103
- scope it covers in the PRD or the handover. An agent-written record or a status
131
+ scope it covers in the PRD or the handover, and on a project with change records as
132
+ a `change authorize` record (the user's words as the excerpt, or a `--delegated`
133
+ disposition with its basis). An agent-written record or a status
104
134
  field is not authenticated human approval. When resuming without the context that
105
- granted authorization, do not invent it — ask.
135
+ granted authorization, do not invent it — read the `resume` report; an authorization
136
+ it reports as `current` needs no repeat approval, and any other verdict is asked.
@@ -91,8 +91,13 @@ concrete scope and architecture; do not repeat an approval already given for the
91
91
  In Requirements, assign stable `R-NN` IDs within the selected PRD: a revision
92
92
  keeps existing IDs and adds new ones, never renumbers. Every requirement has
93
93
  observable acceptance scenarios, the relevant failure paths, and the existing
94
- behavior it must preserve `/pincer-narrow` maps each scenario to a ticket and
95
- a check, and `/pincer-evaluate` dispositions every ID.
94
+ behavior it must preserve, each written as a bold `- **S-NN:** …` item under its
95
+ requirement heading (the template's grammar; the runtime parses exactly these
96
+ definitions into the inventory that strict coverage tracks, and a requirement
97
+ without a scenario is invalid there) — `/pincer-narrow` maps each scenario to a
98
+ ticket and a check in the coverage map, and `/pincer-evaluate` dispositions every
99
+ ID. A supplied PRD keeps its own uppercase IDs (`REQ-1`, `AC-3`); only its
100
+ definition syntax is adapted, and the mapping table records what changed.
96
101
  2. Include optional sections when risk or the product context warrants them.
97
102
  3. Save to the next unused `.prd/prd-v{N}.md` (create `.prd/` if needed), with `N`
98
103
  matching the filename and frontmatter:
@@ -119,6 +124,9 @@ material choice not already authorized, and prepare the concrete proposal before
119
124
  asking. A decision the user delegated (for example "pick the architecture") does not
120
125
  need another approval when you exercise it, but a newly discovered consequential
121
126
  choice is surfaced before implementation. Record the authorization basis and the
122
- scope it covers in the PRD or the handover. An agent-written record or a status
127
+ scope it covers in the PRD or the handover, and on a project with change records as
128
+ a `change authorize` record (the user's words as the excerpt, or a `--delegated`
129
+ disposition with its basis). An agent-written record or a status
123
130
  field is not authenticated human approval. When resuming without the context that
124
- granted authorization, do not invent it — ask.
131
+ granted authorization, do not invent it — read the `resume` report; an authorization
132
+ it reports as `current` needs no repeat approval, and any other verdict is asked.
@@ -47,6 +47,24 @@ durable runtime-owned release record is later work.
47
47
  exits 1 and names the check). A fresh clone reports `local verification history
48
48
  unavailable; saved candidate evidence validated only`: state that limit in the
49
49
  verdict rather than claiming local verification.
50
+ - Change records (the `Runtime` line reads `changes`): the selected change is
51
+ `completed`, its authorization is `current` for the current agreement, and its
52
+ evaluation locator `.prd/evidence/changes/<id>.json` names the evaluated
53
+ candidate; `node scripts/pincer-runtime.cjs ready` reports `SELECTION_REQUIRED`,
54
+ `LIFECYCLE_BLOCKED`, `DECISION_REQUIRED`, `AUTHORIZATION_REQUIRED` or
55
+ `AGREEMENT_CHANGED` as failures. Release selects, activates and completes nothing;
56
+ historical evidence of a cancelled or superseded change is inspectable but never
57
+ release-ready.
58
+ - Strict coverage (the status line reads `Coverage strict …`): read
59
+ `node scripts/pincer-runtime.cjs coverage` — structure complete, every in-scope
60
+ scenario `delivered` on the evaluated candidate, deferrals and removals backed by
61
+ their decision and user authorization, `delivery` reported as original versus
62
+ agreed scope (never conflate them), adequacy `adequate`; the manifest is schema 3
63
+ and the `Provenance` line reads `runtime (schema 3)`. `ready` names
64
+ `COVERAGE_INCOMPLETE`, `SCOPE_UNAUTHORIZED`, `OBLIGATION_MISSING`,
65
+ `REVIEW_MISSING` and `ADEQUACY_REQUIRED` as failures. A change labeled
66
+ `Coverage unverified` did not adopt strict coverage: audit it under the rules
67
+ above and say so; never imply strict coverage was established.
50
68
  - Every file the manifest lists is tracked, and `git status --short` is empty before
51
69
  and after the audit.
52
70
  - Run the repository's candidate-wide release gate directly (`npm test`, or the
@@ -18,11 +18,21 @@ start of a session. Read-only: change nothing.
18
18
  candidate, any warnings (each readiness problem once), and the next command to run.
19
19
  `scripts/pincer-status.sh --json` prints one status object with reason codes and the
20
20
  next action for tooling; `node scripts/pincer-runtime.cjs ready [T-NN]` is the
21
- read-only gate.
21
+ read-only gate. On a project with change records (`Runtime changes …`) run
22
+ `node scripts/pincer-runtime.cjs resume` as well: it reports the selected change, its
23
+ lifecycle, agreement and authorization, decisions, references, tickets, attempts,
24
+ candidate, the authored handoff note and the next command, and never writes;
25
+ `change list` shows every retained change, `status --change <id>` and
26
+ `resume --change <id>` inspect another one without selecting it. `resume` is the
27
+ report; `change resume <id>` is the lifecycle operation. The `Coverage` line says
28
+ `strict` or `unverified`; on a strict change `node scripts/pincer-runtime.cjs coverage`
29
+ (and `impact` after an edit) name the exact scenario, ticket, check or decision
30
+ that is next — quote them rather than inferring coverage from the ticket list.
22
31
  2. Report in three lines: where the workflow is, what is in progress or blocked, and the
23
32
  next command. Quote the `Next` line as-is. When the `Runtime` line says `legacy`,
24
33
  add the register or migrate command it names as the step that precedes the next
25
- ticket (fresh project → `register`, legacy receipts → `migrate --preview`).
34
+ ticket (fresh project → `register`, legacy receipts → `migrate --preview`, a v0.5.0
35
+ binding → `migrate --preview`, no selection → `change select <id>`).
26
36
  3. If a ticket is `in_progress`, read it and `git status`, then offer to resume it with
27
37
  `/pincer-code T-{NN}`. If the script printed a warning, surface it — a done ticket
28
38
  without a receipt was marked by hand and needs `scripts/pincer-ticket.sh verify T-{NN}`.
@@ -160,12 +160,15 @@ function dangerousReason(source, depth = 0) {
160
160
  }
161
161
 
162
162
  const TICKET_PATH = /(^|[\\/])tickets[\\/]T-[0-9]+[^\\/]*\.md$/;
163
- // Runtime-owned state: local attempts under .pincer/ and change bindings under
164
- // .prd/changes/ are written only by pincer-runtime.cjs.
163
+ // Runtime-owned state: local attempts under .pincer/, change records under
164
+ // .prd/changes/ (with their agreement snapshots), evaluation locators under
165
+ // .prd/evidence/changes/ and the inventory/map snapshots a strict evaluation writes
166
+ // under .prd/evidence/prd-vN/<candidate>/coverage/ are written only by
167
+ // pincer-runtime.cjs. The coverage map .prd/coverage/<id>.json is authored by hand.
165
168
  // The runtime owns .pincer/runtime/ and .pincer/backups/ (and the directory as a
166
169
  // whole); .pincer/drafts/ is the agent's own scratch space for evidence drafts.
167
170
  const RUNTIME_PATH = /(^|[\\/])\.pincer(?:[\\/](?:runtime|backups)(?:[\\/]|$)|[\\/]?$)/;
168
- const BINDING_PATH = /(^|[\\/])\.prd[\\/]changes([\\/]|$)/;
171
+ const BINDING_PATH = /(^|[\\/])\.prd[\\/](?:changes|evidence[\\/]changes|evidence[\\/]prd-v[0-9]+[\\/][0-9a-f]{40}[\\/]coverage)([\\/]|$)/;
169
172
  const PROTECTED = ['status', 'started', 'last_check', 'verified', 'finished'];
170
173
 
171
174
  function ticketPath(value) {
@@ -212,7 +215,7 @@ function applyEdit(content, oldText, newText, replaceAll = false) {
212
215
  function guardEdits(tool, toolInput) {
213
216
  const file = toolInput.file_path;
214
217
  if (typeof file !== 'string') block(`${tool} payload must contain a string file_path.`);
215
- if (runtimePath(file)) block('runtime state (.pincer/) and change bindings (.prd/changes/) are written only by pincer-runtime.cjs.');
218
+ if (runtimePath(file)) block('runtime state (.pincer/), change records (.prd/changes/), evaluation locators and coverage snapshots (.prd/evidence/…/coverage/) are written only by pincer-runtime.cjs; the coverage map .prd/coverage/<id>.json is yours to edit.');
216
219
  if (!ticketPath(file)) return;
217
220
  const before = existingContent(file);
218
221
  if (tool === 'Write') {
@@ -240,11 +243,15 @@ function guardEdits(tool, toolInput) {
240
243
  function isExactPincerCall(source) {
241
244
  const commands = shellCommands(source).filter(command => command.words.length);
242
245
  if (commands.length !== 1 || commands[0].separator) return false;
246
+ // An output redirection is a write, whatever runs in front of it: fall through to
247
+ // ticketShellMutation so its target is tested like any other path. Without this,
248
+ // adding a verb to the list below silently opened a new carrier for it.
249
+ if (commands[0].operators.some(op => op === '>' || op === '>>')) return false;
243
250
  const { executable, args } = commandParts(commands[0]);
244
251
  let words = [executable, ...args];
245
252
  if (['bash', 'sh', 'node'].includes(words[0])) words = words.slice(1);
246
253
  if (/pincer-runtime\.cjs$/.test(words[0] || '')) {
247
- return ['start', 'verify', 'done', 'bind', 'register', 'migrate', 'recover', 'check', 'evidence'].includes(words[1]);
254
+ return ['start', 'verify', 'done', 'bind', 'register', 'migrate', 'recover', 'check', 'evidence', 'change', 'resume'].includes(words[1]);
248
255
  }
249
256
  if (!/pincer-ticket\.sh$/.test(words[0] || '')) return false;
250
257
  const action = words[1];
@@ -335,7 +342,7 @@ function ticketShellMutation(source, depth = 0) {
335
342
  if (viaXargs && ['checkout', 'restore', 'clean'].includes(sub.name) && stdinPathspec) return true;
336
343
  }
337
344
  const hasTicket = words.some(ticketPath) || /(^|[\s'"`])tickets[\\/]T-[0-9]+[^\s'"`]*/.test(source) ||
338
- words.some(runtimePath) || /(^|[\s'"`=])\.pincer(?:[\\/](?:runtime|backups)(?:[\\/]|[\s'"`]|$)|[\\/]?(?:[\s'"`]|$))/.test(source) || /(^|[\s'"`=])\.prd[\\/]changes([\\/]|[\s'"`]|$)/.test(source);
345
+ words.some(runtimePath) || /(^|[\s'"`=])\.pincer(?:[\\/](?:runtime|backups)(?:[\\/]|[\s'"`]|$)|[\\/]?(?:[\s'"`]|$))/.test(source) || /(^|[\s'"`=])\.prd[\\/](?:changes|evidence[\\/]changes|evidence[\\/]prd-v[0-9]+[\\/][0-9a-f]{40}[\\/]coverage)([\\/]|[\s'"`]|$)/.test(source);
339
346
  if (!hasTicket) continue;
340
347
  if (command.operators.some(op => op === '>' || op === '>>')) return true;
341
348
  if (['rm', 'mv', 'cp', 'install', 'truncate', 'touch', 'tee', 'ed', 'ex'].includes(executable)) return true;
@@ -41,10 +41,17 @@ and never renumbered: a revision keeps existing IDs and adds new ones. Tickets
41
41
  name the IDs they implement and evaluation dispositions every ID.
42
42
 
43
43
  #### R-01 — short title
44
- - Scenario: an observable acceptance scenario (given / when / then, or a command
45
- and its expected output). Add one line per scenario.
46
- - Failure path: what invalid input or the relevant failure produces.
47
- - Preserve: existing behavior this must not change (brownfield).
44
+ - **S-01:** an observable acceptance scenario (given / when / then, or a command
45
+ and its expected output). One bold `S-NN` item per scenario, defined under its
46
+ requirement heading; every requirement has at least one.
47
+ - **S-02:** Failure path: what invalid input or the relevant failure produces.
48
+ - **S-03:** Preserve: existing behavior this must not change (brownfield).
49
+
50
+ Scenario IDs are stable like requirement IDs. The runtime reads exactly this
51
+ grammar (a `##`..`####` heading `R-NN — title`, bold `- **S-NN:** text` items
52
+ under it, continuation lines indented); mentions in prose, tables and fenced
53
+ examples define nothing. On a change with strict coverage the parsed inventory is
54
+ what the coverage map and the evaluation must cover completely.
48
55
 
49
56
  When the user supplied a PRD, keep its meaning and its existing requirement IDs.
50
57
  If its structure needs adapting to this template, add a `Requirement mapping`
@@ -38,7 +38,7 @@ sandbox_mode = "workspace-write" # writes confined to the repo; no network by
38
38
 
39
39
  The ticket scripts work here unchanged (`scripts/pincer-ticket.sh
40
40
  start|verify|done T-NN` and `scripts/pincer-status.sh`); they are thin wrappers
41
- around `scripts/pincer-runtime.cjs`, so Node.js 18+ is required.
41
+ around `scripts/pincer-runtime.cjs`, so Node.js 22+ is required.
42
42
  Without a Pincer Codex hook adapter, the rule in `AGENTS.md` carries the weight
43
43
  of stopping hand-edited ticket state; `$pincer-status` warns about any ticket
44
44
  marked done without a receipt.