paqad-ai 1.64.0 → 1.66.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,28 @@
1
1
  # paqad-ai
2
2
 
3
+ ## 1.66.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 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.
8
+
9
+ - 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`.
10
+ - **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.
11
+ - 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.
12
+ - 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.
13
+
14
+ ## 1.65.0
15
+
16
+ ### Minor Changes
17
+
18
+ - 2d1bdbe: Add the duplication gate (#358): a deterministic, new-code-only detector that flags when a change introduces code near-copying something the project already has, before the change is called done — and stays quiet on legacy duplication it did not cause.
19
+
20
+ - Zero model tokens: pure token-shingle computation over the existing chunk index, with a fallback that works even when no embedding index is present.
21
+ - Binds at the verification backstop (a `duplication` gate whose verdict lands in the end-of-change receipt) and ships a `paqad-ai duplication scan [--json]` CLI verb.
22
+ - New knobs `duplication_mode` (off | warn | strict, default warn for a two-cycle bake-in), `duplication_similarity_threshold` (default 0.90), and `duplication_min_lines` (default 8).
23
+ - A blocking finding can be accepted through the existing create-vs-reuse Decision Pause; the resolved packet unblocks it and is noted in the report.
24
+ - Consolidates three near-identical private cosine implementations into one canonical `cosineSimilarity` helper.
25
+
3
26
  ## 1.64.0
4
27
 
5
28
  ### Minor Changes