@claude-flow/cli 3.25.5 → 3.26.0
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/.claude/.proven-config-version +1 -0
- package/.claude/helpers/.helpers-version +1 -1
- package/.claude/helpers/helpers.manifest.json +5 -4
- package/.claude/helpers/hook-handler.cjs +129 -0
- package/.claude/helpers/statusline.cjs +771 -505
- package/.claude/proven-config.json +42 -0
- package/catalog-manifest.json +12 -0
- package/dist/src/commands/advisor.d.ts +15 -0
- package/dist/src/commands/advisor.js +94 -0
- package/dist/src/commands/doctor.js +151 -32
- package/dist/src/commands/funnel.d.ts +13 -0
- package/dist/src/commands/funnel.js +103 -0
- package/dist/src/commands/hooks.js +112 -46
- package/dist/src/commands/index.js +10 -0
- package/dist/src/commands/init.js +44 -0
- package/dist/src/commands/proxy.d.ts +21 -0
- package/dist/src/commands/proxy.js +310 -0
- package/dist/src/commands/security.js +29 -0
- package/dist/src/commands/settings.d.ts +19 -0
- package/dist/src/commands/settings.js +180 -0
- package/dist/src/commands/version.d.ts +42 -0
- package/dist/src/commands/version.js +106 -0
- package/dist/src/funnel/advisor-tip.d.ts +58 -0
- package/dist/src/funnel/advisor-tip.js +92 -0
- package/dist/src/funnel/attribution.d.ts +37 -0
- package/dist/src/funnel/attribution.js +101 -0
- package/dist/src/funnel/consent.d.ts +22 -0
- package/dist/src/funnel/consent.js +55 -0
- package/dist/src/funnel/credit-errors.d.ts +31 -0
- package/dist/src/funnel/credit-errors.js +88 -0
- package/dist/src/funnel/credit-notifier.d.ts +44 -0
- package/dist/src/funnel/credit-notifier.js +74 -0
- package/dist/src/funnel/disclosure.d.ts +46 -0
- package/dist/src/funnel/disclosure.js +97 -0
- package/dist/src/funnel/enrollment.d.ts +36 -0
- package/dist/src/funnel/enrollment.js +64 -0
- package/dist/src/funnel/environment.d.ts +17 -0
- package/dist/src/funnel/environment.js +39 -0
- package/dist/src/funnel/event-transport.d.ts +51 -0
- package/dist/src/funnel/event-transport.js +199 -0
- package/dist/src/funnel/events.d.ts +42 -0
- package/dist/src/funnel/events.js +150 -0
- package/dist/src/funnel/index.d.ts +20 -0
- package/dist/src/funnel/index.js +20 -0
- package/dist/src/funnel/insights.d.ts +49 -0
- package/dist/src/funnel/insights.js +120 -0
- package/dist/src/funnel/local-signals.d.ts +15 -0
- package/dist/src/funnel/local-signals.js +68 -0
- package/dist/src/funnel/message-transport.d.ts +51 -0
- package/dist/src/funnel/message-transport.js +149 -0
- package/dist/src/funnel/messages.d.ts +55 -0
- package/dist/src/funnel/messages.js +160 -0
- package/dist/src/funnel/power-saver-notifier.d.ts +44 -0
- package/dist/src/funnel/power-saver-notifier.js +92 -0
- package/dist/src/funnel/precedence.d.ts +16 -0
- package/dist/src/funnel/precedence.js +85 -0
- package/dist/src/funnel/promo.d.ts +41 -0
- package/dist/src/funnel/promo.js +144 -0
- package/dist/src/funnel/rate-limit-notifier.d.ts +55 -0
- package/dist/src/funnel/rate-limit-notifier.js +102 -0
- package/dist/src/funnel/rotation.d.ts +19 -0
- package/dist/src/funnel/rotation.js +70 -0
- package/dist/src/funnel/state.d.ts +13 -0
- package/dist/src/funnel/state.js +52 -0
- package/dist/src/funnel/toggle-cooldown.d.ts +17 -0
- package/dist/src/funnel/toggle-cooldown.js +32 -0
- package/dist/src/funnel/types.d.ts +86 -0
- package/dist/src/funnel/types.js +26 -0
- package/dist/src/init/executor.js +25 -19
- package/dist/src/init/helper-refresh.d.ts +33 -2
- package/dist/src/init/helper-refresh.js +102 -12
- package/dist/src/init/helpers-generator.js +52 -0
- package/dist/src/init/mcp-generator.js +11 -6
- package/dist/src/init/statusline-generator.js +282 -116
- package/dist/src/services/daemon-autostart.js +28 -5
- package/dist/src/services/fable-harness.d.ts +39 -0
- package/dist/src/services/fable-harness.js +41 -0
- package/package.json +16 -4
- package/plugins/ruflo-metaharness/scripts/smoke.sh +18 -5
- package/dist/src/ruvector/lattice-wasm.d.ts +0 -14
- package/dist/src/ruvector/lattice-wasm.js +0 -144
- package/plugins/ruflo-metaharness/.claude-flow/data/pending-insights.jsonl +0 -5
- package/plugins/ruflo-metaharness/.claude-flow/neural/stats.json +0 -6
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
{
|
|
2
|
+
"adoptedAt": 1783692950735,
|
|
3
|
+
"championId": "sha256:6141a8ea990c5063b77e090ae8f37f9c539d8aa8f58dcceb30f3a82f97e57319",
|
|
4
|
+
"manifest": {
|
|
5
|
+
"schema": "ruflo.proven-config/v1",
|
|
6
|
+
"policy": {
|
|
7
|
+
"ref": "sha256:6141a8ea990c5063b77e090ae8f37f9c539d8aa8f58dcceb30f3a82f97e57319",
|
|
8
|
+
"value": {
|
|
9
|
+
"alpha": 0.3,
|
|
10
|
+
"subjectWeight": 1,
|
|
11
|
+
"mmrLambda": 0.5,
|
|
12
|
+
"bodyWeight": 1.5,
|
|
13
|
+
"typePenaltyFactor": 0.5
|
|
14
|
+
}
|
|
15
|
+
},
|
|
16
|
+
"layer": "framework/node-cli",
|
|
17
|
+
"compatibility": {
|
|
18
|
+
"ruflo": ">=3.24.0"
|
|
19
|
+
},
|
|
20
|
+
"benchmark": {
|
|
21
|
+
"corpus": "ADR-081-labelled-v1",
|
|
22
|
+
"corpusHash": "sha256:2f700b5c363e20a3bd88ce2bc9b87bbbbaa61732c6177894c6ec37890f888982"
|
|
23
|
+
},
|
|
24
|
+
"receipt": {
|
|
25
|
+
"heldOutDelta": 0.07381404928570845,
|
|
26
|
+
"redblue": "PASS",
|
|
27
|
+
"drift": 0,
|
|
28
|
+
"canary": {
|
|
29
|
+
"rollbackRate": 0,
|
|
30
|
+
"latencyP95": 244.612458000076,
|
|
31
|
+
"costPerTask": 0
|
|
32
|
+
},
|
|
33
|
+
"receiptCoverage": 1
|
|
34
|
+
},
|
|
35
|
+
"platform": [
|
|
36
|
+
"linux",
|
|
37
|
+
"macOS",
|
|
38
|
+
"windows"
|
|
39
|
+
]
|
|
40
|
+
},
|
|
41
|
+
"previous": ""
|
|
42
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* `ruflo advisor` — Fable co-pilot advisor tip in the statusline insight
|
|
3
|
+
* ticker (ADR-316).
|
|
4
|
+
*
|
|
5
|
+
* Client-side only — unlike `proxy.ts`'s sponsored-downtime/power-saver/
|
|
6
|
+
* training-share domains, this feature has NO proxy-config.toml mirror,
|
|
7
|
+
* because it never talks to the meta-proxy Rust binary. It calls
|
|
8
|
+
* `claude -p` directly via services/fable-harness.ts (ADR-172's existing
|
|
9
|
+
* cost-disciplined harness) and caches the result for the insight ticker
|
|
10
|
+
* (funnel/insights.ts) to read synchronously.
|
|
11
|
+
*/
|
|
12
|
+
import type { Command } from '../types.js';
|
|
13
|
+
export declare const advisorCommand: Command;
|
|
14
|
+
export default advisorCommand;
|
|
15
|
+
//# sourceMappingURL=advisor.d.ts.map
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* `ruflo advisor` — Fable co-pilot advisor tip in the statusline insight
|
|
3
|
+
* ticker (ADR-316).
|
|
4
|
+
*
|
|
5
|
+
* Client-side only — unlike `proxy.ts`'s sponsored-downtime/power-saver/
|
|
6
|
+
* training-share domains, this feature has NO proxy-config.toml mirror,
|
|
7
|
+
* because it never talks to the meta-proxy Rust binary. It calls
|
|
8
|
+
* `claude -p` directly via services/fable-harness.ts (ADR-172's existing
|
|
9
|
+
* cost-disciplined harness) and caches the result for the insight ticker
|
|
10
|
+
* (funnel/insights.ts) to read synchronously.
|
|
11
|
+
*/
|
|
12
|
+
import { output } from '../output.js';
|
|
13
|
+
import { hasConsent, recordConsent, revokeConsent } from '../funnel/consent.js';
|
|
14
|
+
import { recordFunnelEvent } from '../funnel/events.js';
|
|
15
|
+
import { getInstalledCliVersion } from '../init/helper-refresh.js';
|
|
16
|
+
import { readAdvisorTip, ADVISOR_DEFAULT_BUDGET_USD } from '../funnel/advisor-tip.js';
|
|
17
|
+
const ADVISOR_DISCLOSURE = [
|
|
18
|
+
'Enabling the co-pilot advisor tip.',
|
|
19
|
+
'',
|
|
20
|
+
'At most once per day, ruflo will send a small STRUCTURAL snapshot of your',
|
|
21
|
+
'session — security scan status, swarm/agent state, git uncommitted-file',
|
|
22
|
+
'COUNT — never raw prompts, file contents, or commands — to a headless',
|
|
23
|
+
'Fable model (via `claude -p`) and cache one short, actionable tip for the',
|
|
24
|
+
'statusline insight ticker.',
|
|
25
|
+
'',
|
|
26
|
+
`This is a real, metered API call (~$${ADVISOR_DEFAULT_BUDGET_USD.toFixed(2)} budget cap per`,
|
|
27
|
+
'refresh, at most once/day). Disable anytime: ruflo advisor disable',
|
|
28
|
+
].join('\n');
|
|
29
|
+
const enableSub = {
|
|
30
|
+
name: 'enable',
|
|
31
|
+
description: 'Opt into the co-pilot advisor tip (ADR-316)',
|
|
32
|
+
options: [
|
|
33
|
+
{ name: 'yes', description: 'Skip the confirmation prompt', type: 'boolean', default: false },
|
|
34
|
+
],
|
|
35
|
+
action: async (ctx) => {
|
|
36
|
+
if (hasConsent('advisor-tips')) {
|
|
37
|
+
output.writeln('Advisor tip is already enabled.');
|
|
38
|
+
return { success: true, data: { alreadyEnabled: true } };
|
|
39
|
+
}
|
|
40
|
+
output.writeln(ADVISOR_DISCLOSURE);
|
|
41
|
+
output.writeln('');
|
|
42
|
+
if (!ctx.flags.yes) {
|
|
43
|
+
output.writeln('Re-run with --yes to confirm: ruflo advisor enable --yes');
|
|
44
|
+
return { success: true, data: { confirmed: false } };
|
|
45
|
+
}
|
|
46
|
+
recordConsent('advisor-tips', true, 'advisor-enable');
|
|
47
|
+
recordFunnelEvent('advisor_tip_enabled', 'statusline', getInstalledCliVersion());
|
|
48
|
+
output.printSuccess('Advisor tip enabled.');
|
|
49
|
+
output.writeln('It refreshes at most once/day, in the background, on session-restore.');
|
|
50
|
+
output.writeln('Disable anytime: ruflo advisor disable');
|
|
51
|
+
return { success: true, data: { confirmed: true } };
|
|
52
|
+
},
|
|
53
|
+
};
|
|
54
|
+
const disableSub = {
|
|
55
|
+
name: 'disable',
|
|
56
|
+
description: 'Revoke advisor-tip consent and stop generating new tips',
|
|
57
|
+
action: async () => {
|
|
58
|
+
revokeConsent('advisor-tips', 'advisor-disable');
|
|
59
|
+
recordFunnelEvent('advisor_tip_disabled', 'statusline', getInstalledCliVersion());
|
|
60
|
+
output.printSuccess('Advisor tip disabled.');
|
|
61
|
+
return { success: true };
|
|
62
|
+
},
|
|
63
|
+
};
|
|
64
|
+
const statusSub = {
|
|
65
|
+
name: 'status',
|
|
66
|
+
description: 'Show advisor-tip consent state and the current cached tip',
|
|
67
|
+
action: async () => {
|
|
68
|
+
const consented = hasConsent('advisor-tips');
|
|
69
|
+
output.writeln(`Advisor tip consent: ${consented ? 'granted' : 'not granted'}`);
|
|
70
|
+
const tip = consented ? readAdvisorTip() : null;
|
|
71
|
+
if (tip) {
|
|
72
|
+
output.writeln(`Current tip: ${tip.headline}`);
|
|
73
|
+
if (tip.detail)
|
|
74
|
+
output.writeln(` ${tip.detail}`);
|
|
75
|
+
}
|
|
76
|
+
else if (consented) {
|
|
77
|
+
output.writeln('No cached tip yet (refreshes at most once/day on session-restore).');
|
|
78
|
+
}
|
|
79
|
+
return { success: true, data: { consented, tip } };
|
|
80
|
+
},
|
|
81
|
+
};
|
|
82
|
+
export const advisorCommand = {
|
|
83
|
+
name: 'advisor',
|
|
84
|
+
description: 'Fable co-pilot advisor tip in the statusline insight ticker (ADR-316)',
|
|
85
|
+
subcommands: [enableSub, disableSub, statusSub],
|
|
86
|
+
examples: [
|
|
87
|
+
{ command: 'ruflo advisor enable --yes', description: 'Opt into the co-pilot advisor tip' },
|
|
88
|
+
{ command: 'ruflo advisor status', description: 'Show consent state + current cached tip' },
|
|
89
|
+
{ command: 'ruflo advisor disable', description: 'Revoke consent and stop generating tips' },
|
|
90
|
+
],
|
|
91
|
+
action: statusSub.action,
|
|
92
|
+
};
|
|
93
|
+
export default advisorCommand;
|
|
94
|
+
//# sourceMappingURL=advisor.js.map
|
|
@@ -135,8 +135,10 @@ async function checkConfigFile() {
|
|
|
135
135
|
* the broken commands).
|
|
136
136
|
*/
|
|
137
137
|
async function checkStaleSettingsNpx() {
|
|
138
|
-
// Same regex pattern the executor migration uses — kept in sync.
|
|
139
|
-
|
|
138
|
+
// Same regex pattern the executor migration uses — kept in sync. Flag-list
|
|
139
|
+
// repetition bounded at 10 (CodeQL js/redos — unbounded `*` here is
|
|
140
|
+
// exponential-backtracking-prone on a crafted settings.json).
|
|
141
|
+
const BROKEN_RE = /npx\s+(?:--?\S+\s+){0,10}@?claude-flow\/cli@latest\s+hooks\s+(?:statusline|\S+)/;
|
|
140
142
|
// Look in both project-local and home-dir settings.
|
|
141
143
|
const candidates = [
|
|
142
144
|
join(process.cwd(), '.claude', 'settings.json'),
|
|
@@ -442,53 +444,98 @@ async function checkMcpServers() {
|
|
|
442
444
|
'.mcp.json',
|
|
443
445
|
];
|
|
444
446
|
const isRufloKey = (k) => k === 'ruflo' || k === 'ruflo_alpha' || k === 'claude-flow' || k === 'claude-flow_alpha';
|
|
447
|
+
// Canonical MCP-server key is `claude-flow` — matches the `mcp__claude-flow__*`
|
|
448
|
+
// prefix that ~166 plugin tool references depend on (#2206). A `ruflo`-keyed
|
|
449
|
+
// entry pointing at the same binary is the legacy duplicate created by
|
|
450
|
+
// pre-rename setup docs that #2612 tracks; doctor treats it as removable.
|
|
451
|
+
const isCurrentRufloKey = (k) => k === 'claude-flow' || k === 'claude-flow_alpha';
|
|
452
|
+
const isLegacyRufloKey = (k) => k === 'ruflo' || k === 'ruflo_alpha';
|
|
453
|
+
const isRufloServer = (server) => {
|
|
454
|
+
if (!server || typeof server !== 'object')
|
|
455
|
+
return false;
|
|
456
|
+
const entry = server;
|
|
457
|
+
const command = typeof entry.command === 'string' ? entry.command : '';
|
|
458
|
+
const args = Array.isArray(entry.args)
|
|
459
|
+
? entry.args.filter((arg) => typeof arg === 'string')
|
|
460
|
+
: [];
|
|
461
|
+
const haystack = [command, ...args].join(' ');
|
|
462
|
+
return /\b(?:ruflo|claude-flow|@claude-flow\/cli)(?:@[\w.-]+)?\b/.test(haystack);
|
|
463
|
+
};
|
|
464
|
+
let totalServersSeen = 0;
|
|
465
|
+
const rufloLocations = [];
|
|
466
|
+
const duplicateLocations = [];
|
|
467
|
+
const legacyLocations = [];
|
|
468
|
+
const currentLocations = [];
|
|
469
|
+
const inspectServers = (servers, location) => {
|
|
470
|
+
if (!servers || typeof servers !== 'object')
|
|
471
|
+
return { total: 0, hasRuflo: false };
|
|
472
|
+
const entries = Object.entries(servers);
|
|
473
|
+
const activeRufloEntries = entries.filter(([key, server]) => isRufloKey(key) && isRufloServer(server));
|
|
474
|
+
const hasLegacy = activeRufloEntries.some(([key]) => isLegacyRufloKey(key));
|
|
475
|
+
const hasCurrent = activeRufloEntries.some(([key]) => isCurrentRufloKey(key));
|
|
476
|
+
if (activeRufloEntries.length > 0) {
|
|
477
|
+
rufloLocations.push(`${location}: ${activeRufloEntries.map(([key]) => key).join(', ')}`);
|
|
478
|
+
}
|
|
479
|
+
if (hasLegacy && hasCurrent) {
|
|
480
|
+
duplicateLocations.push(`${location}: ${activeRufloEntries.map(([key]) => key).join(' + ')}`);
|
|
481
|
+
}
|
|
482
|
+
for (const [key] of activeRufloEntries) {
|
|
483
|
+
if (isLegacyRufloKey(key))
|
|
484
|
+
legacyLocations.push(`${location}: ${key}`);
|
|
485
|
+
if (isCurrentRufloKey(key))
|
|
486
|
+
currentLocations.push(`${location}: ${key}`);
|
|
487
|
+
}
|
|
488
|
+
return { total: entries.length, hasRuflo: activeRufloEntries.length > 0 };
|
|
489
|
+
};
|
|
445
490
|
for (const configPath of mcpConfigPaths) {
|
|
446
491
|
if (!existsSync(configPath))
|
|
447
492
|
continue;
|
|
448
493
|
try {
|
|
449
494
|
const content = JSON.parse(readFileSync(configPath, 'utf8'));
|
|
450
495
|
// Top-level mcpServers (legacy / desktop form)
|
|
451
|
-
const
|
|
452
|
-
|
|
453
|
-
const topHasRuflo = topServerKeys.some(isRufloKey);
|
|
496
|
+
const topResult = inspectServers(content.mcpServers || content.servers || {}, `${configPath} top-level`);
|
|
497
|
+
totalServersSeen += topResult.total;
|
|
454
498
|
// Project-scoped (Claude Code shape): projects[*].mcpServers.ruflo
|
|
455
|
-
let projectHits = 0;
|
|
456
|
-
let projectScannedServers = 0;
|
|
457
499
|
if (content.projects && typeof content.projects === 'object') {
|
|
458
|
-
for (const projectVal of Object.
|
|
500
|
+
for (const [projectKey, projectVal] of Object.entries(content.projects)) {
|
|
459
501
|
const pm = projectVal?.mcpServers;
|
|
460
502
|
if (pm && typeof pm === 'object') {
|
|
461
|
-
const
|
|
462
|
-
|
|
463
|
-
if (keys.some(isRufloKey))
|
|
464
|
-
projectHits += 1;
|
|
503
|
+
const projectResult = inspectServers(pm, `${configPath} projects[${projectKey}]`);
|
|
504
|
+
totalServersSeen += projectResult.total;
|
|
465
505
|
}
|
|
466
506
|
}
|
|
467
507
|
}
|
|
468
|
-
const totalServers = topServerKeys.length + projectScannedServers;
|
|
469
|
-
if (topHasRuflo || projectHits > 0) {
|
|
470
|
-
const where = topHasRuflo
|
|
471
|
-
? 'top-level'
|
|
472
|
-
: `${projectHits} project-scoped`;
|
|
473
|
-
return {
|
|
474
|
-
name: 'MCP Servers',
|
|
475
|
-
status: 'pass',
|
|
476
|
-
message: `${totalServers} servers (ruflo configured: ${where})`,
|
|
477
|
-
};
|
|
478
|
-
}
|
|
479
|
-
if (totalServers > 0) {
|
|
480
|
-
return {
|
|
481
|
-
name: 'MCP Servers',
|
|
482
|
-
status: 'warn',
|
|
483
|
-
message: `${totalServers} servers (ruflo not found)`,
|
|
484
|
-
fix: 'claude mcp add ruflo -- npx -y ruflo@latest mcp start',
|
|
485
|
-
};
|
|
486
|
-
}
|
|
487
508
|
}
|
|
488
509
|
catch {
|
|
489
510
|
// continue to next path
|
|
490
511
|
}
|
|
491
512
|
}
|
|
513
|
+
if (duplicateLocations.length > 0 || (legacyLocations.length > 0 && currentLocations.length > 0)) {
|
|
514
|
+
const locations = duplicateLocations.length > 0
|
|
515
|
+
? duplicateLocations.join('; ')
|
|
516
|
+
: `legacy ${legacyLocations.join('; ')} + current ${currentLocations.join('; ')}`;
|
|
517
|
+
return {
|
|
518
|
+
name: 'MCP Servers',
|
|
519
|
+
status: 'warn',
|
|
520
|
+
message: `Duplicate Ruflo MCP registrations found (${locations}) — Claude Code will start both tool schemas`,
|
|
521
|
+
fix: 'Remove the legacy `ruflo`-keyed MCP registration (pre-rename duplicate) and keep the canonical `claude-flow` entry: `claude mcp add claude-flow -- npx -y ruflo@latest mcp start`. The canonical key stays `claude-flow` so the ~166 `mcp__claude-flow__*` plugin tool references keep resolving (#2206).',
|
|
522
|
+
};
|
|
523
|
+
}
|
|
524
|
+
if (rufloLocations.length > 0) {
|
|
525
|
+
return {
|
|
526
|
+
name: 'MCP Servers',
|
|
527
|
+
status: 'pass',
|
|
528
|
+
message: `${totalServersSeen} servers (ruflo configured: ${rufloLocations.join('; ')})`,
|
|
529
|
+
};
|
|
530
|
+
}
|
|
531
|
+
if (totalServersSeen > 0) {
|
|
532
|
+
return {
|
|
533
|
+
name: 'MCP Servers',
|
|
534
|
+
status: 'warn',
|
|
535
|
+
message: `${totalServersSeen} servers (ruflo not found)`,
|
|
536
|
+
fix: 'claude mcp add claude-flow -- npx -y ruflo@latest mcp start',
|
|
537
|
+
};
|
|
538
|
+
}
|
|
492
539
|
return {
|
|
493
540
|
name: 'MCP Servers',
|
|
494
541
|
status: 'warn',
|
|
@@ -666,6 +713,74 @@ async function checkVersionFreshness() {
|
|
|
666
713
|
* - plugins/ruflo-metaharness/skills/harness-similarity/SKILL.md
|
|
667
714
|
* - plugins/ruflo-metaharness/skills/harness-drift-from-history/SKILL.md (iter 53)
|
|
668
715
|
*/
|
|
716
|
+
/**
|
|
717
|
+
* ADR-305 — funnel state audit. Reports the effective enabled/disabled
|
|
718
|
+
* state and, critically for enterprise audit verification, WHICH
|
|
719
|
+
* precedence source decided it (env > enterprise > user > default).
|
|
720
|
+
* Informational: both states are `pass`; only a resolver failure warns.
|
|
721
|
+
*/
|
|
722
|
+
async function checkFunnel() {
|
|
723
|
+
try {
|
|
724
|
+
const { resolveFunnelEnabled, getDisclosure } = await import('../funnel/index.js');
|
|
725
|
+
const decision = resolveFunnelEnabled();
|
|
726
|
+
const disclosure = getDisclosure();
|
|
727
|
+
return {
|
|
728
|
+
name: 'Funnel (ADR-305)',
|
|
729
|
+
status: 'pass',
|
|
730
|
+
message: `${decision.enabled ? 'enabled' : 'disabled'} (decided by: ${decision.decidedBy}; disclosure: ${disclosure.state})`,
|
|
731
|
+
};
|
|
732
|
+
}
|
|
733
|
+
catch (err) {
|
|
734
|
+
return {
|
|
735
|
+
name: 'Funnel (ADR-305)',
|
|
736
|
+
status: 'warn',
|
|
737
|
+
message: `state unreadable: ${err instanceof Error ? err.message : String(err)}`,
|
|
738
|
+
fix: 'ruflo funnel status',
|
|
739
|
+
};
|
|
740
|
+
}
|
|
741
|
+
}
|
|
742
|
+
/** Meta LLM Proxy — sponsored-downtime health (ADR-313). */
|
|
743
|
+
async function checkProxy() {
|
|
744
|
+
try {
|
|
745
|
+
const { funnelStateDir, hasConsent, readRateLimitStatus, lastRecordedEvent } = await import('../funnel/index.js');
|
|
746
|
+
const dir = funnelStateDir();
|
|
747
|
+
const installed = existsSync(join(dir, 'proxy-token'));
|
|
748
|
+
const consented = hasConsent('sponsored-downtime');
|
|
749
|
+
const rateLimited = readRateLimitStatus();
|
|
750
|
+
const lastExhausted = lastRecordedEvent('sponsor_capacity_exhausted');
|
|
751
|
+
if (!installed) {
|
|
752
|
+
return {
|
|
753
|
+
name: 'Meta LLM Proxy (ADR-313)',
|
|
754
|
+
status: 'warn',
|
|
755
|
+
message: 'not installed — no proxy-token found; sponsored-downtime capacity is unavailable',
|
|
756
|
+
fix: 'See cognitum-one/meta-proxy (private) for install instructions',
|
|
757
|
+
};
|
|
758
|
+
}
|
|
759
|
+
const parts = [
|
|
760
|
+
`sponsored consent: ${consented ? 'granted' : 'not granted'}`,
|
|
761
|
+
`rate-limit flag: ${rateLimited.limited ? `set (since ${rateLimited.since})` : 'not set'}`,
|
|
762
|
+
];
|
|
763
|
+
if (lastExhausted)
|
|
764
|
+
parts.push(`last capacity-exhausted: ${lastExhausted}`);
|
|
765
|
+
if (rateLimited.limited && !consented) {
|
|
766
|
+
return {
|
|
767
|
+
name: 'Meta LLM Proxy (ADR-313)',
|
|
768
|
+
status: 'warn',
|
|
769
|
+
message: `${parts.join('; ')} — flagged rate-limited but sponsored capacity isn't enabled`,
|
|
770
|
+
fix: 'ruflo proxy sponsor-enable --yes',
|
|
771
|
+
};
|
|
772
|
+
}
|
|
773
|
+
return { name: 'Meta LLM Proxy (ADR-313)', status: 'pass', message: parts.join('; ') };
|
|
774
|
+
}
|
|
775
|
+
catch (err) {
|
|
776
|
+
return {
|
|
777
|
+
name: 'Meta LLM Proxy (ADR-313)',
|
|
778
|
+
status: 'warn',
|
|
779
|
+
message: `state unreadable: ${err instanceof Error ? err.message : String(err)}`,
|
|
780
|
+
fix: 'ruflo proxy sponsor-status',
|
|
781
|
+
};
|
|
782
|
+
}
|
|
783
|
+
}
|
|
669
784
|
async function checkMetaharnessIntegration() {
|
|
670
785
|
// Locate plugins dir.
|
|
671
786
|
//
|
|
@@ -1042,7 +1157,7 @@ export const doctorCommand = {
|
|
|
1042
1157
|
{
|
|
1043
1158
|
name: 'component',
|
|
1044
1159
|
short: 'c',
|
|
1045
|
-
description: 'Check specific component (version, node, npm, config, daemon, memory, api, git, mcp, claude, disk, typescript, agentic-flow, encryption, federation, metaharness)',
|
|
1160
|
+
description: 'Check specific component (version, node, npm, config, daemon, memory, api, git, mcp, claude, disk, typescript, agentic-flow, encryption, federation, funnel, proxy, metaharness)',
|
|
1046
1161
|
type: 'string'
|
|
1047
1162
|
},
|
|
1048
1163
|
{
|
|
@@ -1092,6 +1207,8 @@ export const doctorCommand = {
|
|
|
1092
1207
|
checkFederationBreaker, // ADR-097 Phase 4
|
|
1093
1208
|
checkMetaharness, // ADR-150 — MetaHarness upstream package
|
|
1094
1209
|
checkMetaharnessIntegration, // iter 45 — ruflo-side integration layer
|
|
1210
|
+
checkFunnel, // ADR-305 — effective funnel state + deciding precedence source
|
|
1211
|
+
checkProxy, // ADR-313 — Meta LLM Proxy sponsored-downtime health
|
|
1095
1212
|
];
|
|
1096
1213
|
const componentMap = {
|
|
1097
1214
|
'version': checkVersionFreshness,
|
|
@@ -1116,6 +1233,8 @@ export const doctorCommand = {
|
|
|
1116
1233
|
'federation': checkFederationBreaker, // ADR-097 Phase 4
|
|
1117
1234
|
'metaharness': checkMetaharness, // ADR-150 — upstream package
|
|
1118
1235
|
'metaharness-integration': checkMetaharnessIntegration, // iter 45 — ruflo-side
|
|
1236
|
+
'funnel': checkFunnel, // ADR-305
|
|
1237
|
+
'proxy': checkProxy, // ADR-313
|
|
1119
1238
|
};
|
|
1120
1239
|
let checksToRun = allChecks;
|
|
1121
1240
|
if (component && componentMap[component]) {
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* `ruflo funnel` — user control surface for the Cognitum lifecycle funnel
|
|
3
|
+
* (ADR-301/305/309).
|
|
4
|
+
*
|
|
5
|
+
* funnel status effective state and which precedence source decided it
|
|
6
|
+
* funnel disable user-level opt-out (all surfaces) + delete funnel data
|
|
7
|
+
* funnel enable re-enable at the user tier (cannot override env/enterprise)
|
|
8
|
+
* funnel id print the pseudonymous funnel ID, if one exists
|
|
9
|
+
*/
|
|
10
|
+
import type { Command } from '../types.js';
|
|
11
|
+
export declare const funnelCommand: Command;
|
|
12
|
+
export default funnelCommand;
|
|
13
|
+
//# sourceMappingURL=funnel.d.ts.map
|
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* `ruflo funnel` — user control surface for the Cognitum lifecycle funnel
|
|
3
|
+
* (ADR-301/305/309).
|
|
4
|
+
*
|
|
5
|
+
* funnel status effective state and which precedence source decided it
|
|
6
|
+
* funnel disable user-level opt-out (all surfaces) + delete funnel data
|
|
7
|
+
* funnel enable re-enable at the user tier (cannot override env/enterprise)
|
|
8
|
+
* funnel id print the pseudonymous funnel ID, if one exists
|
|
9
|
+
*/
|
|
10
|
+
import { output } from '../output.js';
|
|
11
|
+
import { deleteFunnelData, funnelStateDir, getDisclosure, getFunnelId, readConsents, recordDisclosureDeclined, recordDisclosureReenabled, resolveFunnelEnabled, } from '../funnel/index.js';
|
|
12
|
+
import { readStateJson, writeStateJson } from '../funnel/state.js';
|
|
13
|
+
function setUserConfigEnabled(enabled) {
|
|
14
|
+
const cfg = readStateJson('funnel.json') ?? {};
|
|
15
|
+
cfg.enabled = enabled;
|
|
16
|
+
writeStateJson('funnel.json', cfg);
|
|
17
|
+
}
|
|
18
|
+
const statusSub = {
|
|
19
|
+
name: 'status',
|
|
20
|
+
description: 'Show effective funnel state and which source decided it',
|
|
21
|
+
options: [
|
|
22
|
+
{ name: 'json', description: 'Output as JSON', type: 'boolean', default: false },
|
|
23
|
+
],
|
|
24
|
+
action: async (ctx) => {
|
|
25
|
+
const decision = resolveFunnelEnabled();
|
|
26
|
+
const disclosure = getDisclosure();
|
|
27
|
+
const consents = readConsents();
|
|
28
|
+
const data = {
|
|
29
|
+
enabled: decision.enabled,
|
|
30
|
+
decidedBy: decision.decidedBy,
|
|
31
|
+
disclosure: disclosure.state,
|
|
32
|
+
stateDir: funnelStateDir(),
|
|
33
|
+
consents,
|
|
34
|
+
};
|
|
35
|
+
if (ctx.flags.json) {
|
|
36
|
+
output.printJson(data);
|
|
37
|
+
}
|
|
38
|
+
else {
|
|
39
|
+
output.writeln(`Funnel: ${decision.enabled ? 'enabled' : 'disabled'} (decided by: ${decision.decidedBy})`);
|
|
40
|
+
output.writeln(`Disclosure: ${disclosure.state}`);
|
|
41
|
+
output.writeln(`State dir: ${funnelStateDir()}`);
|
|
42
|
+
const domains = Object.keys(consents);
|
|
43
|
+
output.writeln(domains.length
|
|
44
|
+
? `Consents: ${domains.map((d) => `${d}=${consents[d]?.granted ? 'granted' : 'declined'}`).join(', ')}`
|
|
45
|
+
: 'Consents: none recorded');
|
|
46
|
+
}
|
|
47
|
+
return { success: true, data };
|
|
48
|
+
},
|
|
49
|
+
};
|
|
50
|
+
const disableSub = {
|
|
51
|
+
name: 'disable',
|
|
52
|
+
description: 'Disable all funnel surfaces (user-level, persists across projects)',
|
|
53
|
+
action: async () => {
|
|
54
|
+
setUserConfigEnabled(false);
|
|
55
|
+
recordDisclosureDeclined();
|
|
56
|
+
deleteFunnelData(); // opt-out deletes the pseudonymous ID + local event queue
|
|
57
|
+
output.printSuccess('Funnel disabled. All promotional surfaces are off; local funnel data deleted.');
|
|
58
|
+
return { success: true };
|
|
59
|
+
},
|
|
60
|
+
};
|
|
61
|
+
const enableSub = {
|
|
62
|
+
name: 'enable',
|
|
63
|
+
description: 'Re-enable funnel surfaces at the user tier (env/enterprise disables still win)',
|
|
64
|
+
action: async () => {
|
|
65
|
+
setUserConfigEnabled(true);
|
|
66
|
+
recordDisclosureReenabled();
|
|
67
|
+
const decision = resolveFunnelEnabled();
|
|
68
|
+
if (decision.enabled) {
|
|
69
|
+
output.printSuccess('Funnel enabled.');
|
|
70
|
+
}
|
|
71
|
+
else {
|
|
72
|
+
// A lower-precedence source never overrides a higher-precedence disable.
|
|
73
|
+
output.printWarning(`User preference recorded, but the funnel stays disabled by a higher-precedence source: ${decision.decidedBy}`);
|
|
74
|
+
}
|
|
75
|
+
return { success: true, data: decision };
|
|
76
|
+
},
|
|
77
|
+
};
|
|
78
|
+
const idSub = {
|
|
79
|
+
name: 'id',
|
|
80
|
+
description: 'Print the pseudonymous funnel ID (exists only with telemetry consent)',
|
|
81
|
+
action: async () => {
|
|
82
|
+
const id = getFunnelId();
|
|
83
|
+
if (id) {
|
|
84
|
+
output.writeln(id);
|
|
85
|
+
}
|
|
86
|
+
else {
|
|
87
|
+
output.writeln('No funnel ID (telemetry consent not granted, or funnel data deleted).');
|
|
88
|
+
}
|
|
89
|
+
return { success: true, data: { id } };
|
|
90
|
+
},
|
|
91
|
+
};
|
|
92
|
+
export const funnelCommand = {
|
|
93
|
+
name: 'funnel',
|
|
94
|
+
description: 'Control the Cognitum lifecycle funnel surfaces (tips, enrollment, notices)',
|
|
95
|
+
subcommands: [statusSub, disableSub, enableSub, idSub],
|
|
96
|
+
examples: [
|
|
97
|
+
{ command: 'ruflo funnel status', description: 'Effective state + deciding source' },
|
|
98
|
+
{ command: 'ruflo funnel disable', description: 'Turn off every funnel surface' },
|
|
99
|
+
],
|
|
100
|
+
action: statusSub.action,
|
|
101
|
+
};
|
|
102
|
+
export default funnelCommand;
|
|
103
|
+
//# sourceMappingURL=funnel.js.map
|