paqad-ai 1.63.2 → 1.63.4
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 +41 -0
- package/dist/cli/index.js +420 -350
- package/dist/cli/index.js.map +1 -1
- package/dist/index.d.ts +32 -0
- package/dist/index.js +207 -72
- package/dist/index.js.map +1 -1
- package/dist/kernel/gate.js +33 -7
- package/dist/kernel/gate.js.map +1 -1
- package/dist/rule-scripts/index.js.map +1 -1
- package/dist/stage-evidence/live-writer.js.map +1 -1
- package/dist/stage-evidence/marker-parse.d.ts +11 -1
- package/dist/stage-evidence/marker-parse.js +13 -6
- package/dist/stage-evidence/marker-parse.js.map +1 -1
- package/dist/stage-evidence/narration.js.map +1 -1
- package/package.json +5 -5
- package/runtime/AGENT-BOOTSTRAP.md +14 -3
- package/runtime/base/agents/requirement-analyst.md +2 -0
- package/runtime/hooks/lib/transcript.mjs +33 -0
- package/runtime/hooks/stage-marker-parse.mjs +3 -11
- package/runtime/hooks/verification-completion.mjs +5 -0
- package/runtime/scripts/verify-backstop.mjs +23 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,46 @@
|
|
|
1
1
|
# paqad-ai
|
|
2
2
|
|
|
3
|
+
## 1.63.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- f2128be: Make feature-development stage narration visible on Claude Code Desktop (#409).
|
|
8
|
+
|
|
9
|
+
The stage hooks narrate on Claude's `{systemMessage}` channel, which the Desktop app
|
|
10
|
+
records as a hook attachment and never renders in the chat. A verified six-stage run
|
|
11
|
+
emitted eleven `▸ paqad` stage lines and the developer saw none of them, while the
|
|
12
|
+
evidence bundle was complete — recorded but unnarrated, the inverse of #389.
|
|
13
|
+
|
|
14
|
+
The narration contract now tells the Claude Code agent to speak its own stage lines and
|
|
15
|
+
the one end-of-change receipt in visible assistant text, placed in the turn's final
|
|
16
|
+
message, and carries a per-surface table of which channels actually render instead of
|
|
17
|
+
the previous single wrong assumption. A new deterministic backstop reads the turn
|
|
18
|
+
transcript and reports any stage recorded this turn with no matching visible narration,
|
|
19
|
+
advising the model to relay the receipt. The check is advisory: it never turns a passing
|
|
20
|
+
verdict into a failing one and never blocks a turn.
|
|
21
|
+
|
|
22
|
+
## 1.63.3
|
|
23
|
+
|
|
24
|
+
### Patch Changes
|
|
25
|
+
|
|
26
|
+
- eb1fa9a: fix(#401): spec freeze now runs the spec-quality review it always claimed to require
|
|
27
|
+
|
|
28
|
+
`paqad-ai spec freeze` told you, in both the rule pack and the workflow contract, that
|
|
29
|
+
freezing enforces "no critical spec-review defects". It never did: the CLI evaluated the
|
|
30
|
+
freeze with no review attached, so that clause was enforced nowhere. Agents closed the gap by
|
|
31
|
+
hand-running `compliance review`, which left a stray `.paqad/compliance/<slug>/spec-review.json`
|
|
32
|
+
behind that was neither part of the change's evidence bundle nor git-ignored.
|
|
33
|
+
|
|
34
|
+
Freeze now runs the review itself and blocks on a critical defect like any other blocker, so
|
|
35
|
+
there is no second command to run and no stray artifact. On a clean freeze the defect summary
|
|
36
|
+
is folded into the bundle's `specification.json`, so the review evidence travels with the spec
|
|
37
|
+
of record. Non-critical findings never block.
|
|
38
|
+
|
|
39
|
+
Two related fixes: `spec freeze` and `compliance review` now reject a spec file that resolves
|
|
40
|
+
outside the project root and record `spec_file` as a project-relative posix path, and the
|
|
41
|
+
managed `.paqad/.gitignore` covers `compliance/` so a compliance artifact can never surface as
|
|
42
|
+
an untracked, committable file.
|
|
43
|
+
|
|
3
44
|
## 1.63.2
|
|
4
45
|
|
|
5
46
|
### Patch Changes
|