@osovv/vv-opencode 1.4.1 → 1.4.3-rc.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 (36) hide show
  1. package/CHANGELOG.md +17 -0
  2. package/README.md +17 -5
  3. package/dist/lib/orchestration.js +8 -3
  4. package/dist/lib/orchestration.js.map +1 -1
  5. package/dist/plugins/system-context-injection/index.js +17 -8
  6. package/dist/plugins/system-context-injection/index.js.map +1 -1
  7. package/dist/plugins/workflow/checkpoints.d.ts +53 -1
  8. package/dist/plugins/workflow/checkpoints.js +350 -33
  9. package/dist/plugins/workflow/checkpoints.js.map +1 -1
  10. package/dist/plugins/workflow/delegated.d.ts +144 -2
  11. package/dist/plugins/workflow/delegated.js +542 -12
  12. package/dist/plugins/workflow/delegated.js.map +1 -1
  13. package/dist/plugins/workflow/index.js +269 -20
  14. package/dist/plugins/workflow/index.js.map +1 -1
  15. package/dist/plugins/workflow/persistence.d.ts +6 -4
  16. package/dist/plugins/workflow/persistence.js +192 -31
  17. package/dist/plugins/workflow/persistence.js.map +1 -1
  18. package/dist/plugins/workflow/repair.d.ts +3 -0
  19. package/dist/plugins/workflow/repair.js +39 -31
  20. package/dist/plugins/workflow/repair.js.map +1 -1
  21. package/dist/plugins/workflow/state.js +16 -3
  22. package/dist/plugins/workflow/state.js.map +1 -1
  23. package/dist/plugins/workflow/tooling.d.ts +36 -6
  24. package/dist/plugins/workflow/tooling.js +137 -20
  25. package/dist/plugins/workflow/tooling.js.map +1 -1
  26. package/package.json +1 -1
  27. package/schemas/vvoc/v3.json +1 -1
  28. package/templates/agents/investigator.md +3 -0
  29. package/templates/agents/vv-code-reviewer.md +10 -3
  30. package/templates/agents/vv-controller.md +28 -6
  31. package/templates/agents/vv-implementer.md +6 -3
  32. package/templates/agents/vv-spec-reviewer.md +4 -0
  33. package/templates/skills/vv-execute/SKILL.md +11 -7
  34. package/templates/skills/vv-plan/SKILL.md +3 -1
  35. package/templates/skills/vv-review/SKILL.md +2 -0
  36. package/templates/skills/vv-spec/SKILL.md +2 -1
@@ -1,8 +1,8 @@
1
1
  // FILE: src/plugins/workflow/tooling.ts
2
- // VERSION: 0.3.0
2
+ // VERSION: 0.4.0
3
3
  // START_MODULE_CONTRACT
4
4
  // PURPOSE: Provide work-item tooling handlers that wrap explicit workflow state operations with structured protocol-friendly responses.
5
- // SCOPE: work_item_open, work_item_list, and work_item_close tool definitions with delegated-mode open validation and mode-specific serialization; work_item_decide and work_checkpoint control-tool definitions wrapping delegated decisions, plan registration, checkpoint start/verify, and failed-checkpoint rework authorization.
5
+ // SCOPE: work_item_open, work_item_list, and work_item_close tool definitions with delegated-mode open validation and mode-specific serialization including recovery-aware progress summaries; work_item_decide and work_checkpoint control-tool definitions wrapping delegated decisions, plan registration, checkpoint start/verify, failed-checkpoint rework authorization, and bounded recover for stopped or exhausted targets with optional root-user message authorization through a read-only lookup.
6
6
  // DEPENDS: [src/plugins/workflow/checkpoint-io.ts, src/plugins/workflow/checkpoints.ts, src/plugins/workflow/delegated.ts, src/plugins/workflow/state.ts]
7
7
  // LINKS: M-WORKFLOW-TOOLING, M-WORKFLOW-DELEGATED, M-WORKFLOW-CHECKPOINTS, M-PLUGIN-WORKFLOW
8
8
  // ROLE: RUNTIME
@@ -12,11 +12,12 @@
12
12
  // START_MODULE_MAP
13
13
  // WorkflowToolContext - Minimal execution context required by workflow tools.
14
14
  // WorkflowToolDefinition - Deterministic tool definition shape with an optionally async execute handler.
15
+ // DelegatedControlOptions - Optional read-only authorization lookup bound to the plugin SDK client.
15
16
  // createWorkItemOpenTool - Creates work_item_open tool wrapper around explicit openWorkItem contract including standalone delegated tasks.
16
- // createWorkItemListTool - Creates work_item_list tool wrapper with mode, round metadata, delegated acceptance state, and registered plan runs.
17
+ // createWorkItemListTool - Creates work_item_list tool wrapper with mode, round metadata, delegated acceptance and recovery state, and registered plan runs.
17
18
  // createWorkItemCloseTool - Creates work_item_close tool wrapper with ready_to_close gating responses.
18
- // createWorkItemDecideTool - Creates work_item_decide control wrapper around decideDelegatedWorkItem and rework authorization.
19
- // createWorkCheckpointTool - Creates work_checkpoint control wrapper around plan registration, checkpoint start, and verify.
19
+ // createWorkItemDecideTool - Creates work_item_decide control wrapper around decideDelegatedWorkItem, rework authorization, and bounded recovery.
20
+ // createWorkCheckpointTool - Creates work_checkpoint control wrapper around plan registration, checkpoint start, verify, and checkpoint recovery.
20
21
  // DecideArgs - work_item_decide tool argument shape.
21
22
  // CheckpointArgs - work_checkpoint tool argument shape.
22
23
  // WorkCheckpointRegisterInput - Register-action input discriminator.
@@ -25,11 +26,11 @@
25
26
  // END_MODULE_MAP
26
27
  //
27
28
  // START_CHANGE_SUMMARY
28
- // LAST_CHANGE: [C-DELEGATED-WORKFLOW-ASTRA-PRESETS - Added delegated open validation, list metadata, and the two delegated control tool wrappers.]
29
+ // LAST_CHANGE: [C-WORKFLOW-BOUNDED-RECOVERY-R1 - Added decision recover and work_checkpoint action recover with bounded recovery text, stable recoveryId, optional userMessageId authorization, and recovery-aware inspection output.]
29
30
  // END_CHANGE_SUMMARY
30
31
  import { closeWorkItem, getReviewRound, listWorkItems, openWorkItem, } from "./state.js";
31
- import { authorizeReworkFromFailedCheckpoint, getDelegatedRunView, registerDelegatedPlan, startDelegatedCheckpoint, verifyDelegatedCheckpoint, } from "./checkpoints.js";
32
- import { currentDelegatedAcceptance, decideDelegatedWorkItem } from "./delegated.js";
32
+ import { authorizeReworkFromFailedCheckpoint, getDelegatedRunView, recoverDelegatedCheckpoint, registerDelegatedPlan, startDelegatedCheckpoint, verifyDelegatedCheckpoint, } from "./checkpoints.js";
33
+ import { currentDelegatedAcceptance, decideDelegatedWorkItem, recoverDelegatedWorkItem, summarizeDelegatedProgress, } from "./delegated.js";
33
34
  function coerceNonEmptyString(value) {
34
35
  if (typeof value !== "string")
35
36
  return undefined;
@@ -171,11 +172,24 @@ function serializeWorkItem(record) {
171
172
  accepted: currentDelegatedAcceptance(record) !== undefined,
172
173
  acceptedAttempt: currentDelegatedAcceptance(record)?.attempt,
173
174
  reworkCount: record.delegated.reworkHistory.length,
175
+ ...serializeProgress(record),
174
176
  },
175
177
  }
176
178
  : {}),
177
179
  };
178
180
  }
181
+ /** Recovery-aware progress fields shared by work-item serialization. */
182
+ function serializeProgress(record) {
183
+ const progress = summarizeDelegatedProgress(record);
184
+ return {
185
+ attemptBudget: progress.attemptBudget,
186
+ remainingAttempts: progress.remainingAttempts,
187
+ recoveryCount: progress.recoveryGrants,
188
+ autonomousGrantConsumed: progress.autonomousGrantConsumed,
189
+ reportRejectionCount: progress.reportRejectedAttempts,
190
+ nextAction: progress.nextAction,
191
+ };
192
+ }
179
193
  // START_CONTRACT: createWorkItemOpenTool
180
194
  // PURPOSE: Build work_item_open handler that supports deterministic batch idempotent open operations with explicit workflow intent.
181
195
  // INPUTS: { store: WorkItemStore - workflow in-memory store }
@@ -299,17 +313,17 @@ export function createWorkItemCloseTool(store) {
299
313
  };
300
314
  }
301
315
  // START_CONTRACT: createWorkItemDecideTool
302
- // PURPOSE: Build work_item_decide handler wrapping explicit controller acceptance, change requests, and checkpoint-authorized rework.
303
- // INPUTS: { store: WorkItemStore - workflow in-memory store }
304
- // OUTPUTS: { WorkflowToolDefinition<DecideArgs, Record<string, unknown>> - executable control tool definition }
316
+ // PURPOSE: Build work_item_decide handler wrapping explicit controller acceptance, change requests, checkpoint-authorized rework, and bounded recovery.
317
+ // INPUTS: { store: WorkItemStore - workflow in-memory store, options?: DelegatedControlOptions - optional read-only authorization lookup }
318
+ // OUTPUTS: { WorkflowToolDefinition<DecideArgs, Promise<Record<string, unknown>>> - async executable control tool definition }
305
319
  // SIDE_EFFECTS: [Mutates delegated work-item state through the domain layer]
306
320
  // LINKS: [M-WORKFLOW-TOOLING, M-WORKFLOW-DELEGATED, M-WORKFLOW-CHECKPOINTS]
307
321
  // END_CONTRACT: createWorkItemDecideTool
308
- export function createWorkItemDecideTool(store) {
322
+ export function createWorkItemDecideTool(store, options) {
309
323
  return {
310
324
  name: "work_item_decide",
311
- description: "Accept or request changes for the current completed delegated attempt, or authorize bounded rework of an accepted task from a failed checkpoint.",
312
- execute: (args, context, overrideStore) => {
325
+ description: "Accept or request changes for the current completed delegated attempt, authorize bounded rework of an accepted task from a failed checkpoint, or recover a stopped or exhausted unaccepted task with a bounded diagnosis and changed condition.",
326
+ async execute(args, context, overrideStore) {
313
327
  const s = overrideStore ?? store;
314
328
  const workItemId = coerceNonEmptyString(args.workItemId);
315
329
  const decision = args.decision;
@@ -363,13 +377,63 @@ export function createWorkItemDecideTool(store) {
363
377
  state: s.getWorkItem(context.sessionId, workItemId)?.state,
364
378
  };
365
379
  }
380
+ if (decision === "recover") {
381
+ const recoveryId = coerceNonEmptyString(args.recoveryId);
382
+ const diagnosis = typeof args.diagnosis === "string" ? args.diagnosis : "";
383
+ const changedCondition = typeof args.changedCondition === "string" ? args.changedCondition : "";
384
+ const verification = Array.isArray(args.verification) ? args.verification.map(String) : [];
385
+ const userMessageId = coerceNonEmptyString(args.userMessageId);
386
+ if (!recoveryId) {
387
+ return {
388
+ tool: "work_item_decide",
389
+ sessionId: context.sessionId,
390
+ ok: false,
391
+ errorCode: "INVALID_INPUT",
392
+ message: "INVALID_INPUT: recover requires a stable recoveryId, diagnosis, changedCondition, and verification references",
393
+ };
394
+ }
395
+ const recovered = await recoverDelegatedWorkItem(s, {
396
+ sessionId: context.sessionId,
397
+ workItemId,
398
+ attempt: args.attempt,
399
+ diagnosis,
400
+ changedCondition,
401
+ verification,
402
+ recoveryId,
403
+ ...(userMessageId !== undefined
404
+ ? { userMessageId, lookupUserMessage: options?.lookupUserMessage }
405
+ : {}),
406
+ });
407
+ if (!recovered.ok) {
408
+ return {
409
+ tool: "work_item_decide",
410
+ sessionId: context.sessionId,
411
+ ok: false,
412
+ errorCode: recovered.errorCode,
413
+ message: recovered.message,
414
+ };
415
+ }
416
+ return {
417
+ tool: "work_item_decide",
418
+ sessionId: context.sessionId,
419
+ ok: true,
420
+ action: "recover",
421
+ workItemId,
422
+ recoveryId: recovered.recoveryId,
423
+ kind: recovered.kind,
424
+ attemptBudget: recovered.attemptBudget,
425
+ remainingAttempts: recovered.remainingAttempts,
426
+ state: recovered.record.state,
427
+ nextAction: summarizeDelegatedProgress(recovered.record).nextAction,
428
+ };
429
+ }
366
430
  if (decision !== "accept" && decision !== "request_changes") {
367
431
  return {
368
432
  tool: "work_item_decide",
369
433
  sessionId: context.sessionId,
370
434
  ok: false,
371
435
  errorCode: "INVALID_INPUT",
372
- message: "INVALID_INPUT: decision must be accept, request_changes, or rework",
436
+ message: "INVALID_INPUT: decision must be accept, request_changes, rework, or recover",
373
437
  };
374
438
  }
375
439
  const concernsDisposition = typeof args.concernsDisposition === "string" ? args.concernsDisposition : undefined;
@@ -405,16 +469,16 @@ export function createWorkItemDecideTool(store) {
405
469
  };
406
470
  }
407
471
  // START_CONTRACT: createWorkCheckpointTool
408
- // PURPOSE: Build work_checkpoint handler wrapping plan registration, checkpoint start, and fingerprint-verified outcomes.
409
- // INPUTS: { store: WorkItemStore - workflow in-memory store }
472
+ // PURPOSE: Build work_checkpoint handler wrapping plan registration, checkpoint start, fingerprint-verified outcomes, and bounded checkpoint recovery.
473
+ // INPUTS: { store: WorkItemStore - workflow in-memory store, options?: DelegatedControlOptions - optional read-only authorization lookup }
410
474
  // OUTPUTS: { WorkflowToolDefinition<CheckpointArgs, Promise<Record<string, unknown>>> - async executable control tool definition }
411
475
  // SIDE_EFFECTS: [Registers plan runs and mutates checkpoint state through the domain layer]
412
476
  // LINKS: [M-WORKFLOW-TOOLING, M-WORKFLOW-CHECKPOINTS, M-WORKFLOW-DELEGATED]
413
477
  // END_CONTRACT: createWorkCheckpointTool
414
- export function createWorkCheckpointTool(store) {
478
+ export function createWorkCheckpointTool(store, options) {
415
479
  return {
416
480
  name: "work_checkpoint",
417
- description: "Register an approved delegated plan, start a declared review checkpoint, or verify checkpoint outcomes; verify with complete: true seals a finished final checkpoint.",
481
+ description: "Register an approved delegated plan, start a declared review checkpoint, verify checkpoint outcomes, or recover a stopped or generation-exhausted checkpoint; verify with complete: true seals a finished final checkpoint.",
418
482
  async execute(args, context, overrideStore) {
419
483
  const s = overrideStore ?? store;
420
484
  const action = args.action;
@@ -541,12 +605,65 @@ export function createWorkCheckpointTool(store) {
541
605
  ...(verified.sealedRun !== undefined ? { sealedRun: verified.sealedRun } : {}),
542
606
  };
543
607
  }
608
+ if (action === "recover") {
609
+ const recoveryId = coerceNonEmptyString(args.recoveryId);
610
+ const diagnosis = typeof args.diagnosis === "string" ? args.diagnosis : "";
611
+ const changedCondition = typeof args.changedCondition === "string" ? args.changedCondition : "";
612
+ const verification = Array.isArray(args.verification) ? args.verification.map(String) : [];
613
+ const userMessageId = coerceNonEmptyString(args.userMessageId);
614
+ if (!recoveryId) {
615
+ return {
616
+ tool: "work_checkpoint",
617
+ sessionId: context.sessionId,
618
+ ok: false,
619
+ errorCode: "INVALID_INPUT",
620
+ message: "INVALID_INPUT: recover requires a stable recoveryId, diagnosis, changedCondition, and verification references",
621
+ };
622
+ }
623
+ const recovered = await recoverDelegatedCheckpoint(s, {
624
+ sessionId: context.sessionId,
625
+ runId,
626
+ checkpointId,
627
+ diagnosis,
628
+ changedCondition,
629
+ verification,
630
+ recoveryId,
631
+ ...(userMessageId !== undefined
632
+ ? { userMessageId, lookupUserMessage: options?.lookupUserMessage }
633
+ : {}),
634
+ });
635
+ if (!recovered.ok) {
636
+ return {
637
+ tool: "work_checkpoint",
638
+ sessionId: context.sessionId,
639
+ ok: false,
640
+ errorCode: recovered.errorCode,
641
+ message: recovered.message,
642
+ };
643
+ }
644
+ return {
645
+ tool: "work_checkpoint",
646
+ sessionId: context.sessionId,
647
+ ok: true,
648
+ action: "recover",
649
+ runId,
650
+ checkpointId,
651
+ recoveryId: recovered.recoveryId,
652
+ kind: recovered.kind,
653
+ generationBudget: recovered.generationBudget,
654
+ ...(recovered.settledStoppedGeneration !== undefined
655
+ ? { settledStoppedGeneration: recovered.settledStoppedGeneration }
656
+ : {}),
657
+ checkpointStatus: recovered.checkpoint.status,
658
+ lastOutcome: recovered.checkpoint.lastOutcome,
659
+ };
660
+ }
544
661
  return {
545
662
  tool: "work_checkpoint",
546
663
  sessionId: context.sessionId,
547
664
  ok: false,
548
665
  errorCode: "INVALID_INPUT",
549
- message: "INVALID_INPUT: action must be register, start, or verify",
666
+ message: "INVALID_INPUT: action must be register, start, verify, or recover",
550
667
  };
551
668
  },
552
669
  };
@@ -1 +1 @@
1
- {"version":3,"file":"tooling.js","sourceRoot":"","sources":["../../../src/plugins/workflow/tooling.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"tooling.js","sourceRoot":"","sources":["../../../src/plugins/workflow/tooling.ts"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@osovv/vv-opencode",
3
- "version": "1.4.1",
3
+ "version": "1.4.3-rc.0",
4
4
  "description": "An opinionated agentic development layer for OpenCode — spec-first when it matters, review-driven execution, portable model roles, safer tools, and long-run safety.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
- "$id": "https://cdn.jsdelivr.net/npm/@osovv/vv-opencode@1.4.1/schemas/vvoc/v3.json",
3
+ "$id": "https://cdn.jsdelivr.net/npm/@osovv/vv-opencode@1.4.3-rc.0/schemas/vvoc/v3.json",
4
4
  "title": "vvoc config",
5
5
  "description": "Canonical vvoc configuration document.",
6
6
  "type": "object",
@@ -32,6 +32,9 @@ Rules:
32
32
  - Reuse stable repository vocabulary. If the repository already has a canonical term, keep it.
33
33
  - If the task context or repository provides project-owned overlays such as architecture notes, boundaries, preferred patterns, verification commands, or examples, treat them as investigation constraints.
34
34
  - If a test fails, explain why it fails before considering code changes.
35
+ - Name the violated property explicitly: which expected behavior or established contract was broken, not just the symptom.
36
+ - Anchor the root cause in a supporting diagnostic scenario — the reproduction or experiment that demonstrates the violation — and report directly affected variants or consumers where the same root cause plausibly produces the same violation.
37
+ - Deliver these through the existing result structure: the violated property in `Observed`, the diagnostic scenario in `Strongest evidence`, and the affected variants or consumers alongside `Likely root cause`.
35
38
  - If you cannot reproduce the issue, say so clearly and report what evidence is missing.
36
39
  - Do not make silent material assumptions about environment, data shape, expected behavior, or verification.
37
40
  - If new evidence changes the safest route, say so explicitly.
@@ -23,6 +23,11 @@ Rules:
23
23
 
24
24
  - Inspect the code and diff directly for all findings.
25
25
  - Reconstruct the effective task model before reviewing: goal, route when stated, constraints, non-goals, assumptions, verification, and project-owned overlays when present.
26
+ - Reconstruct the expected properties independently from the request, contracts, and surrounding code before judging the diff; do not adopt the author's framing or the author's tests as the definition of correct.
27
+ - Examine the consumers the change touches within the reviewed scope: callers, variants, and data flows that rely on the changed behavior.
28
+ - Distinguish an initial review from a scoped re-review. When the request is a re-review after a fix, first verify each prior finding against the fix, then check the material effects the fix itself could have caused — including directly affected consumers where necessary — instead of re-reviewing the whole change from scratch. Cosmetic preferences and unrelated optional improvements observed during a re-review do not renew the correction loop; concrete blocking defects and material verification gaps are never downgraded merely to finish.
29
+ - Judge verdicts by evidence, not by absence: PASS requires no blocking findings and sufficient evidence for the material correctness claims in the reviewed scope; FAIL covers a concrete defect or a material verification gap; NEEDS_CONTEXT covers missing context that prevents safe judgment.
30
+ - A verification finding identifies the property at stake, why it is relevant, the evidence limitation, and the smallest useful check that would close it. Keep material verification gaps specific and actionable — do not demand unspecified missing tests or require a duplicate full-suite run to state one.
26
31
  - When the request pins a review snapshot or covered scope, review exactly that snapshot. If the covered files appear to have changed during your review or the evidence does not match the current files, report the drift explicitly instead of reviewing a moving tree.
27
32
  - PASS is a review verdict about the pinned snapshot — not task acceptance and not approval of later edits.
28
33
  - Review only issues introduced by this change or left unresolved by it.
@@ -39,8 +44,8 @@ Rules:
39
44
  - If a bug risk depends on an unstated material assumption, say so explicitly.
40
45
  - Treat route or process choices as findings only when they create a concrete engineering risk.
41
46
  - Raise cosmetic concerns only when they hide a real engineering risk.
42
- - If a concern lacks a concrete failure mode, keep it under residual risks.
43
- - If no issues are found, say `No findings` explicitly and mention any residual risk or testing gap.
47
+ - If a concern lacks a concrete failure mode, keep it under residual risks; a material verification gap is not a residual risk — report it as a Verification finding.
48
+ - If no blocking findings exist, say `No findings` explicitly and report residual risks and testing gaps; no discovered defect is not proof of correctness, so state what the review did and did not establish.
44
49
 
45
50
  Final response protocol:
46
51
 
@@ -59,7 +64,9 @@ Output format after the top block:
59
64
  - Residual risks / testing gaps
60
65
  - Brief assessment
61
66
 
62
- If no issues are found, keep `VVOC_STATUS: PASS` and use `- none` under Critical, Important, and Minor.
67
+ When no blocking findings exist and the evidence supports the material claims in the reviewed scope, use `VVOC_STATUS: PASS` with `- none` under Critical, Important, and Minor.
68
+ When a material correctness claim in the reviewed scope lacks supporting evidence, report it as a Verification finding — a material verification gap — and use `VVOC_STATUS: FAIL` instead of passing on silence.
69
+ When context you need for a safe verdict is missing, use `VVOC_STATUS: NEEDS_CONTEXT` and state exactly what is missing.
63
70
  When a finding is present, make the explanation self-contained enough that a follow-up implementer can act on it without re-discovering the area.
64
71
 
65
72
 
@@ -44,8 +44,24 @@ trigger. Keep it current and surface it when blocked, rerouting, or handing off.
44
44
  - Keep changes within the requested and approved scope.
45
45
  - Preserve user-owned configuration and fail closed rather than guessing when authoritative sources
46
46
  conflict.
47
+ - Resolve repository-answerable technical questions yourself from the established code, contracts,
48
+ and tests; only a genuine business-semantics fork needs a new user decision.
47
49
  </evidence_and_scope>
48
50
 
51
+ <correctness_leadership>
52
+ - Frame work by deriving its engineering obligations from the request and established contracts: the
53
+ target effect, the material properties that must be preserved, and the directly affected consumers.
54
+ - Challenge incomplete task framing before handing work off: missing acceptance criteria that a
55
+ consumer would notice, verification that cannot exercise the changed behavior, or expectations
56
+ copied from a preferred implementation.
57
+ - When handing off bounded tasks, include the material dependencies and at least one diagnostic
58
+ scenario that exercises the property at risk; a handoff that omits them is incomplete.
59
+ - Treat correctness obligations as yours to enforce: a DONE report, green general checks, or
60
+ reviewer agreement alone is not acceptance. Tie substantive completion claims to observed
61
+ evidence that actually exercises the changed behavior, and distinguish no discovered defect from
62
+ sufficient support for a material claim.
63
+ </correctness_leadership>
64
+
49
65
  <editing_workflow>
50
66
  - Before editing, understand the relevant local contract, nearby tests, and surrounding code.
51
67
  - When editing files, prefer the dedicated edit tool over shell-based rewrites when available.
@@ -81,11 +97,16 @@ unclear, scope crosses an unexpected boundary, or requirement ambiguity blocks s
81
97
  - Do not implement source behavior while a required approval or authoritative artifact is missing.
82
98
  </large_feature_gate>
83
99
 
84
- <hard_stop_handoff>
85
- If work stops because of a blocker, missing context, drift, or conflicting authority, leave a compact
86
- handoff containing the goal, constraints, progress, key decisions, critical evidence, blocker, and
87
- next safe step. Make it sufficient to resume without rediscovering settled facts.
88
- </hard_stop_handoff>
100
+ <stop_and_recovery>
101
+ Distinguish a worker stop, a suspended loop, controller diagnosis, authorized recovery, and actual
102
+ session completion. A worker stop or an exhausted bounded loop returns control to you for
103
+ diagnosis: it suspends that work, it does not end the session. Diagnose the stop yourself, then use
104
+ the session policy's supported recovery operation for that target — never redispatch the unchanged
105
+ stopped item and never grant yourself unlimited retries. Authorized recovery resumes or grants one
106
+ bounded unit; it is not acceptance, not a passing review, and not completion. A handoff file is
107
+ written only when the user asks for a transfer or the session genuinely ends — not for every failed
108
+ check. If work is truly blocked pending a user decision, say so and stop.
109
+ </stop_and_recovery>
89
110
 
90
111
  <plan_artifacts>
91
112
  - vvoc specification packages live at
@@ -98,7 +119,8 @@ next safe step. Make it sufficient to resume without rediscovering settled facts
98
119
  <final_response_format>
99
120
  - Start with the outcome.
100
121
  - For review, analysis, planning, or investigation, start with findings or the plan.
101
- - Before claiming completion, read the goal back line by line and mark each line met / partly / not met, then name the edge you did not check.
122
+ - Before claiming completion, check the goal against the result line by line, name any part that is
123
+ not met, and name the edge you did not check.
102
124
  - Mention changed files and verification only when implementation occurred.
103
125
  - Mention assumptions, skipped checks, blockers, or residual risks when they materially affect the
104
126
  outcome.
@@ -9,9 +9,10 @@ Your job is to execute the assigned task exactly, with the smallest correct chan
9
9
 
10
10
  Worker protocol:
11
11
 
12
- - Hyperfocus on the assigned scope. Finish only the work you were given. Keep scope within the assignment boundaries — when the packet declares a write scope, edit only those files unless the controller explicitly broadens it.
12
+ - Keep writes within the assigned scope. Finish only the work you were given; when the packet declares a write scope, edit only those files unless the controller explicitly broadens it. Investigating directly affected consumers — callers, variants, and contracts your change touches — is part of the task, not a scope violation: read them so your verification covers the actual impact.
13
13
  - When dispatched as a delegated worker, complete your own local edit, test, and fix cycle before reporting: run the packet's verification commands yourself and fix your own lint, type, and test failures first. Do not report a partial cycle for the controller to repair.
14
14
  - Returning DONE reports a completed attempt. It is not acceptance: the controller inspects your result and explicitly decides. Do not claim your work is accepted, approved, or closing.
15
+ - Returning BLOCKED or NEEDS_CONTEXT stops this task and returns control to the controller for bounded diagnosis and a supported recovery decision. A stop is about this assignment, not the end of the session: report the exact blocker or missing context truthfully with the smallest decision or input that would unblock it, and let the controller decide the route.
15
16
  - Return the minimum useful result: what changed, what was verified (with the exact commands and their fresh results), material assumptions, and concerns. Reference evidence by path and command output rather than pasting whole files. Omit filler, repeated tool transcripts, and broad future plans.
16
17
  - Prefer updating existing required artifacts over creating new files.
17
18
  - Create documentation or Markdown files only when explicitly requested or required by repository rules or contracts.
@@ -35,13 +36,14 @@ Rules:
35
36
  - Prefer semantically meaningful identifiers when adding new names. Avoid vague placeholders unless they are already the established local term.
36
37
  - If the task context or repository provides project-owned overlays — vocabulary, preferred patterns, boundaries, verification commands, architecture notes, or examples — follow them over generic defaults.
37
38
  - If the task or context requires TDD, follow it literally. Otherwise still add targeted verification for the changed behavior.
39
+ - Derive test expectations from the task contract, the request, and established behavior — never from your implementation's current output. Ground mocks in the dependency's established contract (its types, documentation, tests, or real call shapes), not in whatever makes your change pass.
38
40
 
39
41
  ## Handling reviewer findings
40
42
  - If the packet includes reviewer findings, start from the provided file paths, line refs, symbols or scopes, fix direction, and evidence before widening search.
41
43
  - When fixing reviewer findings, address concrete issues only. Keep within the settled scope and avoid adjacent refactors.
42
44
  - Treat a normalized finding packet as the starting map for follow-up edits. Reuse its `Location`, `Symbol/Scope`, `Expected fix direction`, `Evidence`, and `Verification target` fields directly before doing any broader search.
43
45
  - If reviewer feedback becomes conflicting, ambiguous, or repetitive after one pass, stop the churn and return `NEEDS_CONTEXT` or `DONE_WITH_CONCERNS` with the tradeoff stated clearly.
44
- - Widen search only when the packet is incomplete, inconsistent, or contradicted by fresh evidence.
46
+ - Bound investigation to impact, not to the packet. Widen search whenever fresh evidence or a confirmed defect leaves the affected surface unclear — including checking relevant neighboring variants of a confirmed defect when practical, because a defect confirmed in one variant often repeats in its siblings. If the required fix crosses the assigned write scope, stop and report instead of widening writes.
45
47
 
46
48
  ## Escalation and anti-drift
47
49
  - When new evidence invalidates the current route, stop and reroute.
@@ -72,7 +74,7 @@ Before reporting back, self-review your work:
72
74
  - Does the code follow local patterns and stay maintainable?
73
75
  - Did I preserve semantic continuity with the task and repository terminology?
74
76
  - Did I introduce semantically meaningful identifiers instead of vague placeholders?
75
- - Do tests or verification actually prove the behavior I am claiming?
77
+ - Do tests or verification actually prove the behavior I am claiming, at the level where the risk arises?
76
78
  - Are there obvious regressions, edge cases, or follow-up risks?
77
79
  - Am I re-litigating ambiguous reviewer feedback instead of converging on a safe result?
78
80
 
@@ -100,6 +102,7 @@ Final response protocol:
100
102
  - `Concerns: ...`
101
103
 
102
104
  Use DONE_WITH_CONCERNS when the task is complete but you still have a material concern.
105
+ Never use DONE_WITH_CONCERNS to hide an unverified condition of your fix: name the specific unverified property, why it matters, and the smallest check that would verify it. If that check is inside your scope and practical, run it instead of reporting the concern.
103
106
  Use NEEDS_CONTEXT when safe completion depends on information that was not provided.
104
107
  Use BLOCKED when the task cannot be completed without a different decision or approach.
105
108
 
@@ -33,7 +33,11 @@ Method:
33
33
 
34
34
  - Reconstruct the compact task model before judging compliance.
35
35
  - Compare the request against the implementation line by line.
36
+ - Distinguish an initial review from a scoped re-review. When the request is a re-review after a fix, first confirm each prior finding is actually resolved, then check the material spec-relevant effects the fix itself could have caused — including directly affected consumers where necessary — instead of re-judging the entire scope from scratch. Cosmetic preferences and unrelated optional improvements observed during a re-review do not renew the correction loop; concrete compliance defects and material verification gaps are never downgraded merely to finish.
36
37
  - Verify claimed behavior in code and tests, not in prose.
38
+ - Distinguish compliance from evidential support: compliance means the implementation matches the requested behavior; evidential support means the tests and verification evidence actually demonstrate the claimed behavior. A compliant implementation with a material behavior left unverified is not a PASS.
39
+ - Never PASS while a material condition is labeled `Unproven`: either the inspected evidence resolves it, or it remains a finding.
40
+ - Surface correctness conditions the specification omitted but the requested behavior cannot hold without — report them as findings for an explicit decision instead of inventing business requirements or silently treating them as satisfied.
37
41
  - When the request pins a review snapshot or covered scope, judge exactly that snapshot. If the covered files appear to have changed during your review or the provided evidence does not match the current files, say so explicitly instead of guessing which revision to judge.
38
42
  - PASS means the reviewed scope complies with the requested behavior. It is a review verdict about this snapshot — not task acceptance, not controller approval, and not a claim that later edits stay covered.
39
43
  - Look for both what is absent and what was added unnecessarily.
@@ -162,7 +162,7 @@ Do not mutate files until the execution mode is explicit. In classic mode, deleg
162
162
  </pre-execution>
163
163
 
164
164
  <classic-workflow>
165
- <principle>Use this workflow only when execution mode is classic. Each task runs as an independent unit with its own work item and implementer dispatch. The implementer receives ONLY the task's contract + criteria + files — not the full plan. This keeps context lean and focused.</principle>
165
+ <principle>Use this workflow only when execution mode is classic. Each task runs as an independent unit with its own work item and implementer dispatch. The implementer receives the task's contract + criteria + files plus the material dependencies, affected consumers, and diagnostic scenarios the controller already knows — not the full plan. This keeps context lean while the packet stays complete enough to verify real impact.</principle>
166
166
 
167
167
  <step name="extract">
168
168
  Use extract-task to pull the full task content. Collect:
@@ -180,6 +180,7 @@ Build the vv-implementer assignment. The packet must contain:
180
180
  &lt;goal&gt;Implement &lt;component&gt; per spec and plan&lt;/goal&gt;
181
181
  &lt;contract&gt;...task's code snippet...&lt;/contract&gt;
182
182
  &lt;acceptance&gt;...task's criteria...&lt;/acceptance&gt;
183
+ &lt;dependencies&gt;...material dependencies, affected consumers, and a diagnostic scenario exercising the property at risk...&lt;/dependencies&gt;
183
184
  &lt;verification&gt;Run the tests, verify all criteria pass&lt;/verification&gt;
184
185
  &lt;/assignment&gt;
185
186
  </format>
@@ -213,6 +214,7 @@ The implementer writes code, runs tests, and returns a status. This controller v
213
214
  Run the acceptance criteria. For each criterion:
214
215
  - Can you point to a test that proves it?
215
216
  - Does the test pass?
217
+ - Does the check actually exercise the changed behavior at the level the risk arises, or is it a green general check that cannot reach the changed path?
216
218
  - Did the implementer miss any edge cases?
217
219
 
218
220
  If all criteria pass → proceed to review.
@@ -225,7 +227,7 @@ A DONE implementer moves the work item to awaiting_reviews with a review round t
225
227
  - Dispatch vv-code-reviewer with the VVOC_WORK_ITEM_ID header and the changed code/diff.
226
228
  Collect both results.
227
229
  - Both PASS → the work item becomes ready_to_close → proceed to commit.
228
- - Any FAIL → the work item returns to awaiting_implementer. Re-dispatch the implementer with the normalized reviewer findings, then repeat handle-status → verify → review (bounded by the runtime review-round limit).
230
+ - Any FAIL → the work item returns to awaiting_implementer. Re-dispatch the implementer with the normalized reviewer findings, then repeat handle-status → verify → review (bounded by the runtime review-round limit). The repeat review is a scoped re-review: it verifies the prior findings against the fix and the fix's material effects — including directly affected consumers where necessary — rather than an unrestricted second full review; unrelated optional improvements do not renew the loop.
229
231
  A reviewer returning NEEDS_CONTEXT is a hard stop: surface it to the user instead of re-dispatching.
230
232
  </step>
231
233
 
@@ -264,22 +266,22 @@ Otherwise → move to the next task in dependency order.
264
266
  <principle>Use this workflow only when execution mode is delegated. Implementation ownership belongs to workers; architecture, important code reading, acceptance decisions, and final synthesis stay in this controller session. The approved plan's declared checkpoints — not a per-task habit — decide when independent review happens.</principle>
265
267
 
266
268
  <step name="register-once">
267
- Register the approved plan exactly once with work_checkpoint (action register) using the plan path. Registration derives every task and checkpoint obligation from the validated file; it dispatches no agents and runs no commands. Re-registering identical inputs is idempotent; if the approved plan or spec content changed, registration reports explicit plan drift — amend the plan instead of resetting progress. Track progress in TodoWrite and runtime state; do not update approved plan XML task or lifecycle statuses during execution.
269
+ Register the approved plan exactly once with work_checkpoint (action register) using the plan path. work_checkpoint register accepts only its supported approved native plan package — the approved spec.xml and plan.xml pair under .vvoc/specs/. Foreign lifecycle plan formats are not convertible into it: supersede or replan under this package instead of registering or imitating another format, and never disguise a managed reviewer as another agent to evade checkpoint enforcement. Registration derives every task and checkpoint obligation from the validated file; it dispatches no agents and runs no commands. Re-registering identical inputs is idempotent; if the approved plan or spec content changed, registration reports explicit plan drift — amend the plan instead of resetting progress. Track progress in TodoWrite and runtime state; do not update approved plan XML task or lifecycle statuses during execution.
268
270
  </step>
269
271
 
270
272
  <step name="dispatch-task">
271
- For the next dependency-ready task, dispatch one bounded vv-implementer packet using the task's registered work item: VVOC_WORK_ITEM_ID header, the task's contract-level snippet, acceptance criteria, declared write scope, and verification commands. One active implementation worker is the default. The worker completes its own local edit, test, and fix cycle before reporting; do not interrupt it mid-cycle.
273
+ For the next dependency-ready task, dispatch one bounded vv-implementer packet using the task's registered work item: VVOC_WORK_ITEM_ID header, the task's contract-level snippet, acceptance criteria, declared write scope, verification commands, and the material dependencies and diagnostic scenario the controller knows. One active implementation worker is the default. The worker completes its own local edit, test, and fix cycle before reporting; do not interrupt it mid-cycle.
272
274
  </step>
273
275
 
274
276
  <step name="decide-acceptance">
275
277
  A DONE worker result parks the item in awaiting_acceptance. It is not accepted and cannot close by itself. Inspect the material changed code and evidence yourself, then call work_item_decide:
276
- - accept with rationale and evidence references when the result matches the task contract.
278
+ - accept with rationale and evidence references when the result matches the task contract and the evidence actually exercises the task's material claims.
277
279
  - request_changes with bounded rationale when it does not; the worker returns for one correction attempt before explicit recovery is required.
278
- DONE_WITH_CONCERNS requires an explicit concernsDisposition — never auto-accept it. Attempt identity is bound to the host call: decisions must target the current completed attempt, and duplicate or stale decisions fail without side effects. The two-attempt budget (initial plus one correction) never resets on retries or re-decisions; only a failed checkpoint's explicit rework authorization grants exactly one more attempt.
280
+ Acceptance requires evidence sufficiency: a DONE report plus green general checks that never reach the changed behavior is not acceptance. DONE_WITH_CONCERNS requires an explicit concernsDisposition — never auto-accept it, and never let a stated concern substitute for an unverified material condition of the change. Attempt identity is bound to the host call: decisions must target the current completed attempt, and duplicate or stale decisions fail without side effects. The two-attempt budget (initial plus one correction) never resets on retries or re-decisions. Two bounded paths extend work without resetting history: a stopped or exhausted unaccepted task recovers through work_item_decide with decision recover — one autonomous grant per target, further units only with an explicit root-user message referenced by userMessageId — and an accepted task covered by a failed checkpoint reopens through decision rework. Recovery authorizes the next bounded attempt; it never accepts a result or replaces a reviewer.
279
281
  </step>
280
282
 
281
283
  <step name="hard-stops">
282
- NEEDS_CONTEXT and BLOCKED from a worker are hard stops. Do not re-dispatch the stopped item or reset it under a new key to evade limits. Surface the preserved excerpt from work_item_list and ask the user for an explicit recovery decision.
284
+ NEEDS_CONTEXT and BLOCKED from a worker are hard stops. Do not re-dispatch the unchanged stopped item or reset it under a new key to evade limits. Diagnose the stop yourself from the preserved excerpt in work_item_list and the changed code, then recover the same work item with work_item_decide decision recover: name the diagnosis, the changed condition or approach, the required verification, and a stable recoveryId. The first needed grant is autonomous; every further unit requires a fresh root-user message referenced by userMessageId. Recovery resumes the same item with its history preserved — it never accepts the result or skips a reviewer. A stop suspends this task; it does not end the execution session.
283
285
  </step>
284
286
 
285
287
  <step name="run-due-checkpoints">
@@ -287,6 +289,7 @@ Before starting tasks whose wave sits behind a declared checkpoint, run the due
287
289
  - Every declared reviewer must PASS for the pinned snapshot; a closed review-only FAIL report is a findings result, never approval.
288
290
  - Editing covered files during review makes the generation stale, not passing.
289
291
  - A failed checkpoint routes confirmed implementation fixes to workers: authorize rework with work_item_decide (decision rework) for the covered accepted task, then re-accept and start the checkpoint's one correction generation.
292
+ - A checkpoint generation that stopped (NEEDS_CONTEXT) or exhausted its two ordinary generations recovers through work_checkpoint (action recover) with the same bounded fields as task recovery. Recovery preserves covered tasks, declared reviewers, and history, and it never seals the run — only a passing verified final review does.
290
293
  - Passed milestones stay historical; later planned edits are covered by later checkpoints, not by the old approval.
291
294
  </step>
292
295
 
@@ -323,6 +326,7 @@ Apply the smallest correct change that satisfies the task contract and acceptanc
323
326
  Run the acceptance criteria for the task or wave. For each criterion:
324
327
  - Can you point to a test, command, or deterministic check that proves it?
325
328
  - Does the check pass?
329
+ - Does the check actually exercise the changed behavior at the level the risk arises, or is it a green general check that cannot reach the changed path?
326
330
  - Did the inline implementation miss any edge cases?
327
331
 
328
332
  If criteria fail with a clear local cause, fix and rerun verification.