claude-flow 2.7.8 → 2.7.9
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/bin/claude-flow +1 -1
- package/dist/src/cli/help-text.js +0 -10
- package/dist/src/cli/help-text.js.map +1 -1
- package/dist/src/cli/simple-cli.js +79 -173
- package/dist/src/cli/simple-cli.js.map +1 -1
- package/dist/src/core/version.js +2 -2
- package/dist/src/mcp/mcp-server.js +2 -1
- package/dist/src/mcp/mcp-server.js.map +1 -1
- package/dist/src/utils/metrics-reader.js +0 -10
- package/package.json +1 -1
- package/src/cli/help-text.js +0 -10
- package/src/mcp/mcp-server.js +2 -1
|
@@ -166,14 +166,4 @@ export class MetricsReader {
|
|
|
166
166
|
}
|
|
167
167
|
}
|
|
168
168
|
|
|
169
|
-
//# sourceMappingURL=metrics-reader.js.map processCount: 0,
|
|
170
|
-
orchestratorRunning: false,
|
|
171
|
-
port: null,
|
|
172
|
-
connections: 0
|
|
173
|
-
};
|
|
174
|
-
}
|
|
175
|
-
}
|
|
176
|
-
};
|
|
177
|
-
export { MetricsReader };
|
|
178
|
-
|
|
179
169
|
//# sourceMappingURL=metrics-reader.js.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-flow",
|
|
3
|
-
"version": "2.7.
|
|
3
|
+
"version": "2.7.9",
|
|
4
4
|
"description": "Enterprise-grade AI agent orchestration with WASM-powered ReasoningBank memory and AgentDB vector database (always uses latest agentic-flow)",
|
|
5
5
|
"mcpName": "io.github.ruvnet/claude-flow",
|
|
6
6
|
"main": "cli.mjs",
|
package/src/cli/help-text.js
CHANGED
|
@@ -11,16 +11,6 @@ export { VERSION };
|
|
|
11
11
|
export const MAIN_HELP = `
|
|
12
12
|
🌊 Claude-Flow v${VERSION} - Enterprise-Grade AI Agent Orchestration Platform
|
|
13
13
|
|
|
14
|
-
🚀 v2.7.6 - MCP Stdio Fix & Production Ready
|
|
15
|
-
|
|
16
|
-
🔥 NEW IN v2.7.6:
|
|
17
|
-
✅ MCP Server Stdio Mode Fixed - Clean JSON-RPC protocol on stdout (#835)
|
|
18
|
-
🔧 Smart Logging Helpers - Auto-route output based on mode (stdio vs HTTP)
|
|
19
|
-
🐛 Protocol Corruption Resolved - Now compatible with standard MCP clients
|
|
20
|
-
📦 AgentDB Integration - 150x faster vector search with persistent memory
|
|
21
|
-
🧠 ReasoningBank Support - Self-learning with trajectory tracking
|
|
22
|
-
🎯 Backward Compatible - HTTP mode unchanged, stdio mode now works correctly
|
|
23
|
-
|
|
24
14
|
🎯 ENTERPRISE FEATURES:
|
|
25
15
|
• Complete ruv-swarm integration with 90+ MCP tools
|
|
26
16
|
• Flow Nexus cloud platform with distributed sandboxes
|
package/src/mcp/mcp-server.js
CHANGED
|
@@ -11,6 +11,7 @@ import { fileURLToPath } from 'url';
|
|
|
11
11
|
import { EnhancedMemory } from '../memory/enhanced-memory.js';
|
|
12
12
|
// Use the same memory system that npx commands use - singleton instance
|
|
13
13
|
import { memoryStore } from '../memory/fallback-store.js';
|
|
14
|
+
import { VERSION } from '../core/version.js';
|
|
14
15
|
|
|
15
16
|
// Initialize agent tracker
|
|
16
17
|
await import('./implementations/agent-tracker.js').catch(() => {
|
|
@@ -63,7 +64,7 @@ function resolveLegacyAgentType(legacyType) {
|
|
|
63
64
|
|
|
64
65
|
class ClaudeFlowMCPServer {
|
|
65
66
|
constructor() {
|
|
66
|
-
this.version =
|
|
67
|
+
this.version = VERSION; // Use version from package.json
|
|
67
68
|
this.memoryStore = memoryStore; // Use shared singleton instance
|
|
68
69
|
// Use the same memory system that already works
|
|
69
70
|
this.capabilities = {
|