claude-flow 3.5.13 → 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.13",
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",
@@ -185,9 +185,11 @@ function generateStatusLineConfig(_options) {
185
185
  // Claude Code pipes JSON session data to the script via stdin.
186
186
  // Valid fields: type, command, padding (optional).
187
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.
188
190
  return {
189
191
  type: 'command',
190
- command: hookCmd('.claude/helpers/statusline.cjs', ''),
192
+ command: `node .claude/helpers/statusline.cjs`,
191
193
  };
192
194
  }
193
195
  /**
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@claude-flow/cli",
3
- "version": "3.5.13",
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",