@curdx/flow 7.1.10 → 7.1.12
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 +23 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,29 @@
|
|
|
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.12 — 2026-05-10
|
|
6
|
+
|
|
7
|
+
### Fixed
|
|
8
|
+
|
|
9
|
+
- **Help output now lists the full skills-only slash surface.** `/curdx-flow:help` now includes all 15 public entrypoint skills, including `triage`, `refactor`, and `index`, so Claude Code and users see the same command surface after the commands-to-skills migration.
|
|
10
|
+
- **Epic triage next-step prompts use namespaced slash skills.** Remaining bare `/start` and `/triage` examples were updated to `/curdx-flow:start` and `/curdx-flow:triage`.
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- **Runner guard for help/entrypoint drift.** Manifest integrity tests now assert `/curdx-flow:help` lists every public entrypoint skill and public entrypoint docs do not reintroduce un-namespaced legacy slash command suggestions.
|
|
15
|
+
|
|
16
|
+
## 7.1.11 — 2026-05-10
|
|
17
|
+
|
|
18
|
+
### Changed
|
|
19
|
+
|
|
20
|
+
- **Plugin surface migrated to skills-only.** The legacy `plugins/curdx-flow/commands/` directory has been removed. All former `/curdx-flow:*` entries now live as same-name user-invocable skills under `plugins/curdx-flow/skills/<name>/SKILL.md`, preserving public invocation names while using the current Claude Code skill layout.
|
|
21
|
+
- **Entrypoint skills are explicit task skills.** Migrated workflow entrypoints set `disable-model-invocation: true` so phase-changing actions are invoked deliberately; model-invoked guidance remains in support skills such as `spec-workflow`, `curdx-core`, and `interview-framework`.
|
|
22
|
+
- **Skills-only architecture docs.** `spec-workflow`, `curdx-core`, `help`, and `spec-workflow/references/entrypoints.md` now describe the skills-only entrypoint policy, global reference usage, and stable `/curdx-flow:*` slash-skill surface.
|
|
23
|
+
|
|
24
|
+
### Added
|
|
25
|
+
|
|
26
|
+
- **Runner guard for skills-only migration.** Manifest integrity tests now assert there is no `commands/` directory, `plugin.json` does not declare `commands`, all 15 former slash commands exist as skills, and migrated entrypoint skills are explicit user-invoked tasks.
|
|
27
|
+
|
|
5
28
|
## 7.1.10 — 2026-05-10
|
|
6
29
|
|
|
7
30
|
### Changed
|