claude-flow 3.5.8 → 3.5.10
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.
|
|
3
|
+
"version": "3.5.10",
|
|
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",
|
|
@@ -340,30 +340,10 @@ function generateHooksConfig(config) {
|
|
|
340
340
|
},
|
|
341
341
|
];
|
|
342
342
|
}
|
|
343
|
-
// SubagentStart
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
{
|
|
348
|
-
type: 'command',
|
|
349
|
-
command: hookHandlerCmd('status'),
|
|
350
|
-
timeout: 3000,
|
|
351
|
-
},
|
|
352
|
-
],
|
|
353
|
-
},
|
|
354
|
-
];
|
|
355
|
-
// SubagentEnd — track agent completion for metrics
|
|
356
|
-
hooks.SubagentEnd = [
|
|
357
|
-
{
|
|
358
|
-
hooks: [
|
|
359
|
-
{
|
|
360
|
-
type: 'command',
|
|
361
|
-
command: hookHandlerCmd('post-task'),
|
|
362
|
-
timeout: 5000,
|
|
363
|
-
},
|
|
364
|
-
],
|
|
365
|
-
},
|
|
366
|
-
];
|
|
343
|
+
// NOTE: SubagentStart and SubagentEnd are NOT valid Claude Code hook events.
|
|
344
|
+
// Valid events: PreToolUse, PostToolUse, UserPromptSubmit, SessionStart,
|
|
345
|
+
// SessionEnd, Stop, PreCompact, Notification.
|
|
346
|
+
// Agent lifecycle tracking is handled via PostToolUse(Task) and claudeFlow.agentTeams.hooks.
|
|
367
347
|
// Notification — capture Claude Code notifications for logging
|
|
368
348
|
if (config.notification) {
|
|
369
349
|
hooks.Notification = [
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@claude-flow/cli",
|
|
3
|
-
"version": "3.5.
|
|
3
|
+
"version": "3.5.10",
|
|
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",
|