UNPKG

claude-flow

Version:

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

183 lines (167 loc) 6.88 kB
#!/usr/bin/env node // cost-summary — programmatic single-shot dump of all cost-tracking data. // Other plugins / scripts can shell out: `node summary.mjs --format json` and // parse the result. This is the plugin-local equivalent of the MCP tool // `cost_summary` that ADR-0002 considered but explicitly deferred (would // require modifying @claude-flow/cli source — out of scope for this plugin). // // Output (JSON shape — stable contract for consumers): // { // exportedAt: ISO, // total_cost_usd: number, // sessionCount: number, // conversationCount: number, // alias of sessionCount // byTier: { haiku, sonnet, opus, unknown }: USD, // byModel: { <model>: { tier, cost_usd, messages, ... } }, // topSession: { sessionId, total_cost_usd, messageCount }, // budget: null | { budget_usd, setAt, utilization, level }, // federation: { eventCount, peerCount, totalUsd24h } // } // // Markdown form is also available (--format markdown, the default). import { spawnSync } from 'node:child_process'; // ADR-100 / #1748 Issue 3 — CLI_CORE=1 routes to lite cli-core (~2s cold-cache). // summary only does list/retrieve across cost-tracking + federation-spend // namespaces; substring search is unused so the JSON backend is sufficient. const CLI_PKG = process.env.CLI_CORE === '1' ? '@claude-flow/cli-core@alpha' : '@claude-flow/cli@latest'; const NS = process.env.SUMMARY_NAMESPACE || 'cost-tracking'; const FED_NS = process.env.SUMMARY_FED_NAMESPACE || 'federation-spend'; function memoryListKeys(ns) { const r = spawnSync('npx', [ CLI_PKG, 'memory', 'list', '--namespace', ns, '--format', 'json', ], { stdio: ['ignore', 'pipe', 'pipe'], encoding: 'utf-8' }); if (r.status !== 0) return []; const m = /\[[\s\S]*\]/.exec(r.stdout || ''); if (!m) return []; try { return JSON.parse(m[0]).map((e) => e.key).filter(Boolean); } catch { return []; } } function memoryRetrieve(ns, key) { const r = spawnSync('npx', [ CLI_PKG, 'memory', 'retrieve', '--namespace', ns, '--key', key, ], { stdio: ['ignore', 'pipe', 'pipe'], encoding: 'utf-8' }); if (r.status !== 0) return null; const m = /\{[\s\S]*\}/.exec(r.stdout || ''); if (!m) return null; try { return JSON.parse(m[0]); } catch { return null; } } function alertLevel(util) { if (util >= 1.00) return 'HARD_STOP'; if (util >= 0.90) return 'CRITICAL'; if (util >= 0.75) return 'WARNING'; if (util >= 0.50) return 'INFO'; return 'OK'; } function gather() { const ctKeys = memoryListKeys(NS); const sessions = ctKeys.filter((k) => k.startsWith('session-')) .map((k) => memoryRetrieve(NS, k)).filter(Boolean); const totalUsd = sessions.reduce((s, r) => s + (r.total_cost_usd || 0), 0); const byTier = { haiku: 0, sonnet: 0, opus: 0, unknown: 0 }; const byModel = {}; for (const r of sessions) { if (r.byTier) for (const [t, v] of Object.entries(r.byTier)) byTier[t] = (byTier[t] || 0) + v; if (r.byModel) { for (const [m, slot] of Object.entries(r.byModel)) { const agg = byModel[m] || { tier: slot.tier, cost_usd: 0, messages: 0, input_tokens: 0, output_tokens: 0, cache_creation_input_tokens: 0, cache_read_input_tokens: 0 }; agg.cost_usd += slot.cost_usd || 0; agg.messages += slot.messages || 0; agg.input_tokens += slot.input_tokens || 0; agg.output_tokens += slot.output_tokens || 0; agg.cache_creation_input_tokens += slot.cache_creation_input_tokens || 0; agg.cache_read_input_tokens += slot.cache_read_input_tokens || 0; byModel[m] = agg; } } } const topSession = sessions.slice().sort((a, b) => (b.total_cost_usd || 0) - (a.total_cost_usd || 0))[0]; // Resolve current budget (latest budget-config-<ts>) const budgetKey = ctKeys.filter((k) => /^budget-config(-\d+)?$/.test(k)).sort().reverse()[0]; const budgetCfg = budgetKey ? memoryRetrieve(NS, budgetKey) : null; const budget = budgetCfg ? { budget_usd: budgetCfg.budget_usd, setAt: budgetCfg.setAt, spent_usd: totalUsd, utilization: budgetCfg.budget_usd > 0 ? totalUsd / budgetCfg.budget_usd : 0, level: budgetCfg.budget_usd > 0 ? alertLevel(totalUsd / budgetCfg.budget_usd) : 'OK', } : null; // Federation aggregate const fedKeys = memoryListKeys(FED_NS); const fedEvents = fedKeys.filter((k) => k.startsWith('fed-spend-')) .map((k) => memoryRetrieve(FED_NS, k)).filter(Boolean); const peers = new Set(fedEvents.map((e) => e.peerId).filter(Boolean)); const now = Date.now(); const day = 24 * 3600 * 1000; const totalUsd24h = fedEvents.reduce((s, e) => { const ts = e.ts ? new Date(e.ts).getTime() : 0; return s + (ts && now - ts < day ? (e.usdSpent || 0) : 0); }, 0); return { exportedAt: new Date().toISOString(), total_cost_usd: totalUsd, sessionCount: sessions.length, conversationCount: sessions.length, byTier, byModel, topSession: topSession ? { sessionId: topSession.sessionId, total_cost_usd: topSession.total_cost_usd, messageCount: topSession.messageCount, } : null, budget, federation: { eventCount: fedEvents.length, peerCount: peers.size, totalUsd24h, }, }; } function fmtUsd(n) { return `$${(n || 0).toFixed(4)}`; } function asMarkdown(s) { const lines = []; lines.push(`# cost-summary (${s.exportedAt})`); lines.push(''); lines.push(`| Metric | Value |`); lines.push(`|---|---:|`); lines.push(`| Total measured spend | **${fmtUsd(s.total_cost_usd)}** |`); lines.push(`| Conversations / sessions | ${s.sessionCount} |`); if (s.budget) { lines.push(`| Budget | ${fmtUsd(s.budget.budget_usd)} |`); lines.push(`| Utilization | ${(s.budget.utilization * 100).toFixed(1)}% (${s.budget.level}) |`); } else { lines.push(`| Budget | unset |`); } lines.push(`| Federation events | ${s.federation.eventCount} (${s.federation.peerCount} peers, 24h ${fmtUsd(s.federation.totalUsd24h)}) |`); lines.push(''); lines.push(`## By tier`); lines.push(''); lines.push('| Tier | Cost |'); lines.push('|---|---:|'); for (const [t, c] of Object.entries(s.byTier)) { if (c > 0) lines.push(`| ${t} | ${fmtUsd(c)} |`); } lines.push(''); if (s.topSession) { lines.push(`## Top session`); lines.push(''); lines.push(`- Session \`${(s.topSession.sessionId || '').slice(0, 8)}\`: ${fmtUsd(s.topSession.total_cost_usd)} across ${s.topSession.messageCount} messages`); } return lines.join('\n'); } function parseFormat() { const args = process.argv.slice(2); for (let i = 0; i < args.length; i++) { if (args[i] === '--format') return args[++i]; } return process.env.SUMMARY_FORMAT || 'markdown'; } const summary = gather(); if (parseFormat() === 'json') { console.log(JSON.stringify(summary, null, 2)); } else { console.log(asMarkdown(summary)); }