@curdx/flow 2.0.3 → 2.0.4

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.
@@ -6,7 +6,7 @@
6
6
  },
7
7
  "metadata": {
8
8
  "description": "Claude Code Discipline Layer — spec-driven workflow + goal-backward verification + Karpathy 4 principles enforced via gates. Stops Claude from faking \"done\" on non-trivial features.",
9
- "version": "2.0.3"
9
+ "version": "2.0.4"
10
10
  },
11
11
  "plugins": [
12
12
  {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "curdx-flow",
3
- "version": "2.0.3",
3
+ "version": "2.0.4",
4
4
  "description": "Claude Code Discipline Layer — spec-driven workflow + goal-backward verification + Karpathy 4 principles enforced via gates. Stops Claude from faking \"done\" on non-trivial features.",
5
5
  "author": {
6
6
  "name": "wdx",
package/cli/install.js CHANGED
@@ -401,9 +401,8 @@ export async function install(args = []) {
401
401
  label: `${r.name}${currentlyInstalled.has(r.name) ? " (installed)" : ""}`,
402
402
  hint: r.hint,
403
403
  }));
404
- const initialValues = RECOMMENDED
405
- .filter((r) => !currentlyInstalled.has(r.name))
406
- .map((r) => r.name);
404
+ // Default to ALL plugins (user can deselect what they don't want)
405
+ const initialValues = RECOMMENDED.map((r) => r.name);
407
406
 
408
407
  toInstall = await multiselectClack({
409
408
  message: language === "zh"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@curdx/flow",
3
- "version": "2.0.3",
3
+ "version": "2.0.4",
4
4
  "description": "CLI installer for CurdX-Flow — AI engineering workflow meta-framework for Claude Code",
5
5
  "type": "module",
6
6
  "bin": {