paqad-ai 1.68.0 → 1.69.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 +26 -0
- package/dist/cli/index.js +455 -246
- package/dist/cli/index.js.map +1 -1
- package/dist/{feature-development-policy-DgMjAiDM.d.ts → feature-development-policy-BX-lGxtg.d.ts} +2 -0
- package/dist/index.d.ts +2 -2
- package/dist/index.js +255 -78
- package/dist/index.js.map +1 -1
- package/dist/kernel/gate.js +13 -2
- package/dist/kernel/gate.js.map +1 -1
- package/dist/rule-scripts/index.js +11 -1
- package/dist/rule-scripts/index.js.map +1 -1
- package/dist/stage-evidence/live-writer.d.ts +2 -2
- package/dist/stage-evidence/live-writer.js +11 -1
- package/dist/stage-evidence/live-writer.js.map +1 -1
- package/dist/stage-evidence/marker-parse.d.ts +2 -2
- package/dist/stage-evidence/marker-parse.js +11 -1
- package/dist/stage-evidence/marker-parse.js.map +1 -1
- package/dist/stage-evidence/narration.d.ts +2 -2
- package/dist/stage-evidence/narration.js +11 -1
- package/dist/stage-evidence/narration.js.map +1 -1
- package/dist/{stages-D5vNhUPh.d.ts → stages-CVA8e3Wc.d.ts} +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,31 @@
|
|
|
1
1
|
# paqad-ai
|
|
2
2
|
|
|
3
|
+
## 1.69.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 09ef89f: Prove "less, better code" with per-change shape metrics (#362).
|
|
8
|
+
|
|
9
|
+
Two deterministic, diff-scoped, zero-model-token numbers are now computed for
|
|
10
|
+
every feature-development change:
|
|
11
|
+
|
|
12
|
+
- **duplication on new code** (`dup_new_pct`) — the % of the change's meaningful
|
|
13
|
+
new lines that near-duplicate existing code, folded from the #358 duplication
|
|
14
|
+
cache.
|
|
15
|
+
- **reuse rate** (`reuse_rate`) — cross-file calls from the change's new code
|
|
16
|
+
into pre-existing, untouched files per 100 changed lines, from the #353
|
|
17
|
+
code-knowledge index.
|
|
18
|
+
|
|
19
|
+
They fold over caches the completion gates already produced (no second scan) and
|
|
20
|
+
surface everywhere the developer already looks: one honest `change shape` line on
|
|
21
|
+
the end-of-change receipt, a metrics block on the feature bundle receipt, a
|
|
22
|
+
`change-metrics` row on the session ledger (which flows into the SIEM export), a
|
|
23
|
+
new **Change Shape** dashboard trend section with bands (green 0–3%, amber
|
|
24
|
+
3–10%, red >10%), and a new `paqad-ai metrics report` verb that prints the last N
|
|
25
|
+
changes offline. Either metric degrades to `n/a` when its source cache is absent.
|
|
26
|
+
Controlled by the `metrics_enabled` config knob (default on; respects the global
|
|
27
|
+
disable).
|
|
28
|
+
|
|
3
29
|
## 1.68.0
|
|
4
30
|
|
|
5
31
|
### Minor Changes
|