claude-flow 3.7.0-alpha.40 → 3.7.0-alpha.42

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.40",
3
+ "version": "3.7.0-alpha.42",
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,19 @@ 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
- const rvf = await shell('npx', ['-y', RUVECTOR_PIN, 'rvf', 'create', rvfPath, '--kind', 'browser-session'], { timeout: 60000 });
101
+ // 1. RVF allocate.
102
+ // Issue #2015: ruvector@0.2.25's `rvf create` accepts only
103
+ // `-d/--dimension <n>` (required) and `-m/--metric <metric>`.
104
+ // The wrapper previously passed `--kind browser-session` and
105
+ // omitted `--dimension`, so commander hit the required-option
106
+ // check first and the wrapper returned `rvf create failed` for
107
+ // every call. The second round of the fix strips the bogus
108
+ // `--kind` flag — when round 1 only added `--dimension`, the
109
+ // next call surfaced `error: unknown option '--kind'`.
110
+ //
111
+ // 384 matches the MiniLM-L6 default used elsewhere in the
112
+ // toolchain (ONNX embedder + AgentDB vector indexes).
113
+ const rvf = await shell('npx', ['-y', RUVECTOR_PIN, 'rvf', 'create', rvfPath, '--dimension', '384'], { timeout: 60000 });
103
114
  if (!rvf.success)
104
115
  return fail('rvf create failed', { detail: rvf.error, stderr: rvf.stderr, sessionId, rvfPath });
105
116
  // 2. trajectory-begin
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@claude-flow/cli",
3
- "version": "3.7.0-alpha.40",
3
+ "version": "3.7.0-alpha.42",
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.14",
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",