@curdx/flow 7.1.16 → 7.1.18

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 +31 -0
  2. package/package.json +2 -1
package/CHANGELOG.md CHANGED
@@ -2,6 +2,37 @@
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.18 — 2026-05-11
6
+
7
+ ### Added
8
+
9
+ - **Dev-context project topology detection.** New `hooks/scripts/lib/project-topology.mjs` reads short `CLAUDE.md` Dev sections, optional `.claude/curdx-flow.local.md` `code_roots`, cheap manifests, and obvious sibling repo names to classify roots such as Vue/React frontends, Spring Boot/Spring Cloud backends, shared libraries, CLIs, infra, and Claude Code plugins.
10
+ - **Topology-aware smart routing.** `/curdx-flow:start` now blocks early when a goal needs a related code root outside current Claude Code access and returns an exact `/add-dir <path>` fix instead of asking users to understand `--add-dir`.
11
+ - **Topology cache guidance for indexing.** `/curdx-flow:index` now generates `specs/.index/project-topology.json` and `specs/.index/context-map.md` before component scanning, and stops with the access fix when related roots are missing.
12
+
13
+ ### Changed
14
+
15
+ - **Settings and start guidance now favor user-friendly Dev context.** The settings template documents the recommended minimal `CLAUDE.md` form (`frontend`, `backend`, `database`) while keeping structured `code_roots` as an optional advanced override.
16
+ - **Sensitive local-service data is omitted from topology output.** Database and credential-looking lines in Dev context produce only a generic warning; real passwords, tokens, and production URLs are not copied into topology JSON or context maps.
17
+
18
+ ### Tests
19
+
20
+ - Added split-repo topology tests for Vue/React frontends, Spring Boot/Spring Cloud backends, missing frontend access, configured `additionalDirectories`, context-map redaction, and the bundled `project-topology` CLI.
21
+
22
+ ## 7.1.17 — 2026-05-11
23
+
24
+ ### Added
25
+
26
+ - **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.
27
+ - **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.
28
+ - **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.
29
+
30
+ ### Changed
31
+
32
+ - **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.
33
+ - **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.
34
+ - **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.
35
+
5
36
  ## 7.1.16 — 2026-05-11
6
37
 
7
38
  ### Fixed
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@curdx/flow",
3
- "version": "7.1.16",
3
+ "version": "7.1.18",
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",