@sparkleideas/claude-flow-patch 3.1.0-alpha.44.patch.7 → 3.1.0-alpha.44.patch.8

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sparkleideas/claude-flow-patch",
3
- "version": "3.1.0-alpha.44.patch.7",
3
+ "version": "3.1.0-alpha.44.patch.8",
4
4
  "description": "Patch toolkit for @claude-flow/cli init/runtime defects with verify and post-init repair commands",
5
5
  "scripts": {
6
6
  "preflight": "node scripts/preflight.mjs",
@@ -17,8 +17,11 @@ Add an `allCommand` subcommand to the `start` command so that
17
17
  `claude-flow start all` initializes memory, starts the daemon, then runs the
18
18
  normal `startAction` (swarm + MCP + health checks).
19
19
 
20
- Also adds the subcommand to the `subcommands` array and a corresponding
21
- example entry.
20
+ | Op | What it does |
21
+ |----|-------------|
22
+ | SG-005a | Adds `allCommand` subcommand definition before `quickCommand` |
23
+ | SG-005b | Registers `allCommand` in the `subcommands` array |
24
+ | SG-005c | Adds `start all` to the examples array for `--help` output |
22
25
 
23
26
  ## Files Patched
24
27
 
@@ -26,4 +29,4 @@ example entry.
26
29
 
27
30
  ## Ops
28
31
 
29
- 2 ops in fix.py
32
+ 3 ops in fix.py
@@ -44,7 +44,15 @@ const allCommand = {
44
44
  // Quick start subcommand
45
45
  const quickCommand = {""")
46
46
 
47
- patch("SG-005b: register allCommand in subcommands array and add example",
47
+ patch("SG-005b: register allCommand in subcommands array",
48
48
  START_CMD,
49
49
  """ subcommands: [stopCommand, restartCommand, quickCommand],""",
50
50
  """ subcommands: [stopCommand, restartCommand, quickCommand, allCommand],""")
51
+
52
+ patch("SG-005c: add 'start all' to examples array",
53
+ START_CMD,
54
+ """ { command: 'claude-flow start stop', description: 'Stop the running system' }
55
+ ],""",
56
+ """ { command: 'claude-flow start stop', description: 'Stop the running system' },
57
+ { command: 'claude-flow start all', description: 'Start memory, daemon, swarm, and MCP' }
58
+ ],""")