@curdx/flow 7.1.14 → 7.1.15

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +14 -0
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -2,6 +2,20 @@
2
2
 
3
3
  All notable changes to `@curdx/flow` are documented here. Format follows [Keep a Changelog](https://keepachangelog.com/) and the project follows [Semantic Versioning](https://semver.org/).
4
4
 
5
+ ## 7.1.15 — 2026-05-11
6
+
7
+ ### Added
8
+
9
+ - **Deterministic AutoPolicy execution classifier.** New hook utility `hooks/scripts/lib/auto-policy.mjs` classifies each goal into XS/S/M/L/XL size, risk, execution mode, task target range, review cadence, verification level, subagent policy, Stop-hook behavior, and iteration caps before expensive model work starts.
10
+ - **Runtime and schema support for persisted `autoPolicy`.** `.curdx-state.json` now stores the selected policy, schema validation accepts `autoPolicy`, and shared hook types expose the policy contract.
11
+ - **Regression tests for policy behavior and workflow drift.** New hook tests lock classifier decisions and Stop-hook policy behavior; runner tests prevent task sizing docs from drifting back to 40+ task defaults.
12
+
13
+ ### Changed
14
+
15
+ - **Specs now default to automatic strength selection instead of asking users to choose fast/deep or fine/coarse.** `/curdx-flow:start`, `/curdx-flow:new`, `/curdx-flow:tasks`, `/curdx-flow:implement`, help, core references, and task-planner guidance all treat `autoPolicy` as the source of truth while still allowing explicit `--mode`, `--tasks-size`, and `--review` overrides.
16
+ - **Task planning is now bounded around vertical slices.** Top-level tasks keep test/reproduce, implementation, verification, and commit together; normal specs target 3-7 or 5-12 tasks, and oversized requests route to triage instead of inflating one spec.
17
+ - **Stop-hook continuation is shorter when policy allows it.** Medium and larger specs use a compact continuation prompt; XS/S specs can disable automatic Stop-hook continuation entirely to avoid token-heavy loop prompts.
18
+
5
19
  ## 7.1.14 — 2026-05-10
6
20
 
7
21
  ### Fixed
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@curdx/flow",
3
- "version": "7.1.14",
3
+ "version": "7.1.15",
4
4
  "description": "Interactive installer for Claude Code plugins and MCP servers",
5
5
  "type": "module",
6
6
  "bin": "./dist/index.mjs",