claude-flow 3.5.58 → 3.5.59
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 +1 -1
- package/v3/@claude-flow/cli/dist/src/mcp-server.js +3 -0
- package/v3/@claude-flow/cli/dist/src/mcp-tools/daa-tools.js +25 -0
- package/v3/@claude-flow/cli/dist/src/mcp-tools/github-tools.d.ts +2 -6
- package/v3/@claude-flow/cli/dist/src/mcp-tools/github-tools.js +277 -121
- package/v3/@claude-flow/cli/dist/src/mcp-tools/hive-mind-tools.js +30 -0
- package/v3/@claude-flow/cli/dist/src/mcp-tools/hooks-tools.js +106 -12
- package/v3/@claude-flow/cli/dist/src/mcp-tools/neural-tools.js +177 -12
- package/v3/@claude-flow/cli/dist/src/mcp-tools/performance-tools.js +214 -11
- package/v3/@claude-flow/cli/dist/src/mcp-tools/request-tracker.d.ts +17 -0
- package/v3/@claude-flow/cli/dist/src/mcp-tools/request-tracker.js +27 -0
- package/v3/@claude-flow/cli/dist/src/mcp-tools/system-tools.js +11 -1
- package/v3/@claude-flow/cli/package.json +1 -1
|
@@ -215,7 +215,17 @@ export const systemTools = [
|
|
|
215
215
|
},
|
|
216
216
|
agents: agentCounts,
|
|
217
217
|
tasks: taskCounts,
|
|
218
|
-
|
|
218
|
+
requests: await (async () => {
|
|
219
|
+
try {
|
|
220
|
+
const { getRequestCounts } = await import('./request-tracker.js');
|
|
221
|
+
const live = getRequestCounts();
|
|
222
|
+
if (live.total > 0) {
|
|
223
|
+
return { total: live.total, success: live.success, errors: live.errors };
|
|
224
|
+
}
|
|
225
|
+
}
|
|
226
|
+
catch { /* tracker not available — fall back to stored value */ }
|
|
227
|
+
return store.requests;
|
|
228
|
+
})(),
|
|
219
229
|
uptime: Date.now() - new Date(store.startTime).getTime(),
|
|
220
230
|
lastCheck: new Date().toISOString(),
|
|
221
231
|
};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@claude-flow/cli",
|
|
3
|
-
"version": "3.5.
|
|
3
|
+
"version": "3.5.59",
|
|
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",
|