paqad-ai 1.52.0 → 1.53.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 +13 -0
- package/dist/cli/index.js +744 -697
- package/dist/cli/index.js.map +1 -1
- package/dist/index.d.ts +12 -2
- package/dist/index.js +172 -72
- package/dist/index.js.map +1 -1
- package/dist/kernel/gate.js +887 -837
- package/dist/kernel/gate.js.map +1 -1
- package/dist/rule-scripts/index.d.ts +21 -1
- package/dist/rule-scripts/index.js +16 -13
- package/dist/rule-scripts/index.js.map +1 -1
- package/dist/session-ledger/disabled-audit.js +4 -1
- package/dist/session-ledger/disabled-audit.js.map +1 -1
- package/dist/session-ledger/project-ledger.js +4 -1
- package/dist/session-ledger/project-ledger.js.map +1 -1
- package/dist/stage-evidence/live-writer.js +4 -1
- package/dist/stage-evidence/live-writer.js.map +1 -1
- package/dist/stage-evidence/marker-parse.js +4 -1
- package/dist/stage-evidence/marker-parse.js.map +1 -1
- package/dist/stage-evidence/narration.js +4 -1
- package/dist/stage-evidence/narration.js.map +1 -1
- package/package.json +1 -1
- package/runtime/AGENT-BOOTSTRAP.md +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# paqad-ai
|
|
2
2
|
|
|
3
|
+
## 1.53.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 72f4222: Deliver the feature-development contract to the model and finish the per-feature evidence cutover (#345, #343).
|
|
8
|
+
|
|
9
|
+
- **#345 G2/G3** — rule triggers are now scoped to path/glob-shaped inline code (fenced code blocks stripped), so a rule doc without an explicit `<!-- trigger: -->` no longer scoops up prose/code as triggers. This kills the `` `, ` `` manifest corruption and the whole-doc bloat/over-match (a representative repo artifact drops from ~128 KB to ~75 KB with zero manifest-region corruption). The manifest renders triggers as space-separated single backtick spans and strips backticks from the summary teaser; retrieval slices are deduped.
|
|
10
|
+
- **#345 G4** — the rule-scripts checks verdict now says **⚪ none armed** at the completion seam instead of silently passing when no rule-scripts are registered.
|
|
11
|
+
- **#345 G5** — the conservative decision-pause self-arm defaults **on within feature-development** (env/config can still force it either way) and never arms on any other route; a compact "decision pause is active" reminder rides with the feature-development rule slice.
|
|
12
|
+
- **#345 G6** — a single exclusivity test proves every non-feature-development route loads no rules, runs no rule-scripts, and arms no decision pause.
|
|
13
|
+
- **#343 A** — the frozen spec's only home is the feature bundle `specification.json` (the `.paqad/specs/*.frozen.json` sidecar and `frozen-spec-store.ts` are retired); the planning `<slug>.yaml` manifest relocates to `.paqad/planning/manifests`; the dashboard counts specs from the feature bundles; `.paqad/specs` and `.paqad/plans` are removed.
|
|
14
|
+
- **#343 B** — per-feature `receipt.json` + `ai-bom.json` are projected from a feature's own graded rows (reusing the in-toto/DSSE/CycloneDX machinery), and the whole-project AI-BOM can be projected on demand from the union of feature bundles; per-feature writes honour the same enterprise gating as the whole-project receipt.
|
|
15
|
+
|
|
3
16
|
## 1.52.0
|
|
4
17
|
|
|
5
18
|
### Minor Changes
|