paqad-ai 1.76.2 → 1.76.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.
- package/CHANGELOG.md +12 -0
- package/dist/cli/index.js +1 -1
- package/dist/cli/index.js.map +1 -1
- package/dist/index.d.ts +8 -0
- package/dist/index.js +28 -4
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# paqad-ai
|
|
2
2
|
|
|
3
|
+
## 1.76.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 457fcc0: fix(#472): reconcile the completion receipt so its headline and per-stage block agree
|
|
8
|
+
|
|
9
|
+
The end-of-change receipt (#325) composed two independent subsystems without reconciling them: the verdict headline (`formatVerdictSummary`, driven by `verdict.ok`, computed from gates only) and the per-stage evidence block (the stage-evidence fold). A feature-development change whose gates all passed but whose mandatory `review`/`checks` stages had no evidence rendered a self-contradicting receipt — `Safe to merge / N/N checks held` beside `🟡 review/checks — not recorded`. It happened whenever a mandatory-stage gap did not flip `verdict.ok` (for example `stages_mode=warn`, where the stage-evidence gate is `skipped`).
|
|
10
|
+
|
|
11
|
+
The receipt now reconciles **down** (the contract's own over-trust guard): when a feature-development change's gates all pass but a mandatory stage is not provably done, the developer-facing verdict word becomes **Inconclusive** and names the offending stages, so the headline agrees with the per-stage block. The true `🟢 N/N checks held for you.` line is kept, so gate evidence is still credited.
|
|
12
|
+
|
|
13
|
+
`verdict.ok` stays gate-derived, so git/CI exit codes and warn-mode non-blocking semantics are unchanged — Inconclusive is "do not over-trust", never a hard block. (Defect 2, the #409 narration advisory, was already fixed by #476; this closes Defect 1.)
|
|
14
|
+
|
|
3
15
|
## 1.76.2
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
package/dist/cli/index.js
CHANGED
|
@@ -36251,7 +36251,7 @@ init_cancelled_error();
|
|
|
36251
36251
|
init_events();
|
|
36252
36252
|
|
|
36253
36253
|
// src/index.ts
|
|
36254
|
-
var VERSION = "1.76.
|
|
36254
|
+
var VERSION = "1.76.3";
|
|
36255
36255
|
|
|
36256
36256
|
// src/cli/commands/audit.ts
|
|
36257
36257
|
init_esm_shims();
|