claude-flow 3.6.11 → 3.6.12

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.
@@ -1,5 +1,5 @@
1
1
  {
2
- "model": "claude-opus-4-6",
2
+ "model": "claude-opus-4-7",
3
3
  "customInstructions": "Follow the project's CLAUDE.md guidelines. Use concurrent execution for all operations. Prioritize v3 implementation with security-first development, 15-agent swarm coordination, phased performance optimization, and cross-platform helper automation.",
4
4
  "env": {
5
5
  "CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS": "1",
@@ -144,29 +144,7 @@
144
144
  ]
145
145
  }
146
146
  ],
147
- "SubagentStart": [
148
- {
149
- "hooks": [
150
- {
151
- "type": "command",
152
- "command": "node \"$CLAUDE_PROJECT_DIR/.claude/helpers/hook-handler.cjs\" status",
153
- "timeout": 3000
154
- }
155
- ]
156
- }
157
- ],
158
- "TeammateIdle": [
159
- {
160
- "hooks": [
161
- {
162
- "type": "command",
163
- "command": "node \"$CLAUDE_PROJECT_DIR/.claude/helpers/hook-handler.cjs\" post-task",
164
- "timeout": 5000
165
- }
166
- ]
167
- }
168
- ],
169
- "TaskCompleted": [
147
+ "SubagentStop": [
170
148
  {
171
149
  "hooks": [
172
150
  {
@@ -179,14 +157,14 @@
179
157
  ]
180
158
  },
181
159
  "attribution": {
182
- "commit": "Co-Authored-By: claude-flow <ruv@ruv.net>",
183
- "pr": "\ud83e\udd16 Generated with [claude-flow](https://github.com/ruvnet/claude-flow)"
160
+ "commit": "Co-Authored-By: RuFlo <ruv@ruv.net>",
161
+ "pr": "\ud83e\udd16 Generated with [RuFlo](https://github.com/ruvnet/ruflo)"
184
162
  },
185
163
  "claudeFlow": {
186
- "version": "3.5.2",
164
+ "version": "3.6.11",
187
165
  "enabled": true,
188
166
  "modelPreferences": {
189
- "default": "claude-opus-4-6",
167
+ "default": "claude-opus-4-7",
190
168
  "routing": "claude-haiku-4-5-20251001"
191
169
  },
192
170
  "agentTeams": {
@@ -286,20 +264,20 @@
286
264
  },
287
265
  "statusLine": {
288
266
  "type": "command",
289
- "command": "node \"$CLAUDE_PROJECT_DIR/.claude/helpers/statusline.cjs\""
267
+ "command": "sh -c 'exec node \"${CLAUDE_PROJECT_DIR:-.}/.claude/helpers/statusline.cjs\"'"
290
268
  },
291
269
  "mcpServers": {
292
270
  "claude-flow": {
293
- "command": "node",
271
+ "command": "npx",
294
272
  "args": [
295
- "/workspaces/claude-flow/v3/@claude-flow/cli/bin/cli.js",
273
+ "-y",
274
+ "ruflo@latest",
296
275
  "mcp",
297
276
  "start"
298
277
  ]
299
278
  }
300
279
  },
301
280
  "enabledMcpjsonServers": [
302
- "claude-flow",
303
- "ruv-swarm"
281
+ "claude-flow"
304
282
  ]
305
283
  }
package/README.md CHANGED
@@ -34,6 +34,8 @@ User --> Ruflo (CLI/MCP) --> Router --> Swarm --> Agents --> Memory --> LLM Prov
34
34
 
35
35
  ---
36
36
 
37
+ ![Ruflo Plugins](./ruflo-plugins.gif)
38
+
37
39
  ## Quick Start
38
40
 
39
41
  ### Claude Code Plugin (Recommended)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-flow",
3
- "version": "3.6.11",
3
+ "version": "3.6.12",
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,8 @@ User --> Ruflo (CLI/MCP) --> Router --> Swarm --> Agents --> Memory --> LLM Prov
34
34
 
35
35
  ---
36
36
 
37
+ ![Ruflo Plugins](./ruflo-plugins.gif)
38
+
37
39
  ## Quick Start
38
40
 
39
41
  ### Claude Code Plugin (Recommended)
@@ -40,9 +40,9 @@ export function generateMCPConfig(options) {
40
40
  const npmEnv = {
41
41
  npm_config_update_notifier: 'false',
42
42
  };
43
- // Claude Flow MCP server (core)
43
+ // Claude Flow MCP server (core) — uses ruflo wrapper for portable npm-resolved invocation
44
44
  if (config.claudeFlow) {
45
- mcpServers['claude-flow'] = createMCPServerEntry(['@claude-flow/cli@latest', 'mcp', 'start'], {
45
+ mcpServers['claude-flow'] = createMCPServerEntry(['ruflo@latest', 'mcp', 'start'], {
46
46
  ...npmEnv,
47
47
  CLAUDE_FLOW_MODE: 'v3',
48
48
  CLAUDE_FLOW_HOOKS_ENABLED: 'true',
@@ -76,7 +76,7 @@ export function generateMCPCommands(options) {
76
76
  const config = options.mcp;
77
77
  if (isWindows()) {
78
78
  if (config.claudeFlow) {
79
- commands.push('claude mcp add claude-flow -- cmd /c npx -y @claude-flow/cli@latest mcp start');
79
+ commands.push('claude mcp add claude-flow -- cmd /c npx -y ruflo@latest mcp start');
80
80
  }
81
81
  if (config.ruvSwarm) {
82
82
  commands.push('claude mcp add ruv-swarm -- cmd /c npx -y ruv-swarm mcp start');
@@ -87,7 +87,7 @@ export function generateMCPCommands(options) {
87
87
  }
88
88
  else {
89
89
  if (config.claudeFlow) {
90
- commands.push("claude mcp add claude-flow -- npx -y @claude-flow/cli@latest mcp start");
90
+ commands.push("claude mcp add claude-flow -- npx -y ruflo@latest mcp start");
91
91
  }
92
92
  if (config.ruvSwarm) {
93
93
  commands.push("claude mcp add ruv-swarm -- npx -y ruv-swarm mcp start");
@@ -29,10 +29,10 @@ export function generateSettings(options) {
29
29
  'Read(./.env.*)',
30
30
  ],
31
31
  };
32
- // Add claude-flow attribution for git commits and PRs
32
+ // Add RuFlo attribution for git commits and PRs
33
33
  settings.attribution = {
34
- commit: 'Co-Authored-By: claude-flow <ruv@ruv.net>',
35
- pr: '🤖 Generated with [claude-flow](https://github.com/ruvnet/claude-flow)',
34
+ commit: 'Co-Authored-By: RuFlo <ruv@ruv.net>',
35
+ pr: '🤖 Generated with [RuFlo](https://github.com/ruvnet/ruflo)',
36
36
  };
37
37
  // Note: Claude Code expects 'model' to be a string, not an object
38
38
  // Model preferences are stored in claudeFlow settings instead
@@ -57,7 +57,7 @@ export function generateSettings(options) {
57
57
  shell: platform.shell,
58
58
  },
59
59
  modelPreferences: {
60
- default: 'claude-opus-4-6',
60
+ default: 'claude-opus-4-7',
61
61
  routing: 'claude-haiku-4-5-20251001',
62
62
  },
63
63
  agentTeams: {
@@ -13,7 +13,7 @@ import type { InitOptions } from './types.js';
13
13
  /**
14
14
  * Generate optimized statusline script
15
15
  * Output format:
16
- * ▊ RuFlo V3.5 ● user │ ⎇ branch │ Opus 4.6 (1M context)
16
+ * ▊ RuFlo V3.6 ● user │ ⎇ branch │ Opus 4.7
17
17
  * ─────────────────────────────────────────────────────
18
18
  * 🏗️ DDD Domains [●●○○○] 2/5 ⚡ HNSW 150x
19
19
  * 🤖 Swarm ◉ [ 5/15] 👥 2 🪝 10/17 🟢 CVE 3/3 💾 4MB 🧠 63%
@@ -12,7 +12,7 @@
12
12
  /**
13
13
  * Generate optimized statusline script
14
14
  * Output format:
15
- * ▊ RuFlo V3.5 ● user │ ⎇ branch │ Opus 4.6 (1M context)
15
+ * ▊ RuFlo V3.6 ● user │ ⎇ branch │ Opus 4.7
16
16
  * ─────────────────────────────────────────────────────
17
17
  * 🏗️ DDD Domains [●●○○○] 2/5 ⚡ HNSW 150x
18
18
  * 🤖 Swarm ◉ [ 5/15] 👥 2 🪝 10/17 🟢 CVE 3/3 💾 4MB 🧠 63%
@@ -175,7 +175,7 @@ function getModelName() {
175
175
  const ts = usage[id] && usage[id].lastUsedAt ? new Date(usage[id].lastUsedAt).getTime() : 0;
176
176
  if (ts > latest) { latest = ts; modelId = id; }
177
177
  }
178
- if (modelId.includes('opus')) return 'Opus 4.6 (1M context)';
178
+ if (modelId.includes('opus')) return 'Opus 4.7';
179
179
  if (modelId.includes('sonnet')) return 'Sonnet 4.6';
180
180
  if (modelId.includes('haiku')) return 'Haiku 4.5';
181
181
  return modelId.split('-').slice(1, 3).join(' ');
@@ -191,7 +191,7 @@ function getModelName() {
191
191
  const settings = getSettings();
192
192
  if (settings && settings.model) {
193
193
  const m = settings.model;
194
- if (m.includes('opus')) return 'Opus 4.6 (1M context)';
194
+ if (m.includes('opus')) return 'Opus 4.7';
195
195
  if (m.includes('sonnet')) return 'Sonnet 4.6';
196
196
  if (m.includes('haiku')) return 'Haiku 4.5';
197
197
  }
@@ -639,7 +639,7 @@ function generateStatusline() {
639
639
 
640
640
  // Header
641
641
  // Read version from package.json
642
- let pkgVersion = '3.5';
642
+ let pkgVersion = '3.6';
643
643
  try {
644
644
  const pkgPath = path.join(CWD, 'node_modules', '@claude-flow', 'cli', 'package.json');
645
645
  if (fs.existsSync(pkgPath)) {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@claude-flow/cli",
3
- "version": "3.6.11",
3
+ "version": "3.6.12",
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",
@@ -1 +0,0 @@
1
- {"sessionId":"ea43bca2-cc37-44fb-97ff-f1c914a31fb1","pid":24292,"procStart":"Wed Apr 29 22:31:28 2026","acquiredAt":1777507213673}