paqad-ai 1.66.0 → 1.67.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.
- package/CHANGELOG.md +20 -0
- package/dist/cli/index.js +2194 -1872
- package/dist/cli/index.js.map +1 -1
- package/dist/feature-evidence/adoption.js +4 -0
- package/dist/feature-evidence/adoption.js.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1114 -888
- package/dist/index.js.map +1 -1
- package/dist/kernel/gate.js +4 -0
- package/dist/kernel/gate.js.map +1 -1
- package/dist/rag-ledger/session.js +4 -0
- package/dist/rag-ledger/session.js.map +1 -1
- package/dist/rule-scripts/index.js +4 -0
- package/dist/rule-scripts/index.js.map +1 -1
- package/dist/session-ledger/disabled-audit.js +4 -0
- package/dist/session-ledger/disabled-audit.js.map +1 -1
- package/dist/session-ledger/project-ledger.js +4 -0
- package/dist/session-ledger/project-ledger.js.map +1 -1
- package/dist/stage-evidence/live-writer.js +4 -0
- package/dist/stage-evidence/live-writer.js.map +1 -1
- package/dist/stage-evidence/marker-parse.js +4 -0
- package/dist/stage-evidence/marker-parse.js.map +1 -1
- package/dist/stage-evidence/narration.js +4 -0
- package/dist/stage-evidence/narration.js.map +1 -1
- package/package.json +1 -1
- package/runtime/capabilities/coding/rules/feature-development.md +2 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# paqad-ai
|
|
2
2
|
|
|
3
|
+
## 1.67.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 7aaebd3: Give the review stage hard facts, and make ignoring them detectable (#360).
|
|
8
|
+
|
|
9
|
+
`paqad-ai review digest` composes `.paqad/session/review-digest.md` from what
|
|
10
|
+
paqad already computed — rule-script findings, duplication findings, the check
|
|
11
|
+
verdict, failing verification gates — alongside the frozen acceptance criteria,
|
|
12
|
+
the per-stage state, and an honest list of the blind spots no machine covers.
|
|
13
|
+
It reads cached JSON only: no subprocess, no scan, no model tokens, hard-capped
|
|
14
|
+
at 150 lines.
|
|
15
|
+
|
|
16
|
+
The review stage contract now tells the model to build and read it before
|
|
17
|
+
writing findings, and `ImplementationReviewGate` fails when a deterministic,
|
|
18
|
+
file-anchored, high-severity finding is never cited by `file:line` in the
|
|
19
|
+
recorded `review.json`. The gate re-derives those rows from the same collector
|
|
20
|
+
the digest uses, so skipping the verb does not disarm the check. A change with
|
|
21
|
+
no machine findings behaves exactly as before.
|
|
22
|
+
|
|
3
23
|
## 1.66.0
|
|
4
24
|
|
|
5
25
|
### Minor Changes
|