@tudeorangbiasa/sdd-multiagent-opencode 0.2.1 → 0.2.3

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.
@@ -28,6 +28,13 @@ Implement an existing change from `specs/active/<change-id>/`.
28
28
  - Verify with the commands listed in `design.md` when available.
29
29
  - Stop on blockers. Do not silently skip tasks.
30
30
 
31
+ ## Test Integrity
32
+
33
+ - **Source of Truth**: The "Test Spec" table in `tasks.md` defines the exact test cases. You must implement every row in that table.
34
+ - **No Weakening**: You are FORBIDDEN from modifying test assertions (e.g., changing `toBe(401)` to `toBeTruthy()`, or removing edge cases) to make a test pass.
35
+ - **Fix Implementation, Not Test**: If a test fails, fix the source code (`src/...`), NOT the test code (`*.test.ts`).
36
+ - **Report Mismatches**: If you believe the Test Spec in `tasks.md` is incorrect, STOP and report it as a blocker. Do not silently change the test to fit your implementation.
37
+
31
38
  ## Context Safety
32
39
 
33
40
  - Treat `tasks.md` and `progress.md` as the source of truth, not chat history.