@curdx/flow 7.1.14 → 7.1.16
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 +21 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,27 @@
|
|
|
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.16 — 2026-05-11
|
|
6
|
+
|
|
7
|
+
### Fixed
|
|
8
|
+
|
|
9
|
+
- **Installed plugin load failure on Claude Code 2.1.138.** Removed the duplicate `hooks` path from `plugin.json`; Claude Code auto-discovers the standard `hooks/hooks.json` file, and redeclaring the same path caused `curdx-flow@7.1.15` to fail with `Duplicate hooks file detected` after `claudecc plugin update`.
|
|
10
|
+
- **Manifest drift guard for hook discovery.** Runner tests now require `hooks/hooks.json` to exist while forbidding `plugin.json` from redeclaring that standard hook file.
|
|
11
|
+
|
|
12
|
+
## 7.1.15 — 2026-05-11
|
|
13
|
+
|
|
14
|
+
### Added
|
|
15
|
+
|
|
16
|
+
- **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.
|
|
17
|
+
- **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.
|
|
18
|
+
- **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.
|
|
19
|
+
|
|
20
|
+
### Changed
|
|
21
|
+
|
|
22
|
+
- **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.
|
|
23
|
+
- **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.
|
|
24
|
+
- **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.
|
|
25
|
+
|
|
5
26
|
## 7.1.14 — 2026-05-10
|
|
6
27
|
|
|
7
28
|
### Fixed
|