claude-flow 3.5.12 → 3.5.14

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": "claude-flow",
3
- "version": "3.5.12",
3
+ "version": "3.5.14",
4
4
  "description": "Ruflo - Enterprise AI agent orchestration for Claude Code. Deploy 60+ specialized agents in coordinated swarms with self-learning, fault-tolerant consensus, vector memory, and MCP integration",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",
@@ -149,21 +149,25 @@ export function generateSettings(options) {
149
149
  };
150
150
  return settings;
151
151
  }
152
+ /**
153
+ * Detect if we're on Windows for platform-aware hook commands.
154
+ */
155
+ const IS_WINDOWS = process.platform === 'win32';
152
156
  /**
153
157
  * Build a cross-platform hook command.
154
- * Claude Code always runs hooks from the project root, so we invoke scripts
155
- * directly without git-root resolution. This avoids `node -e` one-liners
156
- * with shell-quoting issues on Windows cmd.exe and PowerShell.
158
+ * On Windows, wraps with `cmd /c` to avoid PowerShell stdin/process issues
159
+ * that cause "UserPromptSubmit hook error" in Claude Code.
157
160
  */
158
161
  function hookCmd(script, subcommand) {
159
- return `node ${script} ${subcommand}`.trim();
162
+ const cmd = `node ${script} ${subcommand}`.trim();
163
+ return IS_WINDOWS ? `cmd /c ${cmd}` : cmd;
160
164
  }
161
165
  /**
162
166
  * Build a cross-platform hook command for ESM scripts (.mjs).
163
- * Same direct invocation — Node.js handles .mjs files natively.
164
167
  */
165
168
  function hookCmdEsm(script, subcommand) {
166
- return `node ${script} ${subcommand}`.trim();
169
+ const cmd = `node ${script} ${subcommand}`.trim();
170
+ return IS_WINDOWS ? `cmd /c ${cmd}` : cmd;
167
171
  }
168
172
  /** Shorthand for CJS hook-handler commands */
169
173
  function hookHandlerCmd(subcommand) {
@@ -181,9 +185,11 @@ function generateStatusLineConfig(_options) {
181
185
  // Claude Code pipes JSON session data to the script via stdin.
182
186
  // Valid fields: type, command, padding (optional).
183
187
  // The script runs after each assistant message (debounced 300ms).
188
+ // NOTE: statusline must NOT use `cmd /c` — Claude Code manages its stdin
189
+ // directly for statusline commands, and `cmd /c` blocks stdin forwarding.
184
190
  return {
185
191
  type: 'command',
186
- command: hookCmd('.claude/helpers/statusline.cjs', ''),
192
+ command: `node .claude/helpers/statusline.cjs`,
187
193
  };
188
194
  }
189
195
  /**
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@claude-flow/cli",
3
- "version": "3.5.12",
3
+ "version": "3.5.14",
4
4
  "type": "module",
5
5
  "description": "Ruflo CLI - Enterprise AI agent orchestration with 60+ specialized agents, swarm coordination, MCP server, self-learning hooks, and vector memory for Claude Code",
6
6
  "main": "dist/src/index.js",