claude-flow 2.5.0-alpha.141 → 2.7.0-alpha.1

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.
Files changed (154) hide show
  1. package/.claude/agents/reasoning/README.md +171 -0
  2. package/.claude/agents/reasoning/agent.md +816 -0
  3. package/.claude/agents/reasoning/example-reasoning-agent-template.md +362 -0
  4. package/.claude/agents/reasoning/goal-planner.md +73 -0
  5. package/.claude/commands/coordination/README.md +9 -0
  6. package/.claude/commands/memory/README.md +9 -0
  7. package/.claude/settings.json +3 -3
  8. package/.claude/sparc-modes.json +108 -0
  9. package/README.md +1 -6
  10. package/bin/claude-flow +1 -1
  11. package/dist/src/cli/command-registry.js +70 -6
  12. package/dist/src/cli/command-registry.js.map +1 -1
  13. package/dist/src/cli/help-formatter.js +5 -3
  14. package/dist/src/cli/help-formatter.js.map +1 -1
  15. package/dist/src/cli/help-text.js +53 -5
  16. package/dist/src/cli/help-text.js.map +1 -1
  17. package/dist/src/cli/simple-cli.js +182 -172
  18. package/dist/src/cli/simple-cli.js.map +1 -1
  19. package/dist/src/cli/simple-commands/agent-booster.js +415 -0
  20. package/dist/src/cli/simple-commands/agent-booster.js.map +1 -0
  21. package/dist/src/cli/simple-commands/agent.js +856 -13
  22. package/dist/src/cli/simple-commands/agent.js.map +1 -1
  23. package/dist/src/cli/simple-commands/config.js +115 -257
  24. package/dist/src/cli/simple-commands/config.js.map +1 -1
  25. package/dist/src/cli/simple-commands/env-template.js +180 -0
  26. package/dist/src/cli/simple-commands/env-template.js.map +1 -0
  27. package/dist/src/cli/simple-commands/init/help.js +23 -0
  28. package/dist/src/cli/simple-commands/init/help.js.map +1 -1
  29. package/dist/src/cli/simple-commands/init/index.js +63 -0
  30. package/dist/src/cli/simple-commands/init/index.js.map +1 -1
  31. package/dist/src/cli/simple-commands/memory.js +414 -16
  32. package/dist/src/cli/simple-commands/memory.js.map +1 -1
  33. package/dist/src/cli/simple-commands/proxy.js +304 -0
  34. package/dist/src/cli/simple-commands/proxy.js.map +1 -0
  35. package/dist/src/cli/simple-commands/sparc.js +16 -19
  36. package/dist/src/cli/simple-commands/sparc.js.map +1 -1
  37. package/dist/src/cli/validation-helper.js.map +1 -1
  38. package/dist/src/core/version.js +1 -1
  39. package/dist/src/execution/agent-executor.js +181 -0
  40. package/dist/src/execution/agent-executor.js.map +1 -0
  41. package/dist/src/execution/index.js +12 -0
  42. package/dist/src/execution/index.js.map +1 -0
  43. package/dist/src/execution/provider-manager.js +110 -0
  44. package/dist/src/execution/provider-manager.js.map +1 -0
  45. package/dist/src/hooks/redaction-hook.js +89 -0
  46. package/dist/src/hooks/redaction-hook.js.map +1 -0
  47. package/dist/src/memory/swarm-memory.js +340 -421
  48. package/dist/src/memory/swarm-memory.js.map +1 -1
  49. package/dist/src/reasoningbank/reasoningbank-adapter.js +144 -0
  50. package/dist/src/reasoningbank/reasoningbank-adapter.js.map +1 -0
  51. package/dist/src/utils/key-redactor.js +108 -0
  52. package/dist/src/utils/key-redactor.js.map +1 -0
  53. package/dist/src/utils/metrics-reader.js.map +1 -1
  54. package/docs/AGENT-BOOSTER-INTEGRATION.md +407 -0
  55. package/docs/AGENTIC-FLOW-INTEGRATION-GUIDE.md +753 -0
  56. package/docs/AGENTIC_FLOW_EXECUTION_FIX_REPORT.md +474 -0
  57. package/docs/AGENTIC_FLOW_INTEGRATION_STATUS.md +143 -0
  58. package/docs/AGENTIC_FLOW_MVP_COMPLETE.md +367 -0
  59. package/docs/AGENTIC_FLOW_SECURITY_TEST_REPORT.md +369 -0
  60. package/docs/COMMAND-VERIFICATION-REPORT.md +441 -0
  61. package/docs/COMMIT_SUMMARY.md +247 -0
  62. package/docs/DEEP_REVIEW_COMPREHENSIVE_REPORT.md +922 -0
  63. package/docs/DOCKER-VALIDATION-REPORT.md +281 -0
  64. package/docs/ENV-SETUP-GUIDE.md +270 -0
  65. package/docs/FINAL_PRE_PUBLISH_VALIDATION.md +823 -0
  66. package/docs/FINAL_VALIDATION_REPORT.md +165 -0
  67. package/docs/HOOKS-V2-MODIFICATION.md +146 -0
  68. package/docs/INDEX.md +568 -0
  69. package/docs/INTEGRATION_COMPLETE.md +414 -0
  70. package/docs/MEMORY_REDACTION_TEST_REPORT.md +300 -0
  71. package/docs/PERFORMANCE-SYSTEMS-STATUS.md +340 -0
  72. package/docs/PRE_RELEASE_FIXES_REPORT.md +435 -0
  73. package/docs/README.md +35 -0
  74. package/docs/REASONING-AGENTS.md +482 -0
  75. package/docs/REASONINGBANK-AGENT-CREATION-GUIDE.md +813 -0
  76. package/docs/REASONINGBANK-ANALYSIS-COMPLETE.md +479 -0
  77. package/docs/REASONINGBANK-BENCHMARK-RESULTS.md +166 -0
  78. package/docs/REASONINGBANK-BENCHMARK.md +396 -0
  79. package/docs/REASONINGBANK-CLI-INTEGRATION.md +455 -0
  80. package/docs/REASONINGBANK-CORE-INTEGRATION.md +658 -0
  81. package/docs/REASONINGBANK-COST-OPTIMIZATION.md +329 -0
  82. package/docs/REASONINGBANK-DEMO.md +419 -0
  83. package/docs/REASONINGBANK-INTEGRATION-COMPLETE.md +249 -0
  84. package/docs/REASONINGBANK-INTEGRATION-STATUS.md +179 -0
  85. package/docs/REASONINGBANK-VALIDATION.md +532 -0
  86. package/docs/REASONINGBANK_ARCHITECTURE.md +475 -0
  87. package/docs/REASONINGBANK_INTEGRATION_COMPLETE.md +558 -0
  88. package/docs/REASONINGBANK_INTEGRATION_PLAN.md +1188 -0
  89. package/docs/REGRESSION-ANALYSIS-REPORT.md +500 -0
  90. package/docs/RELEASE_v2.6.0-alpha.2.md +658 -0
  91. package/docs/api/API_DOCUMENTATION.md +721 -0
  92. package/docs/architecture/ARCHITECTURE.md +1690 -0
  93. package/docs/ci-cd/README.md +368 -0
  94. package/docs/development/DEPLOYMENT.md +2348 -0
  95. package/docs/development/DEVELOPMENT_WORKFLOW.md +1333 -0
  96. package/docs/development/build-analysis-report.md +252 -0
  97. package/docs/development/pair-optimization.md +156 -0
  98. package/docs/development/token-tracking-status.md +103 -0
  99. package/docs/development/training-pipeline-demo.md +163 -0
  100. package/docs/development/training-pipeline-real-only.md +196 -0
  101. package/docs/epic-sdk-integration.md +1269 -0
  102. package/docs/experimental/RIEMANN_HYPOTHESIS_PROOF.md +124 -0
  103. package/docs/experimental/computational_verification.py +436 -0
  104. package/docs/experimental/novel_approaches.md +560 -0
  105. package/docs/experimental/riemann_hypothesis_analysis.md +263 -0
  106. package/docs/experimental/riemann_proof_attempt.md +124 -0
  107. package/docs/experimental/riemann_synthesis.md +277 -0
  108. package/docs/experimental/verification_results.json +12 -0
  109. package/docs/experimental/visualization_insights.md +720 -0
  110. package/docs/guides/USER_GUIDE.md +1138 -0
  111. package/docs/guides/token-tracking-guide.md +291 -0
  112. package/docs/reference/AGENTS.md +1011 -0
  113. package/docs/reference/MCP_TOOLS.md +2188 -0
  114. package/docs/reference/SPARC.md +717 -0
  115. package/docs/reference/SWARM.md +2000 -0
  116. package/docs/sdk/CLAUDE-CODE-SDK-DEEP-ANALYSIS.md +649 -0
  117. package/docs/sdk/CLAUDE-FLOW-SDK-INTEGRATION-ANALYSIS.md +242 -0
  118. package/docs/sdk/INTEGRATION-ROADMAP.md +420 -0
  119. package/docs/sdk/MCP-TOOLS-UPDATE.md +270 -0
  120. package/docs/sdk/SDK-ADVANCED-FEATURES-INTEGRATION.md +723 -0
  121. package/docs/sdk/SDK-ALL-FEATURES-INTEGRATION-MATRIX.md +612 -0
  122. package/docs/sdk/SDK-INTEGRATION-COMPLETE.md +358 -0
  123. package/docs/sdk/SDK-INTEGRATION-PHASES-V2.5.md +750 -0
  124. package/docs/sdk/SDK-LEVERAGE-REAL-FEATURES.md +676 -0
  125. package/docs/sdk/SDK-VALIDATION-RESULTS.md +400 -0
  126. package/docs/sdk/epic-sdk-integration.md +1269 -0
  127. package/docs/setup/remote-setup.md +93 -0
  128. package/docs/validation/final-validation-summary.md +220 -0
  129. package/docs/validation/verification-integration.md +190 -0
  130. package/docs/validation/verification-validation.md +349 -0
  131. package/docs/wiki/background-commands.md +1213 -0
  132. package/docs/wiki/session-persistence.md +342 -0
  133. package/docs/wiki/stream-chain-command.md +537 -0
  134. package/package.json +4 -2
  135. package/src/cli/command-registry.js +70 -5
  136. package/src/cli/help-text.js +26 -5
  137. package/src/cli/simple-cli.ts +18 -7
  138. package/src/cli/simple-commands/agent-booster.js +515 -0
  139. package/src/cli/simple-commands/agent.js +1001 -12
  140. package/src/cli/simple-commands/agent.ts +137 -0
  141. package/src/cli/simple-commands/config.ts +127 -0
  142. package/src/cli/simple-commands/env-template.js +190 -0
  143. package/src/cli/simple-commands/init/help.js +23 -0
  144. package/src/cli/simple-commands/init/index.js +84 -6
  145. package/src/cli/simple-commands/memory.js +497 -16
  146. package/src/cli/simple-commands/proxy.js +384 -0
  147. package/src/cli/simple-commands/sparc.js +16 -19
  148. package/src/execution/agent-executor.ts +306 -0
  149. package/src/execution/index.ts +19 -0
  150. package/src/execution/provider-manager.ts +187 -0
  151. package/src/hooks/redaction-hook.ts +115 -0
  152. package/src/reasoningbank/reasoningbank-adapter.js +191 -0
  153. package/src/utils/key-redactor.js +178 -0
  154. package/src/utils/key-redactor.ts +184 -0
@@ -0,0 +1,537 @@
1
+ # Stream Chain Command
2
+
3
+ ## Overview
4
+
5
+ The `stream-chain` command enables you to connect multiple Claude instances via stream-json format, creating powerful multi-agent workflows with seamless context preservation. This command supports both foreground and background execution, allowing you to run complex chains while continuing other work.
6
+
7
+ ## Installation
8
+
9
+ The stream-chain command is included in Claude Flow and registered in the command registry:
10
+
11
+ ```bash
12
+ # Access stream-chain command
13
+ npx claude-flow stream-chain help
14
+
15
+ # Or with the local CLI
16
+ ./claude-flow stream-chain help
17
+ ```
18
+
19
+ ## Command Structure
20
+
21
+ ```bash
22
+ stream-chain <subcommand> [options]
23
+ ```
24
+
25
+ ## Subcommands
26
+
27
+ ### `run` - Execute Custom Stream Chains
28
+
29
+ Run a sequence of prompts through connected Claude instances:
30
+
31
+ ```bash
32
+ stream-chain run "prompt1" "prompt2" "prompt3" [...]
33
+ ```
34
+
35
+ **Requirements:**
36
+ - Minimum of 2 prompts required
37
+ - Each prompt is executed sequentially
38
+ - Output from each step feeds into the next
39
+
40
+ **Example:**
41
+ ```bash
42
+ ./claude-flow stream-chain run \
43
+ "Analyze the user authentication system" \
44
+ "Identify security vulnerabilities" \
45
+ "Generate fixes for the vulnerabilities"
46
+ ```
47
+
48
+ ### `demo` - Run Demonstration Chain
49
+
50
+ Execute a pre-configured 3-step demonstration:
51
+
52
+ ```bash
53
+ stream-chain demo [options]
54
+ ```
55
+
56
+ The demo chain performs:
57
+ 1. Requirements analysis for a todo list application
58
+ 2. Data model and API endpoint design
59
+ 3. Core functionality implementation
60
+
61
+ **Example:**
62
+ ```bash
63
+ # Run demo in foreground
64
+ ./claude-flow stream-chain demo
65
+
66
+ # Run demo in background
67
+ ./claude-flow stream-chain demo --background
68
+ ```
69
+
70
+ ### `pipeline` - Execute Predefined Pipelines
71
+
72
+ Run specialized pipelines for common development tasks:
73
+
74
+ ```bash
75
+ stream-chain pipeline <type> [options]
76
+ ```
77
+
78
+ **Available Pipeline Types:**
79
+
80
+ | Pipeline | Description | Steps |
81
+ |----------|-------------|-------|
82
+ | `analysis` | Code analysis pipeline | 1. Read and analyze codebase<br>2. Identify improvements<br>3. Generate report |
83
+ | `refactor` | Refactoring pipeline | 1. Analyze refactoring opportunities<br>2. Create refactoring plan<br>3. Apply changes |
84
+ | `test` | Test generation pipeline | 1. Analyze code coverage<br>2. Identify missing tests<br>3. Generate tests |
85
+ | `optimize` | Performance optimization | 1. Profile performance<br>2. Identify bottlenecks<br>3. Apply optimizations |
86
+
87
+ **Examples:**
88
+ ```bash
89
+ # Run analysis pipeline
90
+ ./claude-flow stream-chain pipeline analysis
91
+
92
+ # Run refactoring pipeline in background
93
+ ./claude-flow stream-chain pipeline refactor --bg
94
+
95
+ # Run test generation with verbose output
96
+ ./claude-flow stream-chain pipeline test --verbose
97
+ ```
98
+
99
+ ### `test` - Test Stream Connection
100
+
101
+ Verify that stream chaining is working correctly:
102
+
103
+ ```bash
104
+ stream-chain test [options]
105
+ ```
106
+
107
+ Performs two tests:
108
+ 1. Simple echo test
109
+ 2. Stream chaining test
110
+
111
+ **Example:**
112
+ ```bash
113
+ ./claude-flow stream-chain test --verbose
114
+ ```
115
+
116
+ ### `monitor` - Monitor Background Chains
117
+
118
+ View all background stream chains and their status:
119
+
120
+ ```bash
121
+ stream-chain monitor
122
+ ```
123
+
124
+ **Output includes:**
125
+ - Process ID (e.g., `stream_1234567890`)
126
+ - Original command
127
+ - System PID
128
+ - Start time
129
+ - Current status (🟢 Running / 🔴 Stopped)
130
+
131
+ **Example:**
132
+ ```bash
133
+ $ ./claude-flow stream-chain monitor
134
+
135
+ 📊 Background Stream Chains
136
+ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
137
+
138
+ 🔗 stream_1755021020133
139
+ Command: npx claude-flow stream-chain demo
140
+ PID: 366567
141
+ Started: 2025-08-12T17:50:20.135Z
142
+ Status: 🟢 Running
143
+ ```
144
+
145
+ ### `kill` - Terminate Background Chain
146
+
147
+ Stop a specific background stream chain:
148
+
149
+ ```bash
150
+ stream-chain kill <process_id>
151
+ ```
152
+
153
+ **Example:**
154
+ ```bash
155
+ ./claude-flow stream-chain kill stream_1755021020133
156
+ ```
157
+
158
+ ## Options
159
+
160
+ ### Global Options
161
+
162
+ | Option | Short | Description |
163
+ |--------|-------|-------------|
164
+ | `--background` | `--bg` | Run the stream chain in background |
165
+ | `--verbose` | | Show detailed output during execution |
166
+ | `--json` | | Keep JSON format for final output |
167
+ | `--timeout <sec>` | | Set timeout for each step (in seconds) |
168
+
169
+ ### Background Execution
170
+
171
+ The `--background` or `--bg` flag enables background execution for any stream chain:
172
+
173
+ ```bash
174
+ # Run any command in background
175
+ stream-chain run "task1" "task2" --background
176
+ stream-chain demo --bg
177
+ stream-chain pipeline analysis --background
178
+ ```
179
+
180
+ **Background Features:**
181
+ - Process runs detached from terminal
182
+ - Unique process ID generated (e.g., `stream_1234567890`)
183
+ - Process information stored in `.claude-flow/stream-chains.json`
184
+ - Continues running after terminal is closed
185
+ - Monitor with `stream-chain monitor`
186
+ - Kill with `stream-chain kill <id>`
187
+
188
+ ## Stream-JSON Format
189
+
190
+ Stream chains use newline-delimited JSON (NDJSON) for communication:
191
+
192
+ ```json
193
+ {"type":"init","session_id":"abc123","timestamp":"2024-01-01T00:00:00Z"}
194
+ {"type":"message","role":"assistant","content":[{"type":"text","text":"Processing..."}]}
195
+ {"type":"tool_use","name":"Bash","input":{"command":"ls -la"}}
196
+ {"type":"tool_result","output":"total 64\ndrwxr-xr-x 10 user staff 320"}
197
+ {"type":"result","status":"success","duration_ms":1234}
198
+ ```
199
+
200
+ **Message Types:**
201
+ - `init` - Session initialization
202
+ - `message` - Assistant/user messages
203
+ - `tool_use` - Tool invocations
204
+ - `tool_result` - Tool execution results
205
+ - `result` - Final completion status
206
+
207
+ ## Performance Characteristics
208
+
209
+ | Metric | Value | Description |
210
+ |--------|-------|-------------|
211
+ | **Latency** | <100ms | Per handoff between agents |
212
+ | **Context Preservation** | 100% | Full conversation history maintained |
213
+ | **Memory Usage** | O(1) | Constant memory via streaming |
214
+ | **Speed Improvement** | 40-60% | Compared to file-based approaches |
215
+
216
+ ## Integration with Background Commands
217
+
218
+ The stream-chain command fully integrates with Claude Code's background command system:
219
+
220
+ ### Using with /bashes Command
221
+
222
+ Background stream chains appear in the `/bashes` interactive menu:
223
+
224
+ ```bash
225
+ # In Claude Code interactive mode
226
+ /bashes
227
+
228
+ # Shows all background processes including stream chains
229
+ Background Bash Shells
230
+ Select a shell to view details
231
+
232
+ 1. npm run dev (running)
233
+ 2. stream_1234567890: stream-chain demo (running)
234
+ 3. docker-compose up (running)
235
+ ```
236
+
237
+ ### Programmatic Control
238
+
239
+ You can manage stream chains programmatically through Claude:
240
+
241
+ ```markdown
242
+ # Ask Claude to start a stream chain in background
243
+ "Run a stream chain analysis pipeline in the background"
244
+
245
+ # Claude will execute:
246
+ ./claude-flow stream-chain pipeline analysis --background
247
+
248
+ # Ask Claude to check status
249
+ "Check the status of background stream chains"
250
+
251
+ # Claude will execute:
252
+ ./claude-flow stream-chain monitor
253
+ ```
254
+
255
+ ## Practical Examples
256
+
257
+ ### Example 1: Full Development Pipeline
258
+
259
+ ```bash
260
+ # Create a complete development workflow
261
+ ./claude-flow stream-chain run \
262
+ "Analyze the requirements in docs/requirements.md" \
263
+ "Design the system architecture based on requirements" \
264
+ "Generate the API specification" \
265
+ "Create implementation plan" \
266
+ "Write the initial code structure" \
267
+ --background
268
+
269
+ # Monitor progress
270
+ ./claude-flow stream-chain monitor
271
+ ```
272
+
273
+ ### Example 2: Automated Code Review
274
+
275
+ ```bash
276
+ # Run code review pipeline in background
277
+ ./claude-flow stream-chain run \
278
+ "Analyze code quality in src/" \
279
+ "Identify code smells and anti-patterns" \
280
+ "Suggest refactoring improvements" \
281
+ "Generate code review report" \
282
+ --bg --verbose
283
+
284
+ # Check when complete
285
+ ./claude-flow stream-chain monitor
286
+ ```
287
+
288
+ ### Example 3: Test-Driven Development
289
+
290
+ ```bash
291
+ # TDD workflow
292
+ ./claude-flow stream-chain run \
293
+ "Write test specifications for user authentication" \
294
+ "Generate unit tests based on specifications" \
295
+ "Implement code to pass the tests" \
296
+ "Refactor for code quality" \
297
+ --timeout 60
298
+ ```
299
+
300
+ ### Example 4: Documentation Generation
301
+
302
+ ```bash
303
+ # Generate comprehensive documentation
304
+ ./claude-flow stream-chain pipeline analysis --background
305
+
306
+ # After analysis completes, generate docs
307
+ ./claude-flow stream-chain run \
308
+ "Based on the codebase analysis, create API documentation" \
309
+ "Generate user guide based on features" \
310
+ "Create developer setup guide" \
311
+ --bg
312
+ ```
313
+
314
+ ## Files and Storage
315
+
316
+ ### Process Tracking File
317
+
318
+ Background processes are tracked in:
319
+ ```
320
+ .claude-flow/stream-chains.json
321
+ ```
322
+
323
+ **File Structure:**
324
+ ```json
325
+ {
326
+ "stream_1234567890": {
327
+ "command": "npx claude-flow stream-chain demo",
328
+ "pid": 12345,
329
+ "startTime": "2025-08-12T17:50:20.135Z",
330
+ "status": "running"
331
+ },
332
+ "stream_9876543210": {
333
+ "command": "npx claude-flow stream-chain pipeline analysis",
334
+ "pid": 67890,
335
+ "startTime": "2025-08-12T18:00:00.000Z",
336
+ "status": "killed",
337
+ "endTime": "2025-08-12T18:05:00.000Z"
338
+ }
339
+ }
340
+ ```
341
+
342
+ ## Error Handling
343
+
344
+ The stream-chain command includes comprehensive error handling:
345
+
346
+ ### Common Errors and Solutions
347
+
348
+ | Error | Cause | Solution |
349
+ |-------|-------|----------|
350
+ | "Stream chain requires at least 2 prompts" | Running `run` with <2 prompts | Provide at least 2 prompts |
351
+ | "Unknown pipeline: [type]" | Invalid pipeline type | Use: analysis, refactor, test, or optimize |
352
+ | "Process [id] not found" | Trying to kill non-existent process | Check `monitor` for valid IDs |
353
+ | "Failed to kill process: kill ESRCH" | Process already stopped | No action needed |
354
+ | Command timeout | Claude CLI not available or slow | Install Claude CLI or use shorter timeout |
355
+
356
+ ## Best Practices
357
+
358
+ ### 1. Use Background for Long Chains
359
+
360
+ For chains with 3+ steps or expected runtime >30 seconds:
361
+ ```bash
362
+ stream-chain run "step1" "step2" "step3" "step4" --background
363
+ ```
364
+
365
+ ### 2. Monitor Critical Chains
366
+
367
+ For important workflows, monitor actively:
368
+ ```bash
369
+ # Start critical chain
370
+ stream-chain pipeline refactor --bg
371
+
372
+ # Monitor in another terminal
373
+ watch -n 5 './claude-flow stream-chain monitor'
374
+ ```
375
+
376
+ ### 3. Set Appropriate Timeouts
377
+
378
+ Prevent hanging chains with timeouts:
379
+ ```bash
380
+ # 30 second timeout per step
381
+ stream-chain run "analyze" "implement" --timeout 30
382
+ ```
383
+
384
+ ### 4. Clean Up Old Processes
385
+
386
+ Periodically check and clean up stopped processes:
387
+ ```bash
388
+ # Check all processes
389
+ stream-chain monitor
390
+
391
+ # Kill stopped processes
392
+ stream-chain kill stream_xxx
393
+ ```
394
+
395
+ ### 5. Use Verbose for Debugging
396
+
397
+ When chains fail, use verbose mode to diagnose:
398
+ ```bash
399
+ stream-chain test --verbose
400
+ stream-chain run "task1" "task2" --verbose
401
+ ```
402
+
403
+ ## Advanced Usage
404
+
405
+ ### Combining with Other Claude Flow Features
406
+
407
+ #### With Hive Mind
408
+ ```bash
409
+ # Start hive mind coordination
410
+ npx claude-flow hive-mind spawn "coordinator"
411
+
412
+ # Run stream chain managed by hive
413
+ ./claude-flow stream-chain run \
414
+ "Coordinate with hive mind for task distribution" \
415
+ "Execute distributed tasks" \
416
+ "Aggregate results" \
417
+ --background
418
+ ```
419
+
420
+ #### With Training Pipeline
421
+ ```bash
422
+ # Train agents first
423
+ ./claude-flow train-pipeline run
424
+
425
+ # Use trained agents in stream chain
426
+ ./claude-flow stream-chain run \
427
+ "Apply conservative strategy from training" \
428
+ "Apply balanced strategy from training" \
429
+ "Apply aggressive optimization" \
430
+ --bg
431
+ ```
432
+
433
+ #### With MCP Tools
434
+ ```bash
435
+ # Initialize swarm with MCP
436
+ npx claude-flow swarm init --topology mesh
437
+
438
+ # Run stream chain with swarm coordination
439
+ ./claude-flow stream-chain run \
440
+ "Initialize swarm agents" \
441
+ "Distribute tasks across swarm" \
442
+ "Collect and synthesize results" \
443
+ --background
444
+ ```
445
+
446
+ ## Troubleshooting
447
+
448
+ ### Chain Not Starting
449
+
450
+ **Symptom:** Command hangs or times out immediately
451
+
452
+ **Checks:**
453
+ 1. Verify Claude CLI is installed: `which claude`
454
+ 2. Check Claude is authenticated: `claude --version`
455
+ 3. Try with shorter timeout: `--timeout 5`
456
+ 4. Run test command: `stream-chain test`
457
+
458
+ ### Background Process Not Found
459
+
460
+ **Symptom:** `monitor` doesn't show expected process
461
+
462
+ **Checks:**
463
+ 1. Check process file exists: `ls -la .claude-flow/stream-chains.json`
464
+ 2. Verify process started: Check terminal output for process ID
465
+ 3. Check system processes: `ps aux | grep claude-flow`
466
+
467
+ ### Chain Stops Unexpectedly
468
+
469
+ **Symptom:** Chain marked as "Stopped" prematurely
470
+
471
+ **Checks:**
472
+ 1. Check system resources: `top` or `htop`
473
+ 2. Review timeout settings
474
+ 3. Check Claude CLI logs
475
+ 4. Run with verbose flag for more details
476
+
477
+ ## Performance Optimization
478
+
479
+ ### Tips for Faster Chains
480
+
481
+ 1. **Minimize Context:** Keep prompts concise
482
+ 2. **Use Specific Instructions:** Avoid ambiguous prompts
483
+ 3. **Parallel When Possible:** Run independent chains simultaneously
484
+ 4. **Cache Results:** Store intermediate results for reuse
485
+ 5. **Profile Performance:** Use `--verbose` to identify slow steps
486
+
487
+ ### Resource Management
488
+
489
+ ```bash
490
+ # Limit concurrent chains
491
+ MAX_CHAINS=3
492
+ CURRENT=$(./claude-flow stream-chain monitor | grep "🟢 Running" | wc -l)
493
+
494
+ if [ $CURRENT -lt $MAX_CHAINS ]; then
495
+ ./claude-flow stream-chain demo --background
496
+ else
497
+ echo "Maximum chains running, waiting..."
498
+ fi
499
+ ```
500
+
501
+ ## Related Documentation
502
+
503
+ - [Stream-JSON Chaining Guide](./stream-chaining.md)
504
+ - [Background Commands](./background-commands.md)
505
+ - [Training Pipeline](./training-pipeline.md)
506
+ - [Hive Mind Coordination](./hive-mind.md)
507
+ - [MCP Tools Reference](./mcp-tools.md)
508
+
509
+ ## Version History
510
+
511
+ | Version | Date | Changes |
512
+ |---------|------|---------|
513
+ | 1.0.0 | 2025-08-12 | Initial implementation |
514
+ | 1.1.0 | 2025-08-12 | Added background execution support |
515
+ | 1.2.0 | 2025-08-12 | Added monitor and kill commands |
516
+
517
+ ## Contributing
518
+
519
+ To contribute to the stream-chain command:
520
+
521
+ 1. Fork the repository
522
+ 2. Create feature branch: `git checkout -b feature/stream-chain-enhancement`
523
+ 3. Make changes to `/src/cli/simple-commands/stream-chain.js`
524
+ 4. Update tests and documentation
525
+ 5. Submit pull request
526
+
527
+ ## Support
528
+
529
+ For issues or questions:
530
+ - GitHub Issues: [claude-flow/issues](https://github.com/ruvnet/claude-flow/issues)
531
+ - Documentation: [Stream Chaining Docs](https://github.com/ruvnet/claude-flow/docs/stream-chaining.md)
532
+ - Wiki: [Claude Flow Wiki](https://github.com/ruvnet/claude-flow/wiki)
533
+
534
+ ---
535
+
536
+ *Last updated: August 2025*
537
+ *Claude Flow Version: Alpha 89*
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "claude-flow",
3
- "version": "2.5.0-alpha.141",
4
- "description": "Enterprise-grade AI agent orchestration with ruv-swarm integration",
3
+ "version": "2.7.0-alpha.1",
4
+ "description": "Enterprise-grade AI agent orchestration with multi-provider execution engine",
5
5
  "mcpName": "io.github.ruvnet/claude-flow",
6
6
  "main": "cli.mjs",
7
7
  "bin": {
@@ -108,6 +108,7 @@
108
108
  "dist/",
109
109
  "src/",
110
110
  ".claude/",
111
+ "docs/",
111
112
  "docker-test/",
112
113
  "scripts/",
113
114
  "README.md",
@@ -120,6 +121,7 @@
120
121
  "@anthropic-ai/sdk": "^0.65.0",
121
122
  "@modelcontextprotocol/sdk": "^1.0.4",
122
123
  "@types/better-sqlite3": "^7.6.13",
124
+ "agentic-flow": "^1.5.9",
123
125
  "blessed": "^0.1.81",
124
126
  "chalk": "^4.1.2",
125
127
  "cli-table3": "^0.6.3",
@@ -9,6 +9,7 @@ import { taskCommand } from './simple-commands/task.js';
9
9
  import { configCommand } from './simple-commands/config.js';
10
10
  import { statusCommand } from './simple-commands/status.js';
11
11
  import { mcpCommand } from './simple-commands/mcp.js';
12
+ import { proxyCommand } from './simple-commands/proxy.js';
12
13
  import { monitorCommand } from './simple-commands/monitor.js';
13
14
  import { startCommand } from './simple-commands/start.js';
14
15
  import { swarmCommand } from './simple-commands/swarm.js';
@@ -176,14 +177,78 @@ Benefits:
176
177
 
177
178
  commandRegistry.set('agent', {
178
179
  handler: agentCommand,
179
- description: 'Manage AI agents and hierarchies',
180
+ description: 'Manage AI agents, memory, and agentic-flow integration (NEW in v2.6.0)',
180
181
  usage: 'agent <subcommand> [options]',
181
182
  examples: [
182
- 'agent spawn researcher --name "DataBot"',
183
- 'agent list --verbose',
184
- 'agent hierarchy create enterprise',
185
- 'agent ecosystem status',
183
+ 'agent run coder "Build REST API" --optimize # Multi-provider execution',
184
+ 'agent agents # List 66+ available agents',
185
+ 'agent memory init # Initialize ReasoningBank',
186
+ 'agent config wizard # Configure API keys',
187
+ 'agent mcp start --daemon # Start MCP server',
188
+ 'agent spawn researcher --name "DataBot" # Internal agent management',
186
189
  ],
190
+ details: `
191
+ Agent management features:
192
+ • Multi-provider execution (Anthropic, OpenRouter, ONNX, Gemini)
193
+ • ReasoningBank memory system (70% → 88% success improvement)
194
+ • Model optimization (85-98% cost savings)
195
+ • MCP server management (213+ tools)
196
+ • Configuration management (API keys, models, settings)
197
+ • Custom agent creation and management
198
+ • Internal agent hierarchies and coordination
199
+
200
+ Subcommands:
201
+ run - Execute agents with multi-provider support
202
+ agents - List all 66+ available agents
203
+ create - Create custom agents
204
+ info - Show agent information
205
+ conflicts - Check for agent conflicts
206
+ memory - ReasoningBank memory management
207
+ config - Configuration management
208
+ mcp - MCP server management
209
+ spawn - Internal agent management
210
+ list - List internal agents
211
+
212
+ See 'claude-flow help agent' for full documentation.`,
213
+ });
214
+
215
+ commandRegistry.set('proxy', {
216
+ handler: proxyCommand,
217
+ description: 'OpenRouter proxy server for 85-98% cost savings (NEW in v2.6.0)',
218
+ usage: 'proxy <subcommand> [options]',
219
+ examples: [
220
+ 'proxy start --daemon # Start proxy server',
221
+ 'proxy status --verbose # Check status',
222
+ 'proxy config # Configuration guide',
223
+ 'proxy logs --follow # View logs',
224
+ ],
225
+ details: `
226
+ OpenRouter Proxy Features:
227
+ • Transparent API translation (Anthropic → OpenRouter)
228
+ • 85-98% cost savings vs direct Anthropic API
229
+ • Works with Claude Code out of the box
230
+ • Zero code changes required
231
+ • Supports all OpenRouter models
232
+
233
+ Cost Savings Examples:
234
+ • Claude 3.5 Sonnet: $3.00 → $0.30 per million tokens (90% savings)
235
+ • Claude 3 Opus: $15.00 → $2.25 per million tokens (85% savings)
236
+ • DeepSeek R1: Free (100% savings)
237
+
238
+ Setup:
239
+ 1. Get OpenRouter API key: https://openrouter.ai/keys
240
+ 2. claude-flow agent config set OPENROUTER_API_KEY sk-or-xxx
241
+ 3. claude-flow proxy start --daemon
242
+ 4. export ANTHROPIC_BASE_URL=http://localhost:8080
243
+ 5. Use Claude Code normally → automatic savings!
244
+
245
+ Commands:
246
+ start - Start proxy server
247
+ stop - Stop proxy server
248
+ restart - Restart proxy server
249
+ status - Get server status
250
+ logs - View server logs
251
+ config - Configuration guide`,
187
252
  });
188
253
 
189
254
  commandRegistry.set('task', {
@@ -68,8 +68,20 @@ USAGE:
68
68
  start [--swarm] Start orchestration system
69
69
  swarm <objective> Multi-agent swarm coordination
70
70
  agent <action> Agent management (spawn, list, terminate)
71
- sparc <mode> SPARC development modes (17 available)
72
- memory <action> Persistent memory operations
71
+ agent booster Ultra-fast code editing (352x faster, $0 cost)
72
+ - edit <file> Edit single file with local WASM processing
73
+ - batch <pattern> Batch edit multiple files (1000 files in 1 sec)
74
+ - benchmark Validate 352x speed claim with tests
75
+ • agent memory ReasoningBank learning memory (46% faster, 88% success)
76
+ - init Initialize ReasoningBank database
77
+ - status Show memory statistics
78
+ - list List stored memories
79
+ sparc <mode> SPARC development modes (13 available)
80
+ memory <action> ReasoningBank persistent memory system
81
+ proxy <action> OpenRouter proxy server (85-98% cost savings)
82
+ - start Start proxy server
83
+ - status Check proxy status
84
+ - config Configuration guide
73
85
  github <mode> GitHub workflow automation (6 modes)
74
86
  status System status and health
75
87
 
@@ -791,11 +803,20 @@ export function getStandardizedCommandHelp(command) {
791
803
  const commandConfigs = {
792
804
  agent: {
793
805
  name: 'claude-flow agent',
794
- description: 'Manage individual agents',
806
+ description: 'Manage agents with agentic-flow integration (66+ agents, ultra-fast editing, ReasoningBank memory)',
795
807
  usage: 'claude-flow agent <action> [options]',
796
808
  commands: [
797
- { name: 'spawn', description: 'Create a new agent' },
798
- { name: 'list', description: 'List all active agents' },
809
+ { name: 'run <agent> "<task>"', description: 'Execute agent with multi-provider (NEW)' },
810
+ { name: 'agents', description: 'List all 66+ agentic-flow agents (NEW)' },
811
+ { name: 'booster edit <file>', description: 'Ultra-fast editing - 352x faster (NEW)' },
812
+ { name: 'booster batch <pattern>', description: 'Batch edit multiple files (NEW)' },
813
+ { name: 'memory init', description: 'Initialize ReasoningBank learning memory - 46% faster execution (NEW)' },
814
+ { name: 'memory status', description: 'Show ReasoningBank status and statistics (NEW)' },
815
+ { name: 'memory list', description: 'List stored ReasoningBank memories (NEW)' },
816
+ { name: 'config wizard', description: 'Interactive setup wizard (NEW)' },
817
+ { name: 'mcp start', description: 'Start MCP server (NEW)' },
818
+ { name: 'spawn', description: 'Create internal agent' },
819
+ { name: 'list', description: 'List active internal agents' },
799
820
  { name: 'info', description: 'Show agent details' },
800
821
  { name: 'terminate', description: 'Stop an agent' },
801
822
  { name: 'hierarchy', description: 'Manage agent hierarchies' },