@curdx/flow 7.1.9 → 7.1.11

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 +26 -0
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -2,6 +2,32 @@
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.11 — 2026-05-10
6
+
7
+ ### Changed
8
+
9
+ - **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.
10
+ - **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`.
11
+ - **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.
12
+
13
+ ### Added
14
+
15
+ - **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.
16
+
17
+ ## 7.1.10 — 2026-05-10
18
+
19
+ ### Changed
20
+
21
+ - **Skills-first plugin posture.** curdx-flow now documents a clear skills-first, commands-compatible architecture: reusable workflow logic belongs in `skills/`, while `commands/` stays as the stable public `/curdx-flow:*` compatibility surface.
22
+ - **Skill invocation metadata tightened.** Core skills now use concise `description` values plus `when_to_use` trigger detail, matching Claude Code's current skill listing behavior and reducing trigger noise.
23
+ - **Deprecated verification alias hidden from model invocation.** `reality-verification` now explicitly sets `disable-model-invocation: true`; `verification-before-completion` remains the canonical skill.
24
+ - **Help output clarifies the split between skills and commands.** `/curdx-flow:help` now explains that skills carry canonical reusable guidance and commands remain stable user entry points.
25
+
26
+ ### Added
27
+
28
+ - **`skills/spec-workflow/references/commands-vs-skills.md`.** New policy reference explaining why curdx-flow should not delete commands yet, when a command should become a thin wrapper, and how to avoid accidental same-name skill precedence changes.
29
+ - **Runner tests for skills-first regressions.** Manifest integrity checks now enforce concise skill descriptions, deprecated alias hiding, no accidental skill/command name shadowing, and presence of the commands-vs-skills policy.
30
+
5
31
  ## 7.1.9 — 2026-05-10
6
32
 
7
33
  ### Changed
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@curdx/flow",
3
- "version": "7.1.9",
3
+ "version": "7.1.11",
4
4
  "description": "Interactive installer for Claude Code plugins and MCP servers",
5
5
  "type": "module",
6
6
  "bin": "./dist/index.mjs",