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.
@@ -215,7 +215,17 @@ export const systemTools = [
215
215
  },
216
216
  agents: agentCounts,
217
217
  tasks: taskCounts,
218
- // requests: no MCP request tracking infrastructure yet — stays at stored value
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.58",
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",