paqad-ai 1.63.3 → 1.64.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 +29 -0
- package/dist/cli/index.js +1961 -1642
- package/dist/cli/index.js.map +1 -1
- package/dist/feature-evidence/adoption.js.map +1 -1
- package/dist/index.d.ts +19 -1
- package/dist/index.js +486 -265
- package/dist/index.js.map +1 -1
- package/dist/kernel/gate.js +105 -86
- 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 +1 -0
- package/dist/stage-evidence/marker-parse.js.map +1 -1
- package/dist/stage-evidence/narration.js.map +1 -1
- package/package.json +2 -2
- package/runtime/AGENT-BOOTSTRAP.md +17 -3
- package/runtime/capabilities/coding/rules/feature-development.md +33 -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,34 @@
|
|
|
1
1
|
# paqad-ai
|
|
2
2
|
|
|
3
|
+
## 1.64.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- f99e23e: Plans must now declare reuse (issue #357). `paqad-ai plan compile` requires a `reuse` section recording what existing code was consulted, what the plan will reuse, and why anything new is justified — so a plan can no longer quietly rebuild something the project already has.
|
|
8
|
+
|
|
9
|
+
The enforcement is deterministic schema validation inside the existing compile verb, costing zero model tokens. First-party reuse claims are cross-checked against the code-knowledge index (an unknown symbol fails with a nearest-match suggestion), and framework-native claims are cross-checked against the resolved stack snapshot. Every check degrades gracefully: a missing index or stack snapshot downgrades the check to a warning rather than blocking, and a project with no detected framework carries no new burden.
|
|
10
|
+
|
|
11
|
+
The end-of-change receipt's planning line and the per-feature HTML report now surface the declared reuse counts. Existing `plan.json` files stay valid and readable — the section is required on the compile-input side and optional in the stored schema.
|
|
12
|
+
|
|
13
|
+
## 1.63.4
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- f2128be: Make feature-development stage narration visible on Claude Code Desktop (#409).
|
|
18
|
+
|
|
19
|
+
The stage hooks narrate on Claude's `{systemMessage}` channel, which the Desktop app
|
|
20
|
+
records as a hook attachment and never renders in the chat. A verified six-stage run
|
|
21
|
+
emitted eleven `▸ paqad` stage lines and the developer saw none of them, while the
|
|
22
|
+
evidence bundle was complete — recorded but unnarrated, the inverse of #389.
|
|
23
|
+
|
|
24
|
+
The narration contract now tells the Claude Code agent to speak its own stage lines and
|
|
25
|
+
the one end-of-change receipt in visible assistant text, placed in the turn's final
|
|
26
|
+
message, and carries a per-surface table of which channels actually render instead of
|
|
27
|
+
the previous single wrong assumption. A new deterministic backstop reads the turn
|
|
28
|
+
transcript and reports any stage recorded this turn with no matching visible narration,
|
|
29
|
+
advising the model to relay the receipt. The check is advisory: it never turns a passing
|
|
30
|
+
verdict into a failing one and never blocks a turn.
|
|
31
|
+
|
|
3
32
|
## 1.63.3
|
|
4
33
|
|
|
5
34
|
### Patch Changes
|