claude-flow 3.5.26 → 3.5.27

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.26",
3
+ "version": "3.5.27",
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",
@@ -34,6 +34,9 @@ import { coordinationTools } from './mcp-tools/coordination-tools.js';
34
34
  import { browserTools } from './mcp-tools/browser-tools.js';
35
35
  // Phase 6: AgentDB v3 controller tools
36
36
  import { agentdbTools } from './mcp-tools/agentdb-tools.js';
37
+ // RuVector WASM tools
38
+ import { ruvllmWasmTools } from './mcp-tools/ruvllm-tools.js';
39
+ import { wasmAgentTools } from './mcp-tools/wasm-agent-tools.js';
37
40
  /**
38
41
  * MCP Tool Registry
39
42
  * Maps tool names to their handler functions
@@ -73,6 +76,9 @@ registerTools([
73
76
  ...browserTools,
74
77
  // Phase 6: AgentDB v3 controller tools
75
78
  ...agentdbTools,
79
+ // RuVector WASM tools
80
+ ...ruvllmWasmTools,
81
+ ...wasmAgentTools,
76
82
  ]);
77
83
  /**
78
84
  * MCP Client Error
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@claude-flow/cli",
3
- "version": "3.5.26",
3
+ "version": "3.5.27",
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",