@curdx/flow 7.1.15 → 7.1.17
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 +2 -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.17 — 2026-05-11
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
|
|
9
|
+
- **Behavior-first smart routing for `/curdx-flow:start`.** New `hooks/scripts/lib/smart-route.mjs` classifies work into action routes (`direct-change`, `lite-spec`, `full-spec`, `epic-split`, `resume-current`, `blocked-ask-user`) so skills can choose the next action without exposing human size labels to the model.
|
|
10
|
+
- **Claude Code smoke gate.** Added `npm run test:claudecc`, which validates the plugin with the user's `claudecc` command, runs help/status in an isolated temp directory, and checks `smart-route` output without polluting the repository.
|
|
11
|
+
- **Route and skill quality regression tests.** New tests lock direct/lite/full/epic/resume/block routing behavior and prevent public skills from reintroducing mechanical checklist wording or human-size label traps.
|
|
12
|
+
|
|
13
|
+
### Changed
|
|
14
|
+
|
|
15
|
+
- **High-frequency skills are shorter and action-oriented.** `/curdx-flow:start`, `/curdx-flow:help`, and `/curdx-flow:status` now focus on route, next action, and recovery instead of loading long manuals into the session.
|
|
16
|
+
- **Task planning now speaks value slices.** `task-planner` was compressed from a large rulebook into a focused contract: top-level tasks must be autonomous value slices with automated verification, and oversized work routes to triage instead of inflating one spec.
|
|
17
|
+
- **Sizing references no longer ask the AI to reason in abstract shirt sizes.** Planning docs now use route names and concrete task-count limits; legacy `autoPolicy.size` remains only as a compatibility field for existing state and hook behavior.
|
|
18
|
+
|
|
19
|
+
## 7.1.16 — 2026-05-11
|
|
20
|
+
|
|
21
|
+
### Fixed
|
|
22
|
+
|
|
23
|
+
- **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`.
|
|
24
|
+
- **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.
|
|
25
|
+
|
|
5
26
|
## 7.1.15 — 2026-05-11
|
|
6
27
|
|
|
7
28
|
### Added
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@curdx/flow",
|
|
3
|
-
"version": "7.1.
|
|
3
|
+
"version": "7.1.17",
|
|
4
4
|
"description": "Interactive installer for Claude Code plugins and MCP servers",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": "./dist/index.mjs",
|
|
@@ -20,6 +20,7 @@
|
|
|
20
20
|
"test:hooks": "npm run build:hooks && vitest run tests/hooks --passWithNoTests",
|
|
21
21
|
"test:analyze": "vitest run tests/analyze",
|
|
22
22
|
"test:runner": "vitest run tests/runner",
|
|
23
|
+
"test:claudecc": "npm run build:hooks && node scripts/claudecc-smoke.mjs",
|
|
23
24
|
"start": "node ./dist/index.mjs",
|
|
24
25
|
"typecheck": "tsc --noEmit",
|
|
25
26
|
"verify": "npm run typecheck && npm run check-versions && npm run check:hooks-fresh && npm run build && npm run check:bundle && npm run test:hooks && npm run test:analyze && npm run test:runner && node scripts/check-verification-blocks.mjs",
|