paqad-ai 1.43.0 → 1.44.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,15 @@
1
1
  # paqad-ai
2
2
 
3
+ ## 1.44.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 92c5d52: Decision Pause: default `decisions_ask_threshold` to `strict` (humans decide; the machine does not auto-resolve mid-confidence packets).
8
+
9
+ Previously the default was `balanced` (0.85), which let the resolver auto-resolve any decision packet whose recommendation cleared 0.85 confidence. The default is now `strict` (0.95): packets in the 0.85–0.94 confidence band surface to a human instead of resolving silently. Projects that never set the key resolve to `strict`, and fresh `paqad-ai onboard` writes `ask_threshold: strict`.
10
+
11
+ This is a behaviour change on update. Teams that prefer auto-resolution can opt back in by setting `decisions_ask_threshold=balanced` (or `permissive`) in `.paqad/configs/.config.policy` / local `.config`, or via the `PAQAD_DECISIONS_ASK_THRESHOLD` env var. Applies uniformly across all providers (core/config, not entry-file behaviour).
12
+
3
13
  ## 1.43.0
4
14
 
5
15
  ### Minor Changes
package/dist/cli/index.js CHANGED
@@ -1431,7 +1431,7 @@ var init_framework_config = __esm({
1431
1431
  env: "PAQAD_DECISIONS_ASK_THRESHOLD",
1432
1432
  type: "enum",
1433
1433
  enumValues: ASK_THRESHOLDS,
1434
- default: "balanced",
1434
+ default: "strict",
1435
1435
  group: "policy",
1436
1436
  section: "Decisions (pause-contract tuning)",
1437
1437
  comment: "strict | balanced | permissive \u2014 how eagerly to pause and ask."
@@ -24070,7 +24070,7 @@ function buildProjectProfile(selections, snapshot, overrides, projectRoot) {
24070
24070
  verification_plugins: [],
24071
24071
  escalation_rules: [],
24072
24072
  decisions: {
24073
- ask_threshold: "balanced",
24073
+ ask_threshold: "strict",
24074
24074
  max_screens_per_task: 3,
24075
24075
  idle_timeout_minutes: 30
24076
24076
  }
@@ -26122,7 +26122,7 @@ init_cancelled_error();
26122
26122
  init_events();
26123
26123
 
26124
26124
  // src/index.ts
26125
- var VERSION = "1.43.0";
26125
+ var VERSION = "1.44.0";
26126
26126
 
26127
26127
  // src/cli/commands/audit.ts
26128
26128
  init_esm_shims();