@windyroad/retrospective 0.26.1-preview.813 → 0.26.1-preview.814

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@windyroad/retrospective",
3
- "version": "0.26.1-preview.813",
3
+ "version": "0.26.1-preview.814",
4
4
  "description": "Session retrospectives that update briefings and create problem tickets",
5
5
  "bin": {
6
6
  "windyroad-retrospective": "./bin/install.mjs"
@@ -74,13 +74,21 @@ setup() {
74
74
  [ "$status" -eq 0 ]
75
75
  }
76
76
 
77
- @test "run-retro: Step 1.5 delete queue uses single batched AskUserQuestion (ADR-013 Rule 1)" {
78
- run grep -F 'Delete briefing entries?' "$SKILL_MD"
77
+ @test "run-retro: Step 1.5 delete queue is silent no AskUserQuestion (ADR-044 / P132; reconciled by P393)" {
78
+ # Step 1.5 deletes are SILENT (framework-mediated per ADR-044 "Briefing add/remove/rotate"
79
+ # + the CLAUDE.md P132 worked-example "run-retro Step 1.5 silent classification, Step 3
80
+ # briefing removals"). The superseded "single batched AskUserQuestion to confirm deletes"
81
+ # prose was a self-contradiction against Step 3's "Removals are silent" clause; reconciled
82
+ # to silent-delete by P393. This asserts the reconciled contract.
83
+ run grep -F 'Silent removal' "$SKILL_MD"
79
84
  [ "$status" -eq 0 ]
80
- run grep -F 'Confirm all deletions' "$SKILL_MD"
85
+ run grep -F 'Delete handling — silent' "$SKILL_MD"
81
86
  [ "$status" -eq 0 ]
82
- run grep -F 'Keep all (defer to next retro)' "$SKILL_MD"
87
+ run grep -F 'do NOT reintroduce it' "$SKILL_MD"
83
88
  [ "$status" -eq 0 ]
89
+ # negative: the superseded delete-confirmation prompt must NOT return
90
+ run grep -F 'Delete briefing entries?' "$SKILL_MD"
91
+ [ "$status" -ne 0 ]
84
92
  }
85
93
 
86
94
  @test "run-retro: Step 1.5 AFK fallback defers delete queue to retro summary (ADR-013 Rule 6)" {