claude-flow 3.7.0-alpha.40 → 3.7.0-alpha.41
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.7.0-alpha.
|
|
3
|
+
"version": "3.7.0-alpha.41",
|
|
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",
|
|
@@ -98,8 +98,13 @@ export const browserSessionTools = [
|
|
|
98
98
|
const sessionId = explicitSession ?? makeSessionId(input.task);
|
|
99
99
|
const dir = input.rvf_dir ?? (await ensureSessionsDir());
|
|
100
100
|
const rvfPath = path.join(dir, `${sessionId}.rvf`);
|
|
101
|
-
// 1. RVF allocate
|
|
102
|
-
|
|
101
|
+
// 1. RVF allocate.
|
|
102
|
+
// Issue #2015: ruvector@0.2.25 requires `-d, --dimension <n>` for
|
|
103
|
+
// `rvf create`. Without it the command exits non-zero and the
|
|
104
|
+
// tool returned `{ success: false, error: "rvf create failed" }`
|
|
105
|
+
// for every invocation. 384 matches the MiniLM-L6 default used by
|
|
106
|
+
// the rest of the toolchain (ONNX embedder + AgentDB indexes).
|
|
107
|
+
const rvf = await shell('npx', ['-y', RUVECTOR_PIN, 'rvf', 'create', rvfPath, '--kind', 'browser-session', '--dimension', '384'], { timeout: 60000 });
|
|
103
108
|
if (!rvf.success)
|
|
104
109
|
return fail('rvf create failed', { detail: rvf.error, stderr: rvf.stderr, sessionId, rvfPath });
|
|
105
110
|
// 2. trajectory-begin
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@claude-flow/cli",
|
|
3
|
-
"version": "3.7.0-alpha.
|
|
3
|
+
"version": "3.7.0-alpha.41",
|
|
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",
|
|
@@ -109,7 +109,7 @@
|
|
|
109
109
|
"@claude-flow/codex": "^3.0.0-alpha.8",
|
|
110
110
|
"@claude-flow/embeddings": "^3.0.0-alpha.17",
|
|
111
111
|
"@claude-flow/guidance": "^3.0.0-alpha.1",
|
|
112
|
-
"@claude-flow/memory": "^3.0.0-alpha.
|
|
112
|
+
"@claude-flow/memory": "^3.0.0-alpha.16",
|
|
113
113
|
"@claude-flow/plugin-gastown-bridge": "^0.1.3",
|
|
114
114
|
"@claude-flow/security": "^3.0.0-alpha.1",
|
|
115
115
|
"@ruvector/attention": "^0.1.32",
|