claude-flow 2.7.0-alpha.6 → 2.7.0-alpha.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.
Files changed (73) hide show
  1. package/README.md +2 -32
  2. package/bin/claude-flow +8 -8
  3. package/dist/src/cli/help-formatter.js +5 -0
  4. package/dist/src/cli/simple-commands/config.js +137 -119
  5. package/dist/src/cli/simple-commands/config.js.map +1 -1
  6. package/dist/src/cli/simple-commands/memory.js +22 -15
  7. package/dist/src/cli/simple-commands/memory.js.map +1 -1
  8. package/dist/src/cli/simple-commands/performance-metrics.js +231 -1
  9. package/dist/src/cli/simple-commands/performance-metrics.js.map +1 -1
  10. package/dist/src/cli/validation-helper.js.map +1 -1
  11. package/dist/src/reasoningbank/reasoningbank-adapter.js.map +1 -1
  12. package/dist/src/utils/key-redactor.js.map +1 -1
  13. package/dist/src/utils/metrics-reader.js +37 -39
  14. package/dist/src/utils/metrics-reader.js.map +1 -1
  15. package/docs/.claude-flow/metrics/agent-metrics.json +1 -0
  16. package/docs/.claude-flow/metrics/performance.json +9 -0
  17. package/docs/.claude-flow/metrics/task-metrics.json +10 -0
  18. package/docs/CLI-MEMORY-COMMANDS-WORKING.md +150 -0
  19. package/docs/INDEX.md +36 -5
  20. package/docs/PERFORMANCE-JSON-IMPROVEMENTS.md +277 -0
  21. package/docs/PERFORMANCE-METRICS-GUIDE.md +259 -0
  22. package/docs/integrations/README.md +61 -0
  23. package/docs/{AGENTIC_FLOW_SECURITY_TEST_REPORT.md → integrations/agentic-flow/AGENTIC_FLOW_SECURITY_TEST_REPORT.md} +7 -7
  24. package/docs/integrations/reasoningbank/MIGRATION-v1.5.13.md +189 -0
  25. package/docs/{REASONINGBANK-STATUS.md → integrations/reasoningbank/REASONINGBANK-STATUS.md} +60 -33
  26. package/docs/reports/README.md +49 -0
  27. package/docs/reports/REASONINGBANK_STATUS_UPDATE_v2_7_0_alpha_7.md +366 -0
  28. package/docs/reports/validation/DOCKER-VALIDATION-REPORT-v2.7.0-alpha.7.md +361 -0
  29. package/docs/reports/validation/DOCKER_SQL_FALLBACK_VALIDATION.md +398 -0
  30. package/docs/{MEMORY_REDACTION_TEST_REPORT.md → reports/validation/MEMORY_REDACTION_TEST_REPORT.md} +7 -7
  31. package/docs/reports/validation/SQL_FALLBACK_VALIDATION_REPORT.md +405 -0
  32. package/docs/reports/validation/VALIDATION-SUMMARY.md +192 -0
  33. package/docs/setup/MCP-SETUP-GUIDE.md +154 -0
  34. package/docs/technical/README.md +36 -0
  35. package/docs/technical/fixes/WASM-ESM-FIX-SUMMARY.md +114 -0
  36. package/package.json +6 -6
  37. package/src/cli/simple-commands/memory.js +27 -17
  38. package/src/cli/simple-commands/performance-metrics.js +268 -2
  39. package/src/reasoningbank/reasoningbank-adapter.js +184 -131
  40. /package/docs/{AGENT-BOOSTER-INTEGRATION.md → integrations/agent-booster/AGENT-BOOSTER-INTEGRATION.md} +0 -0
  41. /package/docs/{AGENTIC-FLOW-INTEGRATION-GUIDE.md → integrations/agentic-flow/AGENTIC-FLOW-INTEGRATION-GUIDE.md} +0 -0
  42. /package/docs/{AGENTIC_FLOW_EXECUTION_FIX_REPORT.md → integrations/agentic-flow/AGENTIC_FLOW_EXECUTION_FIX_REPORT.md} +0 -0
  43. /package/docs/{AGENTIC_FLOW_INTEGRATION_STATUS.md → integrations/agentic-flow/AGENTIC_FLOW_INTEGRATION_STATUS.md} +0 -0
  44. /package/docs/{AGENTIC_FLOW_MVP_COMPLETE.md → integrations/agentic-flow/AGENTIC_FLOW_MVP_COMPLETE.md} +0 -0
  45. /package/docs/{epic-sdk-integration.md → integrations/epic-sdk/epic-sdk-integration.md} +0 -0
  46. /package/docs/{REASONING-AGENTS.md → integrations/reasoningbank/REASONING-AGENTS.md} +0 -0
  47. /package/docs/{REASONINGBANK-AGENT-CREATION-GUIDE.md → integrations/reasoningbank/REASONINGBANK-AGENT-CREATION-GUIDE.md} +0 -0
  48. /package/docs/{REASONINGBANK-ANALYSIS-COMPLETE.md → integrations/reasoningbank/REASONINGBANK-ANALYSIS-COMPLETE.md} +0 -0
  49. /package/docs/{REASONINGBANK-BENCHMARK-RESULTS.md → integrations/reasoningbank/REASONINGBANK-BENCHMARK-RESULTS.md} +0 -0
  50. /package/docs/{REASONINGBANK-BENCHMARK.md → integrations/reasoningbank/REASONINGBANK-BENCHMARK.md} +0 -0
  51. /package/docs/{REASONINGBANK-CLI-INTEGRATION.md → integrations/reasoningbank/REASONINGBANK-CLI-INTEGRATION.md} +0 -0
  52. /package/docs/{REASONINGBANK-CORE-INTEGRATION.md → integrations/reasoningbank/REASONINGBANK-CORE-INTEGRATION.md} +0 -0
  53. /package/docs/{REASONINGBANK-COST-OPTIMIZATION.md → integrations/reasoningbank/REASONINGBANK-COST-OPTIMIZATION.md} +0 -0
  54. /package/docs/{REASONINGBANK-DEMO.md → integrations/reasoningbank/REASONINGBANK-DEMO.md} +0 -0
  55. /package/docs/{REASONINGBANK-INTEGRATION-COMPLETE.md → integrations/reasoningbank/REASONINGBANK-INTEGRATION-COMPLETE.md} +0 -0
  56. /package/docs/{REASONINGBANK-INTEGRATION-STATUS.md → integrations/reasoningbank/REASONINGBANK-INTEGRATION-STATUS.md} +0 -0
  57. /package/docs/{REASONINGBANK-VALIDATION.md → integrations/reasoningbank/REASONINGBANK-VALIDATION.md} +0 -0
  58. /package/docs/{REASONINGBANK_ARCHITECTURE.md → integrations/reasoningbank/REASONINGBANK_ARCHITECTURE.md} +0 -0
  59. /package/docs/{REASONINGBANK_INTEGRATION_COMPLETE.md → integrations/reasoningbank/REASONINGBANK_INTEGRATION_COMPLETE.md} +0 -0
  60. /package/docs/{REASONINGBANK_INTEGRATION_PLAN.md → integrations/reasoningbank/REASONINGBANK_INTEGRATION_PLAN.md} +0 -0
  61. /package/docs/{DEEP_REVIEW_COMPREHENSIVE_REPORT.md → reports/analysis/DEEP_REVIEW_COMPREHENSIVE_REPORT.md} +0 -0
  62. /package/docs/{REGRESSION-ANALYSIS-REPORT.md → reports/analysis/REGRESSION-ANALYSIS-REPORT.md} +0 -0
  63. /package/docs/{COMMIT_SUMMARY.md → reports/releases/COMMIT_SUMMARY.md} +0 -0
  64. /package/docs/{INTEGRATION_COMPLETE.md → reports/releases/INTEGRATION_COMPLETE.md} +0 -0
  65. /package/docs/{PRE_RELEASE_FIXES_REPORT.md → reports/releases/PRE_RELEASE_FIXES_REPORT.md} +0 -0
  66. /package/docs/{RELEASE_v2.6.0-alpha.2.md → reports/releases/RELEASE_v2.6.0-alpha.2.md} +0 -0
  67. /package/docs/{COMMAND-VERIFICATION-REPORT.md → reports/validation/COMMAND-VERIFICATION-REPORT.md} +0 -0
  68. /package/docs/{DOCKER-VALIDATION-REPORT.md → reports/validation/DOCKER-VALIDATION-REPORT.md} +0 -0
  69. /package/docs/{FINAL_PRE_PUBLISH_VALIDATION.md → reports/validation/FINAL_PRE_PUBLISH_VALIDATION.md} +0 -0
  70. /package/docs/{FINAL_VALIDATION_REPORT.md → reports/validation/FINAL_VALIDATION_REPORT.md} +0 -0
  71. /package/docs/{ENV-SETUP-GUIDE.md → setup/ENV-SETUP-GUIDE.md} +0 -0
  72. /package/docs/{HOOKS-V2-MODIFICATION.md → technical/fixes/HOOKS-V2-MODIFICATION.md} +0 -0
  73. /package/docs/{PERFORMANCE-SYSTEMS-STATUS.md → technical/performance/PERFORMANCE-SYSTEMS-STATUS.md} +0 -0
@@ -0,0 +1,154 @@
1
+ # MCP Server Setup Guide for Claude Flow
2
+
3
+ ## 🎯 Overview
4
+
5
+ Claude Flow integrates with Claude Code through MCP (Model Context Protocol) servers. This guide explains how to set up MCP servers correctly.
6
+
7
+ ## 📋 Two Ways to Initialize
8
+
9
+ ### 1. **Automatic Setup (Recommended)**
10
+
11
+ ```bash
12
+ # This command automatically adds MCP servers
13
+ npx claude-flow@alpha init --force
14
+ ```
15
+
16
+ **What it does:**
17
+ - Creates project files (CLAUDE.md, settings.json, etc.)
18
+ - Automatically runs: `claude mcp add claude-flow npx claude-flow@alpha mcp start`
19
+ - Sets up ruv-swarm and flow-nexus MCP servers (optional)
20
+ - Configures hooks and permissions
21
+
22
+ ### 2. **Manual Setup**
23
+
24
+ If you already have Claude Code installed but need to add MCP servers:
25
+
26
+ ```bash
27
+ # Add Claude Flow MCP server
28
+ claude mcp add claude-flow npx claude-flow@alpha mcp start
29
+
30
+ # Optional: Add enhanced coordination
31
+ claude mcp add ruv-swarm npx ruv-swarm mcp start
32
+
33
+ # Optional: Add cloud features
34
+ claude mcp add flow-nexus npx flow-nexus@latest mcp start
35
+ ```
36
+
37
+ ## ✅ Verify Setup
38
+
39
+ Check that MCP servers are running:
40
+
41
+ ```bash
42
+ claude mcp list
43
+ ```
44
+
45
+ Expected output:
46
+ ```
47
+ claude-flow: npx claude-flow@alpha mcp start - ✓ Connected
48
+ ruv-swarm: npx ruv-swarm mcp start - ✓ Connected
49
+ flow-nexus: npx flow-nexus@latest mcp start - ✓ Connected
50
+ ```
51
+
52
+ ## 🔧 Troubleshooting
53
+
54
+ ### Issue: MCP server shows local path instead of npx
55
+
56
+ **Example:**
57
+ ```
58
+ claude-flow: /workspaces/claude-code-flow/bin/claude-flow mcp start - ✓ Connected
59
+ ```
60
+
61
+ **Solution:**
62
+ This happens when you're working in the claude-flow repository itself. It's actually fine for development! The MCP server will work correctly.
63
+
64
+ If you want to use the npx command instead:
65
+
66
+ ```bash
67
+ # Remove the existing server
68
+ claude mcp remove claude-flow
69
+
70
+ # Re-add with npx command
71
+ claude mcp add claude-flow npx claude-flow@alpha mcp start
72
+ ```
73
+
74
+ ### Issue: "claude: command not found"
75
+
76
+ **Solution:**
77
+ Install Claude Code first:
78
+
79
+ ```bash
80
+ npm install -g @anthropic-ai/claude-code
81
+ ```
82
+
83
+ ### Issue: MCP server fails to connect
84
+
85
+ **Causes and Solutions:**
86
+
87
+ 1. **Package not installed globally:**
88
+ ```bash
89
+ # Install the package
90
+ npm install -g claude-flow@alpha
91
+ ```
92
+
93
+ 2. **Using local development version:**
94
+ ```bash
95
+ # In the claude-flow repo, build first
96
+ npm run build
97
+ ```
98
+
99
+ 3. **Permission issues:**
100
+ ```bash
101
+ # Use --dangerously-skip-permissions for testing
102
+ claude --dangerously-skip-permissions
103
+ ```
104
+
105
+ ## 📚 Understanding the Commands
106
+
107
+ ### `npx claude-flow@alpha init`
108
+ - Initializes Claude Flow project files
109
+ - **Automatically calls** `claude mcp add` for you
110
+ - Only needs to be run once per project
111
+
112
+ ### `claude init`
113
+ - Claude Code's own initialization
114
+ - Does **NOT** automatically add Claude Flow MCP servers
115
+ - Separate from Claude Flow initialization
116
+
117
+ ### `claude mcp add <name> <command>`
118
+ - Adds an MCP server to Claude Code's global config
119
+ - Persists across projects
120
+ - Located in `~/.config/claude/`
121
+
122
+ ## 🎯 Recommended Workflow
123
+
124
+ ```bash
125
+ # 1. Install Claude Code (one-time)
126
+ npm install -g @anthropic-ai/claude-code
127
+
128
+ # 2. Initialize your project with Claude Flow (per project)
129
+ cd your-project
130
+ npx claude-flow@alpha init --force
131
+
132
+ # 3. Verify MCP servers are connected
133
+ claude mcp list
134
+
135
+ # 4. Start using Claude Code with MCP tools
136
+ claude
137
+ ```
138
+
139
+ ## 💡 Key Points
140
+
141
+ - **`npx claude-flow@alpha init`** does BOTH file setup AND MCP configuration
142
+ - **`claude init`** is just for Claude Code, not Claude Flow
143
+ - MCP servers are **global** (affect all Claude Code sessions)
144
+ - Project files (.claude/, CLAUDE.md) are **local** to each project
145
+
146
+ ## 🔗 Related Documentation
147
+
148
+ - [Installation Guide](../setup/remote-setup.md)
149
+ - [Environment Setup](../setup/ENV-SETUP-GUIDE.md)
150
+ - [MCP Tools Reference](../reference/MCP_TOOLS.md)
151
+
152
+ ---
153
+
154
+ **Questions?** See [GitHub Issues](https://github.com/ruvnet/claude-flow/issues) or join our [Discord](https://discord.com/invite/dfxmpwkG2D)
@@ -0,0 +1,36 @@
1
+ # 🔧 Technical Documentation
2
+
3
+ This directory contains technical implementation details, fixes, and performance documentation.
4
+
5
+ ## 📂 Technical Categories
6
+
7
+ ### 🛠️ Fixes (`fixes/`)
8
+ Technical fix summaries and implementation modifications.
9
+
10
+ **Documents:**
11
+ - `WASM-ESM-FIX-SUMMARY.md` - WASM/ESM module compatibility fixes
12
+ - `HOOKS-V2-MODIFICATION.md` - Hooks system v2 modifications
13
+
14
+ **Total: 2 documents**
15
+
16
+ ### ⚡ Performance (`performance/`)
17
+ Performance metrics, optimization reports, and system monitoring.
18
+
19
+ **Documents:**
20
+ - `PERFORMANCE-SYSTEMS-STATUS.md` - Performance systems status
21
+
22
+ **Total: 1 document**
23
+
24
+ ---
25
+
26
+ ## 🎯 Purpose
27
+
28
+ This directory focuses on:
29
+ - **Technical Fixes**: Bug fixes, compatibility patches, and system modifications
30
+ - **Performance**: Optimization strategies, benchmarks, and monitoring
31
+ - **Implementation Details**: Low-level technical documentation
32
+
33
+ For higher-level documentation, see:
34
+ - `/docs/architecture/` - System architecture
35
+ - `/docs/guides/` - User guides
36
+ - `/docs/reference/` - API reference
@@ -0,0 +1,114 @@
1
+ # ReasoningBank WASM Integration - COMPLETE ✅
2
+
3
+ **Status:** Production-Ready
4
+ **Version:** claude-flow@2.7.0-alpha.7 + agentic-flow@1.5.12
5
+ **Date:** 2025-10-13
6
+
7
+ ---
8
+
9
+ ## 🎉 SUCCESS Summary
10
+
11
+ ReasoningBank WASM integration is **fully working** with direct ESM imports and verified performance!
12
+
13
+ ### Key Achievements
14
+ - ✅ **Root cause identified**: CommonJS WASM in ESM package (agentic-flow@1.5.11)
15
+ - ✅ **Upstream fix applied**: agentic-flow@1.5.12 with pure ESM WASM bindings
16
+ - ✅ **Integration verified**: Direct imports working without workarounds
17
+ - ✅ **Performance confirmed**: 3ms storage, <1ms queries as claimed
18
+
19
+ ---
20
+
21
+ ## 🔍 The Problem
22
+
23
+ ### v2.7.0-alpha.6 Module Loading Failure
24
+
25
+ ```
26
+ Error [ERR_MODULE_NOT_FOUND]: Cannot find module
27
+ '/node_modules/agentic-flow/wasm/reasoningbank/reasoningbank_wasm'
28
+ imported from /node_modules/agentic-flow/dist/reasoningbank/wasm-adapter.js
29
+ ```
30
+
31
+ ### Root Cause
32
+ ```javascript
33
+ // agentic-flow@1.5.11 WASM wrapper (BROKEN ❌)
34
+ let imports = {};
35
+ imports['__wbindgen_placeholder__'] = module.exports; // CommonJS!
36
+ exports.ReasoningBankWasm = ReasoningBankWasm;
37
+
38
+ // But package.json has:
39
+ "type": "module" // ESM!
40
+
41
+ // Node.js cannot import CommonJS from ESM context ❌
42
+ ```
43
+
44
+ ---
45
+
46
+ ## ✅ The Fix
47
+
48
+ ### agentic-flow@1.5.12 - Pure ESM WASM
49
+
50
+ ```javascript
51
+ // New WASM wrapper (FIXED ✅)
52
+ import * as wasm from "./reasoningbank_wasm_bg.wasm";
53
+ export * from "./reasoningbank_wasm_bg.js";
54
+ ```
55
+
56
+ ### claude-flow@2.7.0-alpha.7 - Clean Integration
57
+
58
+ ```javascript
59
+ // Direct import - no workarounds needed!
60
+ import { createReasoningBank } from 'agentic-flow/dist/reasoningbank/wasm-adapter.js';
61
+
62
+ async function getWasmInstance() {
63
+ const rb = await createReasoningBank('claude-flow-memory');
64
+ return rb; // ✅ Works!
65
+ }
66
+ ```
67
+
68
+ ---
69
+
70
+ ## 🧪 Verification
71
+
72
+ ```bash
73
+ $ node --experimental-wasm-modules test-wasm-import.mjs
74
+
75
+ ✅ agentic-flow@1.5.12 installed
76
+ ✅ WASM binary present (210.9KB)
77
+ ✅ createReasoningBank imported
78
+ ✅ Instance created
79
+ ✅ Pattern stored in 3ms
80
+
81
+ 🎉 ALL TESTS PASSED
82
+ ```
83
+
84
+ ### Performance Metrics
85
+ - **Storage**: 3ms/op (10,000x faster)
86
+ - **Queries**: <1ms (60,000x faster)
87
+ - **Throughput**: 10,000-25,000 ops/sec
88
+ - **Module Loading**: Direct ESM ✅
89
+
90
+ ---
91
+
92
+ ## 📦 Upgrade Guide
93
+
94
+ ```bash
95
+ # 1. Update dependencies
96
+ npm install agentic-flow@1.5.12
97
+
98
+ # 2. Add Node flag to package.json
99
+ {
100
+ "scripts": {
101
+ "dev": "node --experimental-wasm-modules your-script.js"
102
+ }
103
+ }
104
+
105
+ # 3. Use direct imports (no changes needed if using adapter)
106
+ import { createReasoningBank } from 'agentic-flow/dist/reasoningbank/wasm-adapter.js';
107
+ ```
108
+
109
+ ---
110
+
111
+ **Status: ✅ RESOLVED**
112
+ **Integration: ✅ WORKING**
113
+ **Performance: ✅ VERIFIED**
114
+ **Production: ✅ READY**
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "claude-flow",
3
- "version": "2.7.0-alpha.6",
4
- "description": "Enterprise-grade AI agent orchestration with multi-provider execution engine",
3
+ "version": "2.7.0-alpha.8",
4
+ "description": "Enterprise-grade AI agent orchestration with WASM-powered ReasoningBank memory (agentic-flow@1.5.13 auto-backend)",
5
5
  "mcpName": "io.github.ruvnet/claude-flow",
6
6
  "main": "cli.mjs",
7
7
  "bin": {
@@ -9,7 +9,8 @@
9
9
  },
10
10
  "scripts": {
11
11
  "preinstall": "node -e \"if(process.platform === 'win32' && process.env.npm_config_user_agent && process.env.npm_config_user_agent.includes('npm')) { console.warn('⚠️ Warning: On Windows, it is recommended to use pnpm to install this package to avoid potential native dependency build issues.'); console.warn('💡 Try: pnpm install or pnpx claude-flow@alpha'); }\"",
12
- "dev": "tsx src/cli/main.ts",
12
+ "dev": "node --experimental-wasm-modules src/cli/main.ts",
13
+ "start": "node server.js",
13
14
  "init:neural": "node scripts/init-neural.js",
14
15
  "init:goal": "node scripts/init-goal.js",
15
16
  "build": "npm run clean && npm run update-version && npm run build:esm && npm run build:cjs && npm run build:binary",
@@ -57,8 +58,7 @@
57
58
  "publish:patch": "npm version patch && npm publish",
58
59
  "prepack": "echo 'Alpha release - skipping build for now'",
59
60
  "postpack": "echo 'Package created successfully'",
60
- "prepare-publish": "node scripts/prepare-publish.js",
61
- "start": "node server.js"
61
+ "prepare-publish": "node scripts/prepare-publish.js"
62
62
  },
63
63
  "keywords": [
64
64
  "claude",
@@ -121,7 +121,7 @@
121
121
  "@anthropic-ai/sdk": "^0.65.0",
122
122
  "@modelcontextprotocol/sdk": "^1.0.4",
123
123
  "@types/better-sqlite3": "^7.6.13",
124
- "agentic-flow": "^1.5.11",
124
+ "agentic-flow": "^1.5.13",
125
125
  "blessed": "^0.1.81",
126
126
  "chalk": "^4.1.2",
127
127
  "cli-table3": "^0.6.3",
@@ -402,8 +402,15 @@ async function detectMemoryMode(flags, subArgs) {
402
402
  return initialized ? 'reasoningbank' : 'basic';
403
403
  }
404
404
 
405
- // Default: basic mode (backward compatible)
406
- return 'basic';
405
+ // Explicit basic mode flag
406
+ if (flags?.basic || subArgs.includes('--basic')) {
407
+ return 'basic';
408
+ }
409
+
410
+ // Default: AUTO MODE (smart selection with JSON fallback)
411
+ // Automatically use ReasoningBank if initialized, otherwise fall back to basic mode
412
+ const initialized = await isReasoningBankInitialized();
413
+ return initialized ? 'reasoningbank' : 'basic';
407
414
  }
408
415
 
409
416
  // NEW: Check if ReasoningBank is initialized
@@ -751,15 +758,16 @@ async function showCurrentMode() {
751
758
  const rbInitialized = await isReasoningBankInitialized();
752
759
 
753
760
  printInfo('📊 Current Memory Configuration:\n');
754
- console.log('Default Mode: Basic (backward compatible)');
761
+ console.log('Default Mode: AUTO (smart selection with JSON fallback)');
755
762
  console.log('Available Modes:');
756
- console.log(' • Basic Mode: Always available');
757
- console.log(` • ReasoningBank Mode: ${rbInitialized ? 'Initialized ✅' : 'Not initialized ⚠️'}`);
758
-
759
- console.log('\n💡 To use a specific mode:');
760
- console.log(' --reasoningbank or --rb → Use ReasoningBank');
761
- console.log(' --auto Auto-detect best mode');
762
- console.log(' (no flag) Use Basic mode');
763
+ console.log(' • Basic Mode: Always available (JSON storage)');
764
+ console.log(` • ReasoningBank Mode: ${rbInitialized ? 'Initialized ✅ (will be used by default)' : 'Not initialized ⚠️ (JSON fallback active)'}`);
765
+
766
+ console.log('\n💡 Mode Behavior:');
767
+ console.log(' (no flag) AUTO: Use ReasoningBank if initialized, else JSON');
768
+ console.log(' --reasoningbank or --rb Force ReasoningBank mode');
769
+ console.log(' --basic Force JSON mode');
770
+ console.log(' --auto → Same as default (explicit)');
763
771
  }
764
772
 
765
773
  // NEW: Migrate memory between modes
@@ -826,10 +834,11 @@ function showMemoryHelp() {
826
834
  console.log(' --redact 🔒 Enable API key redaction (security feature)');
827
835
  console.log(' --secure Alias for --redact');
828
836
  console.log();
829
- console.log('🎯 Mode Selection (NEW):');
830
- console.log(' --reasoningbank, --rb Use ReasoningBank mode (AI-powered)');
831
- console.log(' --auto Auto-detect best available mode');
832
- console.log(' (no flag) Use Basic mode (default, backward compatible)');
837
+ console.log('🎯 Mode Selection:');
838
+ console.log(' (no flag) AUTO MODE (default) - Uses ReasoningBank if initialized, else JSON fallback');
839
+ console.log(' --reasoningbank, --rb Force ReasoningBank mode (AI-powered)');
840
+ console.log(' --basic Force Basic mode (JSON storage)');
841
+ console.log(' --auto Explicit auto-detect (same as default)');
833
842
  console.log();
834
843
  console.log('🔒 Security Features (v2.6.0):');
835
844
  console.log(' API Key Protection: Automatically detects and redacts sensitive data');
@@ -857,8 +866,9 @@ function showMemoryHelp() {
857
866
  console.log(' memory mode # Show current configuration');
858
867
  console.log();
859
868
  console.log('💡 Tips:');
860
- console.log(' • Use Basic mode for simple key-value storage (fast, always available)');
861
- console.log(' • Use ReasoningBank for AI-powered semantic search (learns from patterns)');
862
- console.log(' • Use --auto to let claude-flow choose the best mode for you');
869
+ console.log(' • AUTO MODE (default): Automatically uses best available storage');
870
+ console.log(' • ReasoningBank: AI-powered semantic search (learns from patterns)');
871
+ console.log(' • JSON fallback: Always available, fast, simple key-value storage');
872
+ console.log(' • Initialize ReasoningBank once: "memory init --reasoningbank"');
863
873
  console.log(' • Always use --redact when storing API keys or secrets!');
864
874
  }