@claude-flow/cli 3.29.0 → 3.30.1

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.
@@ -77,932 +77,69 @@ export function generateStatuslineScript(options) {
77
77
  // candidate scan still wins over this baked-in value when it finds
78
78
  // something newer (e.g. a later `npm update` in the same project).
79
79
  const bakedVersion = getInstalledCliVersionLocal();
80
- return `#!/usr/bin/env node
81
- /**
82
- * RuFlo V3 Statusline delegation build (#2195)
83
- *
84
- * Fix for ruvnet/ruflo#2195: the previous version re-implemented all data
85
- * readers locally using fragile file probes that missed AgentDB patterns,
86
- * the v3/docs/adr/ ADR directory, and the real vector count.
87
- *
88
- * This version delegates to 'npx @claude-flow/cli hooks statusline --json'
89
- * as the single source of truth. That command queries AgentDB directly,
90
- * counts ADRs in both directories, and reports the real intelligence pct.
91
- *
92
- * ADR counting falls back to local file reads so the display still works
93
- * without network access (counts both v3/docs/adr/ and v3/implementation/adrs/).
94
- *
95
- * Cache: JSON result is cached in /tmp for 10s so rapid prompt triggers
96
- * (every keystroke in some shells) don't hammer the CLI on every call.
97
- *
98
- * Usage: node statusline.cjs [--json] [--compact] [--dashboard]
99
- */
100
-
101
- /* eslint-disable @typescript-eslint/no-var-requires */
102
- const fs = require('fs');
103
- const path = require('path');
104
- const { execSync } = require('child_process');
105
- const os = require('os');
106
-
107
- // Configuration
108
- const CONFIG = {
109
- maxAgents: ${maxAgents},
110
- // Session-cost display. Claude Code's cost.total_cost_usd is a client-side
111
- // estimate that "may differ from your actual bill" and reads as misleading on
112
- // subscription plans, where token usage is not billed per dollar. These let
113
- // each user pick what the segment means to them without changing the default.
114
- // RUFLO_STATUSLINE_COST_SYMBOL override the leading '$' (e.g. ⚡, €, 🌱);
115
- // set to an empty string for the number alone.
116
- // RUFLO_STATUSLINE_HIDE_COST 1/true/yes/on removes the segment entirely.
117
- costSymbol: process.env.RUFLO_STATUSLINE_COST_SYMBOL ?? '$',
118
- hideCost: /^(1|true|yes|on)$/i.test(process.env.RUFLO_STATUSLINE_HIDE_COST || ''),
119
- };
120
-
121
- const CWD = process.cwd();
122
-
123
- // ─── Delegation cache ───────────────────────────────────────────
124
- // Cache the CLI JSON result for 60s so rapid prompt re-renders
125
- // (Claude Code refreshes the statusline several times a second while
126
- // streaming) don't re-invoke the CLI each time. #2337: bumped 10s→60s
127
- // because 10s was far too short for how often Claude Code re-renders.
128
- const CACHE_FILE = path.join(os.tmpdir(), 'ruflo-statusline-cache-' + require('crypto').createHash('md5').update(CWD).digest('hex').slice(0, 8) + '.json');
129
- const CACHE_TTL_MS = 60000;
130
-
131
- // The promo/insight row is designed to rotate on a 20s cadence (funnel/
132
- // rotation.ts's ROTATION_SLOT_MS / funnel/promo.ts's insight-slot check
133
- // duplicated here as a bare number since this generated script has no
134
- // runtime import of the funnel module; keep in sync if that constant ever
135
- // changes). The rotation slot is only ever (re)computed SERVER-SIDE inside
136
- // the CLI subprocess this file shells out to — so a general 60s data cache
137
- // (correct and necessary for #2337) silently made that 20s design
138
- // unreachable: cache.fresh stayed true across 2-3 whole rotation slots,
139
- // so the row visibly "didn't rotate" (user report). Fix: track promo
140
- // freshness on its OWN, tighter clock when it lags behind the current
141
- // slot, fall through to a real CLI call even though the REST of the
142
- // cached data (security/swarm/system) is still within CACHE_TTL_MS. This
143
- // does not touch or regress #2337's fix; it only adds a narrower check.
144
- const PROMO_ROTATION_SLOT_MS = 20000;
145
-
146
- // Persistent last-known-good promo record. Lives outside the /tmp cache so it
147
- // survives a full cache wipe / cache write race / CLI failure combo. Written
148
- // every time we successfully render a promo; read as a last resort so the row
149
- // never blinks out mid-session (was: 'promo shows then hides' bug report).
150
- const PROMO_MEMO_FILE = path.join(os.homedir(), '.ruflo', 'statusline-promo.json');
151
- const PROMO_MEMO_TTL_MS = 6 * 60 * 60 * 1000; // 6h — long enough to bridge any hiccup, short enough that a real disable takes effect fast.
152
-
153
- // #2337: resolve an already-installed @claude-flow/cli (or ruflo) bin so we
154
- // can invoke it directly via \`node\`. The previous version called
155
- // \`npx --yes @claude-flow/cli@latest\` on every uncached render, which forces
156
- // a registry resolution + cold-start of the entire CLI per render. With
157
- // multiple concurrent Claude Code sessions this storms the host (reporter
158
- // saw load average 40-65 on a 12-core box).
159
- //
160
- // Returns EVERY existing bin/cli.js candidate, in preference order (project,
161
- // monorepo, plugin marketplace, global node_modules including custom-prefix
162
- // layouts like ~/.npm-global) — mirrors getPkgVersion()'s own path probing.
163
- //
164
- // Returns a list, not a single winner: \`fs.existsSync\` only proves a file is
165
- // present, not that it actually runs. A marketplace/npx-cached install can
166
- // exist on disk but be broken (observed in practice: a stale marketplace
167
- // checkout whose dist/ imports a workspace package, '@claude-flow/cli-core',
168
- // that isn't bundled there — every invocation throws ERR_MODULE_NOT_FOUND).
169
- // Picking the first EXISTING path and never falling through meant a single
170
- // broken install silently killed the promo row for the entire session (the
171
- // CLI call always failed, so the memo could never refresh and eventually
172
- // expired). getStatuslineData() now walks this whole list and tries the next
173
- // candidate on failure, so one broken install can't permanently wedge it.
174
- function resolveCliBinCandidates() {
175
- const candidates = [];
176
- try {
177
- const home = os.homedir();
178
- candidates.push(
179
- path.join(home, '.claude', 'plugins', 'marketplaces', 'ruflo', 'bin', 'cli.js'),
180
- path.join(CWD, 'node_modules', '@claude-flow', 'cli', 'bin', 'cli.js'),
181
- path.join(CWD, 'node_modules', 'ruflo', 'bin', 'cli.js'),
182
- path.join(CWD, 'v3', '@claude-flow', 'cli', 'bin', 'cli.js'),
183
- );
184
- try {
185
- const binDir = path.dirname(process.execPath);
186
- const globalModuleDirs = [path.join(binDir, '..', 'lib', 'node_modules'), path.join(binDir, 'node_modules')];
187
- for (const prefix of [process.env.npm_config_prefix, process.env.PREFIX, path.join(home, '.npm-global')]) {
188
- if (prefix) globalModuleDirs.push(path.join(prefix, 'lib', 'node_modules'));
189
- }
190
- for (const gm of globalModuleDirs) {
191
- candidates.push(
192
- path.join(gm, 'ruflo', 'bin', 'cli.js'),
193
- path.join(gm, '@claude-flow', 'cli', 'bin', 'cli.js'),
194
- );
195
- }
196
- } catch { /* ignore */ }
197
- } catch { /* ignore */ }
198
- return candidates.filter((p) => {
199
- try {
200
- if (!fs.existsSync(p)) return false;
201
- // A candidate's bin/cli.js can exist on disk while its compiled
202
- // dist/ never got built (Claude Code's own plugin marketplace just
203
- // git-clones the repo — no install/build step — so every marketplace
204
- // install is a source-only checkout by construction). Importing
205
- // dist/src/index.js from bin/cli.js then throws MODULE_NOT_FOUND on
206
- // every real command; only --version happens to survive it. Check
207
- // for the compiled entrypoint too so a doomed candidate is skipped
208
- // up front instead of wasting a spawn-and-fail on every render.
209
- return fs.existsSync(path.join(path.dirname(p), '..', 'dist', 'src', 'index.js'));
210
- } catch { return false; }
211
- });
212
- }
213
-
214
- // Return { fresh, promoFresh, data }. 'fresh' is true only if within the TTL
215
- // — but data is returned regardless (stale-while-revalidate). This lets us
216
- // serve last known state (specifically the promo row) when the CLI is
217
- // slow/unavailable, so users don't see the funnel row flicker in and out on
218
- // cache expiry. 'promoFresh' is a SEPARATE, tighter check on the same clock
219
- // as PROMO_ROTATION_SLOT_MS — see that constant's comment for why the promo
220
- // row needs its own freshness bound distinct from the general 60s TTL.
221
- function readCache() {
222
- try {
223
- if (fs.existsSync(CACHE_FILE)) {
224
- const raw = JSON.parse(fs.readFileSync(CACHE_FILE, 'utf-8'));
225
- if (raw && raw._ts && raw.data) {
226
- const age = Date.now() - raw._ts;
227
- return { fresh: age < CACHE_TTL_MS, promoFresh: age < PROMO_ROTATION_SLOT_MS, data: raw.data };
228
- }
229
- }
230
- } catch { /* ignore */ }
231
- return { fresh: false, promoFresh: false, data: null };
232
- }
233
-
234
- function writeCache(data) {
235
- try { fs.writeFileSync(CACHE_FILE, JSON.stringify({ _ts: Date.now(), data }), 'utf-8'); } catch { /* ignore */ }
236
- // Also memoize any promo we saw so the row can survive future CLI hiccups.
237
- try {
238
- if (data && data.promo && typeof data.promo === 'object') {
239
- fs.mkdirSync(path.dirname(PROMO_MEMO_FILE), { recursive: true, mode: 0o700 });
240
- fs.writeFileSync(PROMO_MEMO_FILE, JSON.stringify({ _ts: Date.now(), promo: data.promo }), { encoding: 'utf-8', mode: 0o600 });
241
- }
242
- } catch { /* ignore */ }
243
- }
244
-
245
- // Last resort: read a memoized promo (up to 6h old). Used when no cache and
246
- // no CLI response is available — the row still renders, so users don't see
247
- // the disclosure blink out. Returns null when the memo is absent, expired,
248
- // or malformed. Never throws.
249
- function readPromoMemo() {
250
- try {
251
- if (!fs.existsSync(PROMO_MEMO_FILE)) return null;
252
- const raw = JSON.parse(fs.readFileSync(PROMO_MEMO_FILE, 'utf-8'));
253
- if (raw && raw._ts && (Date.now() - raw._ts) < PROMO_MEMO_TTL_MS && raw.promo) {
254
- return raw.promo;
255
- }
256
- } catch { /* ignore */ }
257
- return null;
258
- }
259
-
260
- /**
261
- * Single source of truth: delegate to the CLI hooks statusline --json command.
262
- * Falls back to a minimal static object on failure so the statusline still renders.
263
- *
264
- * Fix for ruflo#2195: the previous local readers returned 0 for AgentDB patterns
265
- * (missed the .swarm/memory.db → AgentDB path), computed dddProgress wrong,
266
- * and only counted ADRs in v3/implementation/adrs/ (missed v3/docs/adr/).
267
- */
268
- // Overlay the memoized promo onto any data object that's missing one. This is
269
- // the safety net that keeps the funnel row rendered when an OLDER cached CLI
270
- // version is picked up by npx — that older CLI succeeds but omits promo, so
271
- // the JSON round-trips clean but without our row. We patch it back here.
272
- function overlayMemoPromo(data) {
273
- if (data && !data.promo) {
274
- const memoPromo = readPromoMemo();
275
- if (memoPromo) data.promo = memoPromo;
276
- }
277
- return data;
278
- }
279
-
280
- function getStatuslineData() {
281
- const cache = readCache();
282
- // Both clocks must be satisfied to skip the CLI call entirely: the general
283
- // 60s TTL (#2337 — don't re-spawn the CLI on every rapid re-render) AND the
284
- // tighter promo-rotation clock (this fix — don't let a still-fresh 60s
285
- // cache silently freeze the promo/insight row across multiple 20s slots).
286
- if (cache.fresh && cache.promoFresh) return overlayMemoPromo(cache.data);
287
-
288
- // #2337: prefer an already-installed CLI bin via direct \`node\` invocation —
289
- // no npx, no registry round-trip, no @latest re-resolve per render. Try
290
- // every candidate that actually EXISTS (not just the first) before falling
291
- // back to \`npx --prefer-offline @claude-flow/cli\` (no @latest); an existing
292
- // but broken install (e.g. a stale marketplace checkout missing a bundled
293
- // workspace dep) must not block trying the next one.
294
- //
295
- // No \`2>/dev/null\` here (deliberately) — the execSync call below already
296
- // sets stdio: ['pipe','pipe','pipe'], which captures/discards stderr at the
297
- // Node level regardless of shell. The redirect was redundant on POSIX and
298
- // actively broke every candidate on Windows: cmd.exe (execSync's default
299
- // shell there) doesn't understand /dev/null, so the CLI delegation always
300
- // failed, silently degrading every render to buildLocalFallback() — 0%
301
- // intelligence and an empty promo row (the memo cache that keeps the row
302
- // populated across CLI hiccups is only ever written from a SUCCESSFUL
303
- // delegation, so it could never get seeded on Windows either).
304
- const cmds = resolveCliBinCandidates()
305
- .map((bin) => '"' + process.execPath + '" "' + bin + '" hooks statusline --json')
306
- .concat(['npx --prefer-offline @claude-flow/cli hooks statusline --json']);
307
- for (const cmd of cmds) {
308
- try {
309
- const raw = execSync(
310
- cmd,
311
- { encoding: 'utf-8', timeout: 8000, stdio: ['pipe', 'pipe', 'pipe'], cwd: CWD }
312
- ).trim();
313
- // The CLI may emit preamble lines before the JSON — find the first '{'.
314
- const jsonStart = raw.indexOf('{');
315
- if (jsonStart === -1) throw new Error('no JSON in CLI output');
316
- const data = JSON.parse(raw.slice(jsonStart));
317
- // Overlay every block the CLI JSON omits (adrs/agentdb/tests/hooks/integration)
318
- // with real local reads, so those segments reflect actual state instead of 0.
319
- applyLocalOverlays(data);
320
- overlayMemoPromo(data);
321
- writeCache(data);
322
- return data;
323
- } catch { /* this candidate unavailable, broken, or timed out — try the next */ }
324
- }
325
-
326
- // Stale-while-revalidate: if we have any cached data, keep serving it so the
327
- // funnel row doesn't flicker on CLI hiccups. Overlay fresh local reads for
328
- // the segments the CLI JSON doesn't populate; the promo row survives.
329
- if (cache.data) {
330
- applyLocalOverlays(cache.data);
331
- overlayMemoPromo(cache.data);
332
- return cache.data;
333
- }
334
-
335
- // Last resort: local probes + memo. Users still see the funnel row.
336
- return overlayMemoPromo(buildLocalFallback());
337
- }
338
-
339
- // Count ADRs from BOTH known directories (fix for ruflo#2195: old code missed
340
- // v3/docs/adr/ which holds ADR-088..ADR-137, i.e. 41 of the 128 total ADRs).
341
- function getLocalADRCount() {
342
- const adrDirs = [
343
- path.join(CWD, 'v3', 'implementation', 'adrs'),
344
- path.join(CWD, 'v3', 'docs', 'adr'),
345
- path.join(CWD, 'docs', 'adrs'),
346
- path.join(CWD, '.claude-flow', 'adrs'),
347
- ];
348
- let total = 0;
349
- for (const dir of adrDirs) {
350
- try {
351
- if (fs.existsSync(dir)) {
352
- const files = fs.readdirSync(dir).filter(function(f) {
353
- return f.endsWith('.md') && (f.startsWith('ADR-') || f.startsWith('adr-') || /^\\d{4}-/.test(f));
354
- });
355
- total += files.length;
356
- }
357
- } catch { /* ignore */ }
358
- }
359
- return { count: total, implemented: total, compliance: 0 };
360
- }
361
-
362
- // ─── Local overlays for segments the CLI JSON omits ──────────────
363
- // 'hooks statusline --json' only returns user/v3Progress/security/swarm/system.
364
- // agentdb/tests/hooks/integration are never populated, so without these overlays
365
- // they render as a permanent 0. Each reader is cheap and degrades to zeros.
366
-
367
- // Real AgentDB stats from the local memory DB. Vectors live in .swarm/memory.db
368
- // (sql.js + HNSW); ruvector.db is an opaque redb store counted only toward size.
369
- // One read-only sqlite3 query (mode=ro never takes a write lock the daemon owns).
370
- function getLocalAgentDB() {
371
- const result = { vectorCount: 0, dbSizeKB: 0, hasHnsw: false };
372
- try {
373
- let bytes = 0;
374
- for (const f of ['.swarm/memory.db', 'ruvector.db']) {
375
- try { bytes += fs.statSync(path.join(CWD, f)).size; } catch { /* missing */ }
376
- }
377
- result.dbSizeKB = Math.round(bytes / 1024);
378
-
379
- const memDb = path.join(CWD, '.swarm', 'memory.db');
380
- if (fs.existsSync(memDb)) {
381
- const Q = String.fromCharCode(34);
382
- // Two INDEPENDENT statements -- do NOT combine into one. Coupling the
383
- // vector count with the vector_indexes row count in a single statement
384
- // meant that on a DB missing the vector_indexes table (older/agentdb-
385
- // written DBs), the whole statement failed at PREPARE time (SQLite
386
- // compiles the full SQL before running), so the valid memory_entries
387
- // count was discarded too and the statusline showed Vectors 0 despite
388
- // thousands of real vectors. Split so a missing table can only zero the
389
- // HNSW flag, never the count. The init self-heal provisions the table so
390
- // the flag recovers on the next ruflo init / MCP start.
391
- const countSql = Q + 'SELECT COUNT(*) FROM memory_entries WHERE embedding IS NOT NULL;' + Q;
392
- const vc = safeExec("sqlite3 'file:" + memDb + "?mode=ro' " + countSql, 1500);
393
- if (vc) result.vectorCount = parseInt(vc, 10) || 0;
394
- // HNSW flag: separate statement. If vector_indexes is absent, sqlite3
395
- // exits non-zero and safeExec returns empty -- hasHnsw stays false (exact
396
- // original semantics: at least one index-config row present).
397
- const hnswSql = Q + 'SELECT COUNT(*) FROM vector_indexes;' + Q;
398
- const hn = safeExec("sqlite3 'file:" + memDb + "?mode=ro' " + hnswSql, 1500);
399
- if (hn) result.hasHnsw = (parseInt(hn, 10) || 0) > 0;
400
- }
401
- } catch { /* ignore */ }
402
- return result;
403
- }
404
-
405
- // Count test files via a bounded directory walk (no file reads).
406
- function getLocalTests() {
407
- let testFiles = 0;
408
- function countTests(dir, depth) {
409
- if ((depth || 0) > 4) return;
410
- try {
411
- if (!fs.existsSync(dir)) return;
412
- for (const e of fs.readdirSync(dir, { withFileTypes: true })) {
413
- if (e.isDirectory() && !e.name.startsWith('.') && e.name !== 'node_modules') {
414
- countTests(path.join(dir, e.name), (depth || 0) + 1);
415
- } else if (e.isFile() && (e.name.includes('.test.') || e.name.includes('.spec.') || e.name.startsWith('test_') || e.name.startsWith('spec_'))) {
416
- testFiles++;
417
- }
418
- }
419
- } catch { /* ignore */ }
420
- }
421
- for (const d of ['tests', 'test', '__tests__', 'src', 'v3']) countTests(path.join(CWD, d));
422
- return { testFiles, testCases: testFiles * 4 };
423
- }
424
-
425
- // Count configured hooks from project .claude/settings.json. Claude Code hooks
426
- // have no enabled/disabled flag, so every configured hook counts as enabled.
427
- function getLocalHooks() {
428
- const result = { enabled: 0, total: 0 };
429
- try {
430
- const settings = readJSON(path.join(CWD, '.claude', 'settings.json'));
431
- const hooks = settings && settings.hooks;
432
- if (hooks && typeof hooks === 'object') {
433
- let n = 0;
434
- for (const ev of Object.keys(hooks)) {
435
- const groups = hooks[ev];
436
- if (Array.isArray(groups)) {
437
- for (const g of groups) {
438
- if (g && Array.isArray(g.hooks)) n += g.hooks.length;
439
- }
440
- }
441
- }
442
- result.total = n;
443
- result.enabled = n;
444
- }
445
- } catch { /* ignore */ }
446
- return result;
447
- }
448
-
449
- // Best-effort integration block: DB presence + locally-configured stdio MCP
450
- // servers (project .mcp.json + global ~/.claude.json). Remote connectors are
451
- // account-managed and not present in local config, so they are not counted.
452
- function getLocalIntegration() {
453
- const integration = { mcpServers: { enabled: 0, total: 0 }, hasDatabase: false };
454
- try {
455
- for (const f of ['.swarm/memory.db', 'ruvector.db']) {
456
- if (fs.existsSync(path.join(CWD, f))) { integration.hasDatabase = true; break; }
457
- }
458
- const names = new Set();
459
- const projMcp = readJSON(path.join(CWD, '.mcp.json'));
460
- if (projMcp && projMcp.mcpServers) for (const k of Object.keys(projMcp.mcpServers)) names.add(k);
461
- const claudeJson = readJSON(path.join(os.homedir(), '.claude.json'));
462
- if (claudeJson) {
463
- if (claudeJson.mcpServers) for (const k of Object.keys(claudeJson.mcpServers)) names.add(k);
464
- const proj = claudeJson.projects && claudeJson.projects[CWD];
465
- if (proj && proj.mcpServers && !Array.isArray(proj.mcpServers)) {
466
- for (const k of Object.keys(proj.mcpServers)) names.add(k);
467
- }
468
- }
469
- integration.mcpServers.total = names.size;
470
- integration.mcpServers.enabled = names.size;
471
- } catch { /* ignore */ }
472
- return integration;
473
- }
474
-
475
- // Overlay every locally-derived block onto the CLI data (mutates in place).
476
- function applyLocalOverlays(data) {
477
- data.adrs = getLocalADRCount();
478
- data.agentdb = getLocalAgentDB();
479
- data.tests = getLocalTests();
480
- data.hooks = getLocalHooks();
481
- data.integration = getLocalIntegration();
482
- return data;
483
- }
484
-
485
- // Minimal local fallback when the CLI is not installed or times out.
486
- // Returns a structure that matches the CLI JSON schema so the renderer works.
487
- function buildLocalFallback() {
488
- const memMB = Math.floor(process.memoryUsage().heapUsed / 1024 / 1024);
489
-
490
- return applyLocalOverlays({
491
- user: { name: 'user', gitBranch: '', modelName: 'Claude Code' },
492
- v3Progress: { domainsCompleted: 0, totalDomains: 5, dddProgress: 0, patternsLearned: 0, sessionsCompleted: 0 },
493
- security: { status: 'NONE', cvesFixed: 0, totalCves: 0 },
494
- swarm: { activeAgents: 0, maxAgents: CONFIG.maxAgents, coordinationActive: false },
495
- system: { memoryMB: memMB, contextPct: 0, intelligencePct: 0, subAgents: 0 },
496
- lastUpdated: new Date().toISOString(),
497
- });
498
- }
499
-
500
- // ANSI colors
501
- const c = {
502
- reset: '\\x1b[0m',
503
- bold: '\\x1b[1m',
504
- dim: '\\x1b[2m',
505
- red: '\\x1b[0;31m',
506
- green: '\\x1b[0;32m',
507
- yellow: '\\x1b[0;33m',
508
- blue: '\\x1b[0;34m',
509
- purple: '\\x1b[0;35m',
510
- cyan: '\\x1b[0;36m',
511
- brightRed: '\\x1b[1;31m',
512
- brightGreen: '\\x1b[1;32m',
513
- brightYellow: '\\x1b[1;33m',
514
- brightBlue: '\\x1b[1;34m',
515
- brightPurple: '\\x1b[1;35m',
516
- brightCyan: '\\x1b[1;36m',
517
- brightWhite: '\\x1b[1;37m',
518
- };
519
-
520
- // Safe execSync with strict timeout (returns empty string on failure)
521
- function safeExec(cmd, timeoutMs) {
522
- try {
523
- return execSync(cmd, {
524
- encoding: 'utf-8',
525
- timeout: timeoutMs || 2000,
526
- stdio: ['pipe', 'pipe', 'pipe'],
527
- }).trim();
528
- } catch {
529
- return '';
530
- }
531
- }
532
-
533
- // Safe JSON file reader (returns null on failure)
534
- function readJSON(filePath) {
535
- try {
536
- if (fs.existsSync(filePath)) {
537
- return JSON.parse(fs.readFileSync(filePath, 'utf-8'));
538
- }
539
- } catch { /* ignore */ }
540
- return null;
541
- }
542
-
543
- // ─── Git info (pure-Node / single exec — needed for branch display) ──────────
544
-
545
- function getGitInfo() {
546
- const result = {
547
- name: 'user', gitBranch: '', modified: 0, untracked: 0,
548
- staged: 0, ahead: 0, behind: 0,
549
- };
550
-
551
- const script = [
552
- 'git config user.name 2>/dev/null || echo user',
553
- 'echo "---SEP---"',
554
- 'git branch --show-current 2>/dev/null',
555
- 'echo "---SEP---"',
556
- 'git status --porcelain 2>/dev/null',
557
- 'echo "---SEP---"',
558
- 'git rev-list --left-right --count HEAD...@{upstream} 2>/dev/null || echo "0 0"',
559
- ].join('; ');
560
-
561
- const raw = safeExec("sh -c '" + script + "'", 3000);
562
- if (!raw) return result;
563
-
564
- const parts = raw.split('---SEP---').map(function(s) { return s.trim(); });
565
- if (parts.length >= 4) {
566
- result.name = parts[0] || 'user';
567
- result.gitBranch = parts[1] || '';
568
-
569
- if (parts[2]) {
570
- for (const line of parts[2].split('\\n')) {
571
- if (!line || line.length < 2) continue;
572
- const x = line[0], y = line[1];
573
- if (x === '?' && y === '?') { result.untracked++; continue; }
574
- if (x !== ' ' && x !== '?') result.staged++;
575
- if (y !== ' ' && y !== '?') result.modified++;
576
- }
577
- }
578
-
579
- const ab = (parts[3] || '0 0').split(/\\s+/);
580
- result.ahead = parseInt(ab[0]) || 0;
581
- result.behind = parseInt(ab[1]) || 0;
582
- }
583
-
584
- return result;
585
- }
586
-
587
- // Detect model name from Claude config (pure file reads, no exec)
588
- function getModelName() {
589
- try {
590
- const claudeConfig = readJSON(path.join(os.homedir(), '.claude.json'));
591
- if (claudeConfig && claudeConfig.projects) {
592
- for (const [projectPath, projectConfig] of Object.entries(claudeConfig.projects)) {
593
- if (CWD === projectPath || CWD.startsWith(projectPath + '/')) {
594
- const usage = projectConfig.lastModelUsage;
595
- if (usage) {
596
- const ids = Object.keys(usage);
597
- if (ids.length > 0) {
598
- let modelId = ids[ids.length - 1];
599
- let latest = 0;
600
- for (const id of ids) {
601
- const ts = usage[id] && usage[id].lastUsedAt ? new Date(usage[id].lastUsedAt).getTime() : 0;
602
- if (ts > latest) { latest = ts; modelId = id; }
603
- }
604
- if (modelId.includes('opus')) return 'Opus 4.8';
605
- if (modelId.includes('sonnet')) return 'Sonnet 4.6';
606
- if (modelId.includes('haiku')) return 'Haiku 4.5';
607
- return modelId.split('-').slice(1, 3).join(' ');
608
- }
609
- }
610
- break;
611
- }
612
- }
613
- }
614
- } catch { /* ignore */ }
615
-
616
- // Fallback: settings.json model field
617
- const settings = getSettings();
618
- if (settings && settings.model) {
619
- const m = settings.model;
620
- if (m.includes('opus')) return 'Opus 4.8';
621
- if (m.includes('sonnet')) return 'Sonnet 4.6';
622
- if (m.includes('haiku')) return 'Haiku 4.5';
623
- }
624
- return 'Claude Code';
625
- }
626
-
627
- // ─── Stdin reader (Claude Code pipes session JSON) ──────────────
628
- // Claude Code sends session JSON via stdin. Read synchronously so the
629
- // script works both when invoked by Claude Code (stdin has JSON) and
630
- // when run manually from terminal (stdin is empty/tty).
631
- let _stdinData = null;
632
- function getStdinData() {
633
- if (_stdinData !== undefined && _stdinData !== null) return _stdinData;
634
- try {
635
- if (process.stdin.isTTY) { _stdinData = null; return null; }
636
- const chunks = [];
637
- const buf = Buffer.alloc(4096);
638
- let bytesRead;
639
- try {
640
- while ((bytesRead = fs.readSync(0, buf, 0, buf.length, null)) > 0) {
641
- chunks.push(buf.slice(0, bytesRead));
642
- }
643
- } catch { /* EOF or read error */ }
644
- const raw = Buffer.concat(chunks).toString('utf-8').trim();
645
- _stdinData = (raw && raw.startsWith('{')) ? JSON.parse(raw) : null;
646
- } catch {
647
- _stdinData = null;
648
- }
649
- return _stdinData;
650
- }
651
-
652
- function getModelFromStdin() {
653
- const data = getStdinData();
654
- return (data && data.model && data.model.display_name) ? data.model.display_name : null;
655
- }
656
-
657
- function getContextFromStdin() {
658
- const data = getStdinData();
659
- if (data && data.context_window) {
660
- return { usedPct: Math.floor(data.context_window.used_percentage || 0) };
661
- }
662
- return null;
663
- }
664
-
665
- function getCostFromStdin() {
666
- const data = getStdinData();
667
- if (data && data.cost) {
668
- const durationMs = data.cost.total_duration_ms || 0;
669
- const mins = Math.floor(durationMs / 60000);
670
- const secs = Math.floor((durationMs % 60000) / 1000);
671
- return {
672
- costUsd: data.cost.total_cost_usd || 0,
673
- duration: mins > 0 ? mins + 'm' + secs + 's' : secs + 's',
674
- };
675
- }
676
- return null;
677
- }
678
-
679
- // Compares dotted-numeric version strings (e.g. "3.27.1" vs "3.27.10").
680
- // Returns >0 if a>b, <0 if a<b, 0 if equal-as-far-as-parseable. Deliberately
681
- // simple (no prerelease/build-metadata handling) — this only orders local
682
- // package.json versions against each other, never anything untrusted from
683
- // a payload, so a full semver implementation would be dead weight here.
684
- function compareVersions(a, b) {
685
- const pa = String(a).split('.').map((n) => parseInt(n, 10));
686
- const pb = String(b).split('.').map((n) => parseInt(n, 10));
687
- for (let i = 0; i < Math.max(pa.length, pb.length); i++) {
688
- const na = Number.isFinite(pa[i]) ? pa[i] : 0;
689
- const nb = Number.isFinite(pb[i]) ? pb[i] : 0;
690
- if (na !== nb) return na - nb;
691
- }
692
- return 0;
693
- }
694
-
695
- function getPkgVersion() {
696
- // Baked in at generation time from the real running CLI's own resolved
697
- // version (see generateStatuslineScript()'s doc comment) — correct even
698
- // when this renders via a pure npx invocation with no local install for
699
- // the candidate scan below to find.
700
- let ver = ${JSON.stringify(bakedVersion)};
701
- try {
702
- const home = os.homedir();
703
- const pkgPaths = [
704
- path.join(home, '.claude', 'plugins', 'marketplaces', 'ruflo', 'package.json'),
705
- path.join(CWD, 'node_modules', '@claude-flow', 'cli', 'package.json'),
706
- path.join(CWD, 'node_modules', 'ruflo', 'package.json'),
707
- path.join(CWD, 'v3', '@claude-flow', 'cli', 'package.json'),
708
- ];
709
- // #2221: global installs (npm i -g ruflo) live outside CWD/node_modules, so the
710
- // probes above all miss and the version falls back to the hard-coded default.
711
- // Derive the global node_modules dir from the running node binary (no npm spawn —
712
- // statusline renders often). Covers nvm/mise (bin/../lib/node_modules) and Windows
713
- // (bin/node_modules) layouts.
714
- try {
715
- const binDir = path.dirname(process.execPath);
716
- const globalModuleDirs = [path.join(binDir, '..', 'lib', 'node_modules'), path.join(binDir, 'node_modules')];
717
- // #2221 follow-up: a custom npm prefix (e.g. ~/.npm-global) is decoupled from
718
- // the node binary location, so the binDir-derived probes above all miss. Also
719
- // probe the npm prefix from the environment and the common ~/.npm-global default.
720
- for (const prefix of [process.env.npm_config_prefix, process.env.PREFIX, path.join(home, '.npm-global')]) {
721
- if (prefix) globalModuleDirs.push(path.join(prefix, 'lib', 'node_modules'));
722
- }
723
- for (const gm of globalModuleDirs) {
724
- pkgPaths.push(
725
- path.join(gm, 'ruflo', 'package.json'),
726
- path.join(gm, '@claude-flow', 'cli', 'package.json'),
727
- );
728
- }
729
- } catch { /* ignore */ }
730
- // Pick the HIGHEST version among every candidate that exists, not the
731
- // first one found. The marketplace plugin path is probed first (list
732
- // order above), but Claude Code's own plugin marketplace mechanism
733
- // syncs on its own git-pull cadence, independent of npm publishes — a
734
- // freshly-published npm version can sit alongside a stale marketplace
735
- // checkout for a while (observed live: marketplace one release behind
736
- // right after a publish). Taking the first EXISTING candidate meant the
737
- // header could show a stale version even when a newer install (e.g.
738
- // node_modules/@claude-flow/cli from a plain npm install) was sitting right there.
739
- let found = false;
740
- for (const p of pkgPaths) {
741
- if (!fs.existsSync(p)) continue;
742
- try {
743
- const pkg = JSON.parse(fs.readFileSync(p, 'utf-8'));
744
- if (pkg && typeof pkg.version === 'string' && pkg.version.length > 0) {
745
- if (!found || compareVersions(pkg.version, ver) > 0) ver = pkg.version;
746
- found = true;
747
- }
748
- } catch { /* ignore */ }
749
- }
750
- } catch { /* ignore */ }
751
- return ver;
752
- }
753
-
754
- // ─── Rendering ──────────────────────────────────────────────────
755
-
756
- function progressBar(current, total) {
757
- const width = 5;
758
- const filled = Math.round((current / total) * width);
759
- return '[' + '●'.repeat(filled) + '○'.repeat(width - filled) + ']';
760
- }
761
-
762
- function generateStatusline() {
763
- const d = getStatuslineData();
764
- const git = getGitInfo();
765
- const modelName = getModelFromStdin() || (d.user && d.user.modelName) || 'Claude Code';
766
- const ctxInfo = getContextFromStdin();
767
- const costInfo = getCostFromStdin();
768
- // Named RUFLO_VERSION (not pkgVersion) so the #1951 regression guard
769
- // (scripts/audit-fix-invariants.mjs) can pin its presence in the emitted
770
- // .cjs artifact — without it the header silently reverts to a hard-coded
771
- // "RuFlo V3.5" for anyone whose install doesn't match the first probe path.
772
- const RUFLO_VERSION = getPkgVersion();
773
-
774
- const progress = d.v3Progress || {};
775
- const security = d.security || {};
776
- const swarm = d.swarm || {};
777
- const system = d.system || {};
778
- const adrs = d.adrs || {};
779
- const hooks = d.hooks || {};
780
- const agentdb = d.agentdb || {};
781
- const tests = d.tests || {};
782
-
783
- const domainsCompleted = progress.domainsCompleted || 0;
784
- const totalDomains = progress.totalDomains || 5;
785
- const dddProgress = progress.dddProgress || 0;
786
- const patternsLearned = progress.patternsLearned || 0;
787
- const activeAgents = swarm.activeAgents || 0;
788
- const maxAgents = swarm.maxAgents || CONFIG.maxAgents;
789
- const coordinationActive = swarm.coordinationActive || false;
790
- const intelligencePct = system.intelligencePct || 0;
791
- const memoryMB = system.memoryMB || 0;
792
- const subAgents = system.subAgents || 0;
793
- const cvesFixed = security.cvesFixed || 0;
794
- const totalCves = security.totalCves || 0;
795
- const secStatus = security.status || 'NONE';
796
- const adrCount = adrs.count || 0;
797
- const adrImpl = adrs.implemented || 0;
798
- const hooksEnabled = hooks.enabled || 0;
799
- const hooksTotal = hooks.total || 0;
800
- const vectorCount = agentdb.vectorCount || 0;
801
- const hasHnsw = agentdb.hasHnsw || false;
802
- const dbSizeKB = agentdb.dbSizeKB || 0;
803
- const testFiles = tests.testFiles || 0;
804
- const testCases = tests.testCases || testFiles * 4;
805
-
806
- const lines = [];
807
-
808
- // 3-line design (fits Claude Code's visible statusline area — line 4+ gets
809
- // replaced by the system guidance / input prompt line):
810
- // Line 1 — Header (RuFlo version · git · model · timing · context · cost)
811
- // Line 2 — Compressed ops (Swarm · Hooks · 🧠 · 💾 · Health)
812
- // Line 3 — Promo / disclosure row (funnel surface, ADR-301)
813
-
814
- // ─── Line 1: header ────────────────────────────────────────────
815
- let header = c.bold + c.brightPurple + '▊ RuFlo V' + RUFLO_VERSION + ' ' + c.reset;
816
- header += (coordinationActive ? c.brightCyan : c.dim) + '● ' + c.brightCyan + git.name + c.reset;
817
- if (git.gitBranch) {
818
- header += ' ' + c.dim + '│' + c.reset + ' ' + c.brightBlue + '⏇ ' + git.gitBranch + c.reset;
819
- const changes = git.modified + git.staged + git.untracked;
820
- if (changes > 0) {
821
- let ind = '';
822
- if (git.staged > 0) ind += c.brightGreen + '+' + git.staged + c.reset;
823
- if (git.modified > 0) ind += c.brightYellow + '~' + git.modified + c.reset;
824
- if (git.untracked > 0) ind += c.dim + '?' + git.untracked + c.reset;
825
- header += ' ' + ind;
826
- }
827
- if (git.ahead > 0) header += ' ' + c.brightGreen + '↑' + git.ahead + c.reset;
828
- if (git.behind > 0) header += ' ' + c.brightRed + '↓' + git.behind + c.reset;
829
- }
830
- header += ' ' + c.dim + '│' + c.reset + ' ' + c.purple + modelName + c.reset;
831
- const duration = costInfo ? costInfo.duration : '';
832
- if (duration) header += ' ' + c.dim + '│' + c.reset + ' ' + c.cyan + '⏱ ' + duration + c.reset;
833
- if (ctxInfo && ctxInfo.usedPct > 0) {
834
- const ctxColor = ctxInfo.usedPct >= 90 ? c.brightRed : ctxInfo.usedPct >= 70 ? c.brightYellow : c.brightGreen;
835
- header += ' ' + c.dim + '│' + c.reset + ' ' + ctxColor + '● ' + ctxInfo.usedPct + '% ctx' + c.reset;
836
- }
837
- if (!CONFIG.hideCost && costInfo && costInfo.costUsd > 0) {
838
- header += ' ' + c.dim + '│' + c.reset + ' ' + c.brightYellow + CONFIG.costSymbol + costInfo.costUsd.toFixed(2) + c.reset;
839
- }
840
- lines.push(header);
841
-
842
- // ─── Line 2: compressed ops ────────────────────────────────────
843
- // Everything actionable in one dense row. Show only what changes what you
844
- // do next; diagnostic detail moves to \`ruflo status --verbose\`.
845
- const agentsColor = activeAgents > 0 ? c.brightGreen : c.dim;
846
- const hooksColor = hooksEnabled > 0 ? c.brightGreen : c.dim;
847
- const intellColor = intelligencePct >= 80 ? c.brightGreen : intelligencePct >= 40 ? c.brightYellow : c.dim;
848
- const swarmInd = coordinationActive ? c.brightGreen + '◉' + c.reset + ' ' : c.dim + '○' + c.reset + ' ';
849
- const cvesClean = totalCves === 0 || cvesFixed === totalCves;
850
- const healthAllGreen = (secStatus === 'CLEAN' || secStatus === 'NONE') && cvesClean;
851
- const opsParts = [];
852
- opsParts.push(c.cyan + 'Swarm ' + swarmInd + agentsColor + activeAgents + c.reset + '/' + c.brightWhite + maxAgents + c.reset);
853
- if (subAgents > 0) opsParts.push(c.brightPurple + '👥 ' + subAgents + c.reset);
854
- opsParts.push(c.cyan + 'Hooks ' + hooksColor + hooksEnabled + c.reset + '/' + c.brightWhite + hooksTotal + c.reset);
855
- opsParts.push(intellColor + '🧠 ' + intelligencePct + '%' + c.reset);
856
- opsParts.push(c.brightCyan + '💾 ' + memoryMB + 'MB' + c.reset);
857
- // Health: one glyph when green, terse copy when there's something to act on.
858
- if (healthAllGreen) {
859
- opsParts.push(c.brightGreen + '🛡 ✓' + c.reset);
860
- } else {
861
- if (secStatus === 'PENDING') opsParts.push(c.brightYellow + '🛡 scan pending' + c.reset);
862
- else if (secStatus === 'IN_PROGRESS') opsParts.push(c.brightYellow + '🛡 scanning…' + c.reset);
863
- else if (secStatus === 'STALE') opsParts.push(c.brightYellow + '🛡 scan stale' + c.reset);
864
- else if (secStatus !== 'NONE' && secStatus !== 'CLEAN') opsParts.push(c.brightRed + '🛡 ' + secStatus.toLowerCase() + c.reset);
865
- if (totalCves > 0 && cvesFixed < totalCves) {
866
- const unfixed = totalCves - cvesFixed;
867
- opsParts.push(c.brightRed + '⚠ ' + unfixed + ' CVE' + (unfixed === 1 ? '' : 's') + c.reset);
868
- }
869
- }
870
- lines.push(opsParts.join(' ' + c.dim + '·' + c.reset + ' '));
871
-
872
- // ─── Line 3: promo / disclosure / insight ───────────────────────
873
- // Colored by content kind so it reads as *what it is*, not as noise:
874
- // disclosure → brightCyan (announcement / capability link)
875
- // promotional → brightPurple (Cognitum sponsor spot)
876
- // educational → yellow (a tip)
877
- // insight → brightRed (environment/task-aware, local, actionable —
878
- // distinct from remote content on purpose)
879
- const promoRow = getPromoRow(d);
880
- if (promoRow) {
881
- const kind = (d && d.promo && d.promo.kind) || 'disclosure';
882
- const promoColor = kind === 'promotional' ? c.brightPurple
883
- : kind === 'educational' ? c.yellow
884
- : kind === 'insight' ? c.brightRed
885
- : c.brightCyan;
886
- lines.push(promoColor + promoRow + c.reset);
887
- }
888
-
889
- // Trailing blank line so Claude Code's input prompt gets breathing room
890
- // instead of butting directly against the last statusline row.
891
- return lines.join('\\n') + '\\n';
892
- }
893
-
894
- // ─── Funnel promo row (ADR-301) ─────────────────────────────────
895
- // Allowlist for OSC 8 hyperlink targets. Ships in code (not in payload) so
896
- // no message can smuggle a link to an unapproved host.
897
- //
898
- // The final destination hosts (cognitum.one / agentics.org) AND the
899
- // click-redirect host are both allowlisted here: promo.ts routes every
900
- // clickable message through the server-side click-redirect (ADR-311 §7)
901
- // so promo_open + geo are captured before the 302 to the real target —
902
- // so the OSC 8 link the renderer emits points at the redirect host, not
903
- // the final destination directly.
904
- const PROMO_LINK_HOSTS = new Set([
905
- 'cognitum.one', 'www.cognitum.one', 'docs.cognitum.one',
906
- // agentics.org — OSS foundation, distinct sponsor domain. Kept in sync
907
- // with messages.ts ALLOWED_URL_HOSTS.
908
- 'agentics.org', 'www.agentics.org',
909
- // Click-redirect host (funnel.ruv.io once its TLS cert is live; the raw
910
- // Cloud Run hostname is allowlisted too since event-transport.ts /
911
- // message-transport.ts / attribution.ts currently point at it as a TEMP
912
- // fallback while the domain mapping's cert provisions).
913
- 'funnel.ruv.io',
914
- 'cognitum-analytics-63rzcdswba-uc.a.run.app',
915
- ]);
916
-
917
- // Emit OSC 8 hyperlinks unless the environment is known-broken. tmux mangles
918
- // raw OSC 8 (see anthropics/claude-code#27047) — opt in via env if wrapped.
919
- function terminalSupportsHyperlinks() {
920
- if (process.env.CI || process.env.GITHUB_ACTIONS) return false;
921
- if (process.env.TERM === 'dumb') return false;
922
- if (/^(0|false|off|no)$/i.test(String(process.env.RUFLO_STATUSLINE_HYPERLINKS || ''))) return false;
923
- if (process.env.TMUX && !process.env.RUFLO_STATUSLINE_HYPERLINKS_TMUX) return false;
924
- return true;
925
- }
926
-
927
- // Wrap a label in an OSC 8 hyperlink escape sequence. Falls back to the raw
928
- // label whenever the URL is not an allowlisted https target, when the terminal
929
- // can't render hyperlinks, or when parsing fails — a broken link must never
930
- // leave a raw URL or stray escape in the statusline output.
931
- function safeTerminalLink(label, url) {
932
- if (!terminalSupportsHyperlinks()) return label;
933
- if (typeof url !== 'string' || url.length === 0) return label;
934
- let parsed;
935
- try { parsed = new URL(url); } catch { return label; }
936
- if (parsed.protocol !== 'https:') return label;
937
- if (!PROMO_LINK_HOSTS.has(parsed.hostname)) return label;
938
- const cleanLabel = String(label).replace(/[\\u0000-\\u001f\\u007f-\\u009f\\u202a-\\u202e\\u2066-\\u2069]/g, '');
939
- if (cleanLabel.length === 0) return label;
940
- const ESC = '\\u001b';
941
- return ESC + ']8;;' + parsed.href + ESC + '\\\\' + cleanLabel + ESC + ']8;;' + ESC + '\\\\';
942
- }
943
-
944
- function getPromoRow(d) {
945
- try {
946
- if (process.env.CI || process.env.GITHUB_ACTIONS) return null;
947
- if (/^(0|false|off|no)$/i.test(String(process.env.RUFLO_FUNNEL || ''))) return null;
948
- const promo = d && d.promo;
949
- if (!promo || typeof promo.text !== 'string') return null;
950
- // Strip control chars / ANSI / bidi overrides and hard-cap length —
951
- // promo copy is data and must never emit its own terminal sequences.
952
- const text = promo.text
953
- .replace(/[\\u0000-\\u001f\\u007f-\\u009f\\u202a-\\u202e\\u2066-\\u2069]/g, '')
954
- .slice(0, 100)
955
- .trim();
956
- if (text.length === 0) return null;
957
- // Split the label from the trailing "· manage: ruflo settings" instruction
958
- // so each part gets styling that matches what it actually IS:
959
- // 1. label — OSC 8 hyperlink + underline. A real clickable link.
960
- // 2. "manage:" — dim. Just a connector word, no action implied.
961
- // 3. "ruflo settings" — bold/bright, NOT underlined. This is a shell
962
- // command the user TYPES, not a link they CLICK — a terminal can
963
- // never safely execute a command from a click (that would let any
964
- // server-served message run arbitrary commands), so we deliberately
965
- // avoid the underline/OSC8 cues that imply "clickable". Bold+bright
966
- // instead signals "this is the important bit — copy/type it".
967
- // Educational tips have no manage tail and no URL — plain text through.
968
- const manageIdx = text.indexOf(' · manage: ');
969
- const label = manageIdx > 0 ? text.slice(0, manageIdx) : text;
970
- const manageWord = manageIdx > 0 ? ' · manage: ' : '';
971
- const command = manageIdx > 0 ? text.slice(manageIdx + manageWord.length) : '';
972
- const UL_ON = '\\u001b[4m';
973
- const UL_OFF = '\\u001b[24m';
974
- const DIM_ON = '\\u001b[2m';
975
- const DIM_OFF = '\\u001b[22m';
976
- const BOLD_ON = '\\u001b[1m';
977
- const BOLD_OFF = '\\u001b[22m';
978
- const linked = promo.url ? UL_ON + safeTerminalLink(label, promo.url) + UL_OFF : label;
979
- if (!command) return linked;
980
- return linked + DIM_ON + manageWord + DIM_OFF + BOLD_ON + command + BOLD_OFF;
981
- } catch (e) {
982
- return null; // the promo row must never break the statusline
983
- }
984
- }
985
-
986
- // JSON output — delegates to CLI for accuracy; caller can use --json flag
987
- function generateJSON() {
988
- const d = getStatuslineData();
989
- const git = getGitInfo();
990
- return Object.assign({}, d, {
991
- user: Object.assign({ name: git.name, gitBranch: git.gitBranch }, d.user || {}),
992
- git: { modified: git.modified, untracked: git.untracked, staged: git.staged, ahead: git.ahead, behind: git.behind },
993
- lastUpdated: new Date().toISOString(),
994
- });
995
- }
996
-
997
- // ─── Main ───────────────────────────────────────────────────────
998
- if (process.argv.includes('--json')) {
999
- console.log(JSON.stringify(generateJSON(), null, 2));
1000
- } else if (process.argv.includes('--compact')) {
1001
- console.log(JSON.stringify(generateJSON()));
1002
- } else {
1003
- console.log(generateStatusline());
1004
- }
1005
- `;
80
+ // #2679 fix: read the committed .claude/helpers/statusline.cjs as the
81
+ // single source of truth instead of maintaining a 1000-line template
82
+ // string inline. Prior to this fix, the inline template drifted from
83
+ // the deployed helper (v3.29.0 UX improvements — whole-row-clickable
84
+ // OSC 8, (domain) suffix, ellipsis, bright-white command, 300s cache
85
+ // TTL, windowsHide on subprocess spawns all shipped in the helper
86
+ // but the generator kept its older shape). Now: read the helper +
87
+ // substitute two known values (maxAgents, bakedVersion).
88
+ //
89
+ // Walk-up finds the CLI package root (whether we're at src/init/ in
90
+ // tests or dist/src/init/ in installed use). Same shape as
91
+ // getInstalledCliVersionLocal() above — reuse the pattern for the
92
+ // same reason it exists there.
93
+ let helperContent = null;
94
+ try {
95
+ const esmRequire = createRequire(import.meta.url);
96
+ const pkgJsonPath = esmRequire.resolve('@claude-flow/cli/package.json');
97
+ const helperPath = path.join(path.dirname(pkgJsonPath), '.claude', 'helpers', 'statusline.cjs');
98
+ helperContent = fs.readFileSync(helperPath, 'utf-8');
99
+ }
100
+ catch {
101
+ let dir = __dirname_sg;
102
+ for (let i = 0; i < 6; i++) {
103
+ try {
104
+ const pkg = JSON.parse(fs.readFileSync(path.join(dir, 'package.json'), 'utf-8'));
105
+ if (pkg && pkg.name === '@claude-flow/cli') {
106
+ const candidate = path.join(dir, '.claude', 'helpers', 'statusline.cjs');
107
+ if (fs.existsSync(candidate)) {
108
+ helperContent = fs.readFileSync(candidate, 'utf-8');
109
+ break;
110
+ }
111
+ }
112
+ }
113
+ catch { /* keep climbing */ }
114
+ const parent = path.dirname(dir);
115
+ if (parent === dir)
116
+ break;
117
+ dir = parent;
118
+ }
119
+ }
120
+ if (helperContent === null) {
121
+ throw new Error('statusline-generator: could not locate .claude/helpers/statusline.cjs '
122
+ + 'relative to @claude-flow/cli. This is a packaging bug — the helper '
123
+ + 'must ship with the CLI (see package.json files entry for .claude).');
124
+ }
125
+ // Two known interpolation points both single-line, both idempotent
126
+ // string replacements. If a future edit to the helper renames either
127
+ // token, this replace() is a no-op and the fallback default (15,
128
+ // whatever the helper hard-codes) ships. Add a paired test in
129
+ // statusline-cost-display.test.ts before changing either token.
130
+ helperContent = helperContent.replace(/maxAgents: \d+,/, `maxAgents: ${maxAgents},`);
131
+ // Only overwrite the helper's baked version if OURS resolves higher.
132
+ // Otherwise the substitution could DOWNGRADE (test environments where
133
+ // esmRequire.resolve happens to hit an older node_modules install would
134
+ // clobber a fresh committed helper). Naive lexicographic compare works
135
+ // for canonical semver strings with same-width digit parts, which is
136
+ // reliable at this stage of the version space.
137
+ const helperVerMatch = helperContent.match(/let ver = "([^"]+)";/);
138
+ const helperVer = helperVerMatch ? helperVerMatch[1] : '';
139
+ if (!helperVer || bakedVersion > helperVer) {
140
+ helperContent = helperContent.replace(/let ver = "[^"]+";/, `let ver = ${JSON.stringify(bakedVersion)};`);
141
+ }
142
+ return helperContent;
1006
143
  }
1007
144
  /**
1008
145
  * Generate statusline hook for shell integration