@curdx/flow 1.1.9 → 1.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.
@@ -6,7 +6,7 @@
6
6
  },
7
7
  "metadata": {
8
8
  "description": "CurDX-Flow marketplace — distributes the curdx-flow meta-framework plugin",
9
- "version": "1.1.9"
9
+ "version": "1.1.11"
10
10
  },
11
11
  "plugins": [
12
12
  {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "curdx-flow",
3
- "version": "1.1.9",
3
+ "version": "1.1.11",
4
4
  "description": "AI engineering workflow meta-framework — spec-driven + autonomous execution + quality gates + multi-agent collaboration. Distills Karpathy + BMAD + GSD + Ralph + Superpowers + GStack and orchestrates context7 / sequential-thinking / chrome-devtools / frontend-design / claude-mem / pua dependencies.",
5
5
  "author": {
6
6
  "name": "wdx",
package/bin/curdx-flow.js CHANGED
@@ -15,8 +15,9 @@
15
15
  * doctor Check health (claude CLI, plugin, MCPs, recommended plugins)
16
16
  * upgrade Update curdx-flow + recommended plugins to latest
17
17
  * uninstall Remove curdx-flow plugin (and optionally recommended / artifacts)
18
- * help Show this help
19
18
  * --version / -v
19
+ * --help / -h (CLI usage summary — use /curdx-flow:help in Claude Code
20
+ * for the full command/workflow reference)
20
21
  */
21
22
 
22
23
  import { install } from "../cli/install.js";
@@ -54,11 +55,13 @@ ${color.bold("COMMANDS")}
54
55
  --keep-recommended Don't ask about pua/claude-mem/frontend-design
55
56
  --purge Also remove ~/.local/bin/bun, ~/.local/bin/uv symlinks
56
57
 
57
- ${color.cyan("help")} Show this help (same as --help / -h)
58
-
59
58
  ${color.bold("OPTIONS")}
60
59
  -v, --version Print version
61
- -h, --help Show help
60
+ -h, --help Show this CLI usage summary
61
+
62
+ ${color.dim("For the full command / workflow reference (including all slash")}
63
+ ${color.dim("commands like /curdx-flow:start, /curdx-flow:spec, …) run:")}
64
+ ${color.cyan("/curdx-flow:help")} ${color.dim("(inside Claude Code)")}
62
65
 
63
66
  ${color.bold("EXAMPLES")}
64
67
  ${color.dim("# First-time install with recommended plugins")}
@@ -89,8 +92,8 @@ async function main() {
89
92
  return;
90
93
  }
91
94
 
92
- // Help flags
93
- if (!cmd || cmd === "help" || cmd === "--help" || cmd === "-h") {
95
+ // Help flags (standard CLI convention: -h / --help / no args)
96
+ if (!cmd || cmd === "--help" || cmd === "-h") {
94
97
  printHelp();
95
98
  return;
96
99
  }
@@ -111,18 +114,9 @@ async function main() {
111
114
  case "remove":
112
115
  await uninstall(rest);
113
116
  break;
114
- case "init":
115
- console.error(color.red(`The 'init' CLI command has been removed in 1.1.9.`));
116
- console.error(``);
117
- console.error(`Project initialization is now a Claude Code slash command:`);
118
- console.error(` ${color.cyan("claude")}`);
119
- console.error(` ${color.cyan("/curdx-flow:init")}`);
120
- console.error(``);
121
- console.error(`This keeps the CLI focused on install-time operations only.`);
122
- process.exit(1);
123
117
  default:
124
118
  console.error(color.red(`Unknown command: ${cmd}`));
125
- console.error(`Run ${color.cyan("npx @curdx/flow help")} for usage.`);
119
+ console.error(`Run ${color.cyan("npx @curdx/flow --help")} for CLI usage.`);
126
120
  process.exit(1);
127
121
  }
128
122
  } catch (err) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@curdx/flow",
3
- "version": "1.1.9",
3
+ "version": "1.1.11",
4
4
  "description": "CLI installer for CurDX-Flow — AI engineering workflow meta-framework for Claude Code",
5
5
  "type": "module",
6
6
  "bin": {