@curdx/flow 7.1.8 → 7.1.10
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 +28 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,34 @@
|
|
|
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.10 — 2026-05-10
|
|
6
|
+
|
|
7
|
+
### Changed
|
|
8
|
+
|
|
9
|
+
- **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.
|
|
10
|
+
- **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.
|
|
11
|
+
- **Deprecated verification alias hidden from model invocation.** `reality-verification` now explicitly sets `disable-model-invocation: true`; `verification-before-completion` remains the canonical skill.
|
|
12
|
+
- **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.
|
|
13
|
+
|
|
14
|
+
### Added
|
|
15
|
+
|
|
16
|
+
- **`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.
|
|
17
|
+
- **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.
|
|
18
|
+
|
|
19
|
+
## 7.1.9 — 2026-05-10
|
|
20
|
+
|
|
21
|
+
### Changed
|
|
22
|
+
|
|
23
|
+
- **Claude Code plugin API alignment.** `plugins/curdx-flow/.claude-plugin/plugin.json` now declares repository/homepage metadata and explicit official component paths for `skills`, `commands`, `agents`, and `hooks`. This keeps auto-discovery deterministic while preserving the existing command and skill layout.
|
|
24
|
+
- **Agent Teams are now an optional experimental enhancement, not the default execution contract.** Research, requirements, design, tasks, two-stage review, bounded parallel dispatch, quick mode, and parallel execution coordinator docs now default to ordinary `Task(subagent_type: ...)` dispatch. `TeamCreate` / `TaskCreate` / `TaskList` / `SendMessage` flows are only used when `CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS=1` and the team tools are available; failures fall back to direct Task dispatch without treating the run as degraded.
|
|
25
|
+
- **Plugin agents now use official runtime frontmatter.** All shipped agents declare `model`, `effort`, and `maxTurns`; read-only reviewer agents have explicit read-only tool allowlists. This makes model/turn budgeting and reviewer write boundaries visible to Claude Code.
|
|
26
|
+
- **Hook UX and safety bounds improved.** Every command hook in `hooks/hooks.json` now declares a `statusMessage` and bounded timeout, matching current Claude Code hook configuration fields while preserving fail-open hook behavior.
|
|
27
|
+
- **Slash-command frontmatter now passes `claude plugin validate`.** Command `argument-hint` values are quoted where they contain bracket syntax, and `allowed-tools` declarations use validator-friendly space-separated strings instead of inline YAML arrays.
|
|
28
|
+
|
|
29
|
+
### Added
|
|
30
|
+
|
|
31
|
+
- **Runner tests for plugin metadata drift.** `manifest-integrity.test.ts` now validates plugin manifest paths, hook status/timeout fields, agent runtime frontmatter, and reviewer read-only tool boundaries. Existing dispatch drift tests now lock the new direct-Task-first Agent Teams contract.
|
|
32
|
+
|
|
5
33
|
## 7.1.8 — 2026-05-07
|
|
6
34
|
|
|
7
35
|
### Fixed
|