paqad-ai 1.65.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 CHANGED
@@ -1,5 +1,36 @@
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
+
23
+ ## 1.66.0
24
+
25
+ ### Minor Changes
26
+
27
+ - 87c8153: Wire the idle planning skills into the enforced stage contract (#359): four fully-built-but-never-invoked planning helpers now run when relevant, and only when relevant.
28
+
29
+ - The enforced feature-development **planning stage** gains three lane-gated instruction blocks, sourced from one shared set of constants so the default policy object and the rendered `feature-development.yaml` cannot drift: an all-lanes reuse reflex (consult the Existing surface + `index query`, follow the solution-architect Reuse / Extend / Build-new procedure), a graduated/full block that runs `diff-minimizer` before the plan compiles and `existing-doc-checker` before any new doc, and a graduated/full multi-module block that runs `cross-module-impact-scanner`.
30
+ - **Lane honesty:** a fast-lane change pays exactly one sentence; no skill procedure loads for it. A new `reusePlanningInstructions(lane, { multiModule })` assembler is the single source of that lane-gating logic.
31
+ - The #357 plan schema now accepts an optional per-step `classification` (`ac-satisfying` | `necessary-setup` | `scaffolding` | `over-build`) so a diff-minimizer verdict can ride in the compiled `plan.json`; a plan without it stays valid.
32
+ - No new hook and no new runtime gate — the skills feed fields the schema already checks, and the wired-vs-sidelined map in the onboarded-project overview is updated to keep it honest.
33
+
3
34
  ## 1.65.0
4
35
 
5
36
  ### Minor Changes