@curdx/flow 1.1.9 → 1.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.
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "curdx-flow",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.10",
|
|
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
|
|
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 === "
|
|
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
|
}
|
|
@@ -114,15 +117,26 @@ async function main() {
|
|
|
114
117
|
case "init":
|
|
115
118
|
console.error(color.red(`The 'init' CLI command has been removed in 1.1.9.`));
|
|
116
119
|
console.error(``);
|
|
117
|
-
console.error(`Project initialization is
|
|
120
|
+
console.error(`Project initialization is a Claude Code slash command:`);
|
|
118
121
|
console.error(` ${color.cyan("claude")}`);
|
|
119
122
|
console.error(` ${color.cyan("/curdx-flow:init")}`);
|
|
120
123
|
console.error(``);
|
|
121
|
-
console.error(`
|
|
124
|
+
console.error(`The CLI only handles install-time operations.`);
|
|
125
|
+
process.exit(1);
|
|
126
|
+
case "help":
|
|
127
|
+
console.error(color.red(`The 'help' CLI subcommand has been removed in 1.1.10.`));
|
|
128
|
+
console.error(``);
|
|
129
|
+
console.error(`For a brief CLI usage summary, use the standard flag:`);
|
|
130
|
+
console.error(` ${color.cyan("npx @curdx/flow --help")} ${color.dim("(or -h)")}`);
|
|
131
|
+
console.error(``);
|
|
132
|
+
console.error(`For the full command / workflow reference, use the slash command`);
|
|
133
|
+
console.error(`inside Claude Code:`);
|
|
134
|
+
console.error(` ${color.cyan("claude")}`);
|
|
135
|
+
console.error(` ${color.cyan("/curdx-flow:help")}`);
|
|
122
136
|
process.exit(1);
|
|
123
137
|
default:
|
|
124
138
|
console.error(color.red(`Unknown command: ${cmd}`));
|
|
125
|
-
console.error(`Run ${color.cyan("npx @curdx/flow help")} for usage.`);
|
|
139
|
+
console.error(`Run ${color.cyan("npx @curdx/flow --help")} for CLI usage.`);
|
|
126
140
|
process.exit(1);
|
|
127
141
|
}
|
|
128
142
|
} catch (err) {
|