@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,86 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Funnel type definitions — ADR-301..310.
|
|
3
|
+
*
|
|
4
|
+
* The funnel is the ruflo → Cognitum lifecycle system: promotional status
|
|
5
|
+
* surface (ADR-301), post-init enrollment (ADR-302), credit-exhaustion
|
|
6
|
+
* recovery (ADR-303), governed by consent receipts (ADR-302), control
|
|
7
|
+
* precedence (ADR-305), and the governance/privacy rules of ADR-309.
|
|
8
|
+
*
|
|
9
|
+
* Everything in this module is local-only: no code path here performs
|
|
10
|
+
* network I/O. Events are queued locally and only when telemetry consent
|
|
11
|
+
* is granted (ADR-308 failure policy: telemetry never blocks the CLI).
|
|
12
|
+
*/
|
|
13
|
+
export type FunnelDisclosureState = 'never_seen' | 'disclosed_enabled' | 'disclosed_disabled';
|
|
14
|
+
export interface DisclosureRecord {
|
|
15
|
+
state: FunnelDisclosureState;
|
|
16
|
+
/** ISO timestamp of the first render of the disclosure text. */
|
|
17
|
+
firstShownAt: string | null;
|
|
18
|
+
}
|
|
19
|
+
export type FunnelMessageClass = 'educational' | 'promotional' | 'disclosure';
|
|
20
|
+
export interface FunnelMessage {
|
|
21
|
+
id: string;
|
|
22
|
+
schemaVersion: 1;
|
|
23
|
+
text: string;
|
|
24
|
+
/** Optional link; must pass the in-code host allowlist or the message is dropped. */
|
|
25
|
+
url?: string;
|
|
26
|
+
class: FunnelMessageClass;
|
|
27
|
+
/** ISO timestamp; expired messages leave the rotation immediately. */
|
|
28
|
+
expiresAt?: string;
|
|
29
|
+
}
|
|
30
|
+
export interface PromoRow {
|
|
31
|
+
text: string;
|
|
32
|
+
kind: 'disclosure' | FunnelMessageClass | 'insight';
|
|
33
|
+
url?: string;
|
|
34
|
+
}
|
|
35
|
+
export type ConsentDomain = 'account' | 'proxy-install' | 'telemetry' | 'cloud-routing' | 'hosted-memory' | 'sponsored-downtime' | 'power-saver' | 'training-data-sharing' | 'advisor-tips';
|
|
36
|
+
export interface ConsentReceipt {
|
|
37
|
+
granted: boolean;
|
|
38
|
+
policyVersion: number;
|
|
39
|
+
/** ISO timestamp of the decision; null = never asked. */
|
|
40
|
+
at: string | null;
|
|
41
|
+
surface: string | null;
|
|
42
|
+
}
|
|
43
|
+
export type ConsentFile = Partial<Record<ConsentDomain, ConsentReceipt>>;
|
|
44
|
+
/** Bump when the meaning of a consent domain changes materially (ADR-302). */
|
|
45
|
+
export declare const CONSENT_POLICY_VERSION = 1;
|
|
46
|
+
export type FunnelDecisionSource = 'env' | 'enterprise-policy' | 'user-config' | 'project-config' | 'package-default' | 'remote-policy' | 'disclosure-declined';
|
|
47
|
+
export interface FunnelEnabledDecision {
|
|
48
|
+
enabled: boolean;
|
|
49
|
+
decidedBy: FunnelDecisionSource;
|
|
50
|
+
}
|
|
51
|
+
export declare enum CreditErrorCode {
|
|
52
|
+
/** Cognitum ledger says balance is spent — the ONLY funnel trigger. */
|
|
53
|
+
COGNITUM_CREDIT_EXHAUSTED = "COGNITUM_CREDIT_EXHAUSTED",
|
|
54
|
+
/** Upstream provider's own quota, not Cognitum credits. */
|
|
55
|
+
PROVIDER_QUOTA_EXHAUSTED = "PROVIDER_QUOTA_EXHAUSTED",
|
|
56
|
+
PROVIDER_RATE_LIMITED = "PROVIDER_RATE_LIMITED",
|
|
57
|
+
AUTHENTICATION_FAILED = "AUTHENTICATION_FAILED",
|
|
58
|
+
SERVICE_UNAVAILABLE = "SERVICE_UNAVAILABLE"
|
|
59
|
+
}
|
|
60
|
+
export interface NormalizedCreditError {
|
|
61
|
+
code: CreditErrorCode | null;
|
|
62
|
+
/** 1 only when an explicit machine-readable provider code mapped; else 0. */
|
|
63
|
+
confidence: 0 | 1;
|
|
64
|
+
retryable: boolean;
|
|
65
|
+
/** Original provider error, preserved verbatim for --verbose paths. */
|
|
66
|
+
cause?: unknown;
|
|
67
|
+
}
|
|
68
|
+
export type FunnelEventName = 'disclosure_shown' | 'funnel_disabled' | 'signup_opened' | 'account_created' | 'proxy_activated' | 'promo_impression' | 'promo_open' | 'sponsor_mode_enabled' | 'sponsor_mode_disabled' | 'sponsor_capacity_exhausted' | 'power_saver_enabled' | 'power_saver_disabled' | 'toggle_cooldown_blocked' | 'training_share_enabled' | 'training_share_disabled' | 'advisor_tip_enabled' | 'advisor_tip_disabled';
|
|
69
|
+
export type FunnelSurface = 'statusline' | 'init' | 'credit_exhaustion';
|
|
70
|
+
export interface FunnelEvent {
|
|
71
|
+
schemaVersion: 1;
|
|
72
|
+
event: FunnelEventName;
|
|
73
|
+
surface: FunnelSurface;
|
|
74
|
+
release: string;
|
|
75
|
+
region?: string;
|
|
76
|
+
pseudonymousId?: string;
|
|
77
|
+
/**
|
|
78
|
+
* Message id for promo_impression / promo_open — lets the analyst
|
|
79
|
+
* attribute clicks + impressions to a specific rotation entry without
|
|
80
|
+
* carrying prompt/URL/PII data.
|
|
81
|
+
*/
|
|
82
|
+
messageId?: string;
|
|
83
|
+
/** Daily bucket ("2026-07-10") — full timestamps are never recorded. */
|
|
84
|
+
timestampBucket: string;
|
|
85
|
+
}
|
|
86
|
+
//# sourceMappingURL=types.d.ts.map
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Funnel type definitions — ADR-301..310.
|
|
3
|
+
*
|
|
4
|
+
* The funnel is the ruflo → Cognitum lifecycle system: promotional status
|
|
5
|
+
* surface (ADR-301), post-init enrollment (ADR-302), credit-exhaustion
|
|
6
|
+
* recovery (ADR-303), governed by consent receipts (ADR-302), control
|
|
7
|
+
* precedence (ADR-305), and the governance/privacy rules of ADR-309.
|
|
8
|
+
*
|
|
9
|
+
* Everything in this module is local-only: no code path here performs
|
|
10
|
+
* network I/O. Events are queued locally and only when telemetry consent
|
|
11
|
+
* is granted (ADR-308 failure policy: telemetry never blocks the CLI).
|
|
12
|
+
*/
|
|
13
|
+
/** Bump when the meaning of a consent domain changes materially (ADR-302). */
|
|
14
|
+
export const CONSENT_POLICY_VERSION = 1;
|
|
15
|
+
// ─── ADR-303: credit error taxonomy ─────────────────────────────────────────
|
|
16
|
+
export var CreditErrorCode;
|
|
17
|
+
(function (CreditErrorCode) {
|
|
18
|
+
/** Cognitum ledger says balance is spent — the ONLY funnel trigger. */
|
|
19
|
+
CreditErrorCode["COGNITUM_CREDIT_EXHAUSTED"] = "COGNITUM_CREDIT_EXHAUSTED";
|
|
20
|
+
/** Upstream provider's own quota, not Cognitum credits. */
|
|
21
|
+
CreditErrorCode["PROVIDER_QUOTA_EXHAUSTED"] = "PROVIDER_QUOTA_EXHAUSTED";
|
|
22
|
+
CreditErrorCode["PROVIDER_RATE_LIMITED"] = "PROVIDER_RATE_LIMITED";
|
|
23
|
+
CreditErrorCode["AUTHENTICATION_FAILED"] = "AUTHENTICATION_FAILED";
|
|
24
|
+
CreditErrorCode["SERVICE_UNAVAILABLE"] = "SERVICE_UNAVAILABLE";
|
|
25
|
+
})(CreditErrorCode || (CreditErrorCode = {}));
|
|
26
|
+
//# sourceMappingURL=types.js.map
|
|
@@ -341,7 +341,11 @@ function mergeSettingsForUpgrade(existing) {
|
|
|
341
341
|
// load the ONNX model on every fire (~1s); Claude Code times out and hides
|
|
342
342
|
// the status bar (#2450). The migration replaces the whole command with
|
|
343
343
|
// NEW_STATUSLINE_CMD which invokes the local helper directly via `node -e`.
|
|
344
|
-
|
|
344
|
+
// Flag-list repetition bounded at 10 (real invocations never carry more) —
|
|
345
|
+
// an unbounded `*` here is exponential-backtracking-prone (CodeQL
|
|
346
|
+
// js/redos): a crafted settings.json command string with dozens of
|
|
347
|
+
// dash-token repetitions can hang this check for minutes.
|
|
348
|
+
const BROKEN_STATUSLINE_RE = /(?:npx\s+(?:--?\S+\s+){0,10})?@?claude-flow(?:\/cli)?(?:@\S+)?\s+hooks\s+statusline/;
|
|
345
349
|
const existingStatusLine = existing.statusLine;
|
|
346
350
|
if (existingStatusLine) {
|
|
347
351
|
const existingCmd = typeof existingStatusLine.command === 'string' ? existingStatusLine.command : '';
|
|
@@ -361,7 +365,8 @@ function mergeSettingsForUpgrade(existing) {
|
|
|
361
365
|
// We walk each hook event's `hooks[]` and swap any command matching the
|
|
362
366
|
// broken pattern for the local-helper form. Idempotent: re-running this
|
|
363
367
|
// migration on already-correct settings is a no-op.
|
|
364
|
-
|
|
368
|
+
// Bounded for the same reason as BROKEN_STATUSLINE_RE above (CodeQL js/redos).
|
|
369
|
+
const BROKEN_HOOK_RE = /npx\s+(?:--?\S+\s+){0,10}@?claude-flow\/cli@latest\s+hooks\s+(\S+)/;
|
|
365
370
|
const localHookCmd = (sub) => {
|
|
366
371
|
// POSIX form mirrors settings-generator.ts::hookCmd() exactly.
|
|
367
372
|
// Windows users hit a separate code path (cmd /c …) — Claude Code on
|
|
@@ -456,7 +461,8 @@ export async function executeUpgrade(targetDir, upgradeSettings = false) {
|
|
|
456
461
|
// 0. ALWAYS update critical helpers (force overwrite)
|
|
457
462
|
const sourceHelpersForUpgrade = findSourceHelpersDir();
|
|
458
463
|
if (sourceHelpersForUpgrade) {
|
|
459
|
-
|
|
464
|
+
// Keep in sync with helper-refresh.ts:CRITICAL_HELPERS.
|
|
465
|
+
const criticalHelpers = ['auto-memory-hook.mjs', 'hook-handler.cjs', 'intelligence.cjs', 'statusline.cjs'];
|
|
460
466
|
for (const helperName of criticalHelpers) {
|
|
461
467
|
const targetPath = path.join(targetDir, '.claude', 'helpers', helperName);
|
|
462
468
|
const sourcePath = path.join(sourceHelpersForUpgrade, helperName);
|
|
@@ -807,7 +813,7 @@ async function writeSettings(targetDir, options, result) {
|
|
|
807
813
|
* "same MCP server twice under two different prefixes" duplication the
|
|
808
814
|
* issue describes.
|
|
809
815
|
*
|
|
810
|
-
* Returns the path of the file that already declares `ruflo` (so we can
|
|
816
|
+
* Returns the path of the file that already declares `ruflo`/`claude-flow` (so we can
|
|
811
817
|
* surface it in the skipped-message), or null if none found.
|
|
812
818
|
*/
|
|
813
819
|
function detectExistingRufloMCP(targetDir) {
|
|
@@ -840,10 +846,9 @@ function detectExistingRufloMCP(targetDir) {
|
|
|
840
846
|
if (!parsed || typeof parsed !== 'object')
|
|
841
847
|
continue;
|
|
842
848
|
// (a) Top-level mcpServers (legacy / global form).
|
|
843
|
-
//
|
|
844
|
-
//
|
|
845
|
-
//
|
|
846
|
-
// 'claude-flow', a second `ruflo init` must still recognise the existing install.
|
|
849
|
+
// Accept BOTH names so init does not add a second server for the same
|
|
850
|
+
// binary when a project carries a pre-rename `claude-flow` registration
|
|
851
|
+
// and the current generator would write `ruflo` (#2612).
|
|
847
852
|
if (parsed.mcpServers && typeof parsed.mcpServers === 'object') {
|
|
848
853
|
const servers = parsed.mcpServers;
|
|
849
854
|
// #2369: also recognise the legacy dist-tag keys generated by
|
|
@@ -859,10 +864,9 @@ function detectExistingRufloMCP(targetDir) {
|
|
|
859
864
|
}
|
|
860
865
|
// (b) #1840: Claude Code project-scoped registrations under
|
|
861
866
|
// parsed.projects[<projectPath>].mcpServers. Match by
|
|
862
|
-
// normalized path against targetDir or any of its ancestors so
|
|
863
|
-
//
|
|
867
|
+
// normalized path against targetDir or any of its ancestors so an
|
|
868
|
+
// existing `claude-flow` or `ruflo` registration in this repo is
|
|
864
869
|
// detected even when Claude stored the key with different casing/slash style.
|
|
865
|
-
// #2207: accept both keys here too.
|
|
866
870
|
if (parsed.projects && typeof parsed.projects === 'object') {
|
|
867
871
|
for (const [projectKey, projectVal] of Object.entries(parsed.projects)) {
|
|
868
872
|
if (!projectVal || typeof projectVal !== 'object')
|
|
@@ -925,16 +929,18 @@ async function writeMCPConfig(targetDir, options, result) {
|
|
|
925
929
|
result.skipped.push('.mcp.json');
|
|
926
930
|
return;
|
|
927
931
|
}
|
|
928
|
-
// #1779 — Skip writing if the user already has
|
|
929
|
-
//
|
|
930
|
-
//
|
|
931
|
-
//
|
|
932
|
-
//
|
|
933
|
-
//
|
|
932
|
+
// #1779/#2612 — Skip writing if the user already has this MCP server
|
|
933
|
+
// registered elsewhere (parent .mcp.json, ~/.claude.json, etc). The
|
|
934
|
+
// canonical key is `claude-flow` (per #2206 — matches mcp__claude-flow__*
|
|
935
|
+
// plugin tool refs); a stray `ruflo`-keyed entry pointing at the same
|
|
936
|
+
// binary is the legacy-duplicate form that #2612 healed. Writing our
|
|
937
|
+
// fresh `claude-flow` entry on top of either variant starts the same
|
|
938
|
+
// binary twice under two tool namespaces. Force-mode (`--force`)
|
|
939
|
+
// bypasses this guard for users who actually want both registrations.
|
|
934
940
|
if (!options.force) {
|
|
935
941
|
const existingRufloPath = detectExistingRufloMCP(targetDir);
|
|
936
942
|
if (existingRufloPath) {
|
|
937
|
-
result.skipped.push(`.mcp.json (existing
|
|
943
|
+
result.skipped.push(`.mcp.json (existing ruflo/claude-flow MCP registration found at ${existingRufloPath} — would create duplicate; pass --force to write anyway)`);
|
|
938
944
|
return;
|
|
939
945
|
}
|
|
940
946
|
}
|
|
@@ -1880,7 +1886,7 @@ npx @claude-flow/cli@latest hive-mind consensus --propose "task"
|
|
|
1880
1886
|
### MCP Server Setup
|
|
1881
1887
|
\`\`\`bash
|
|
1882
1888
|
# Add Ruflo MCP
|
|
1883
|
-
claude mcp add ruflo -- npx -y ruflo@latest
|
|
1889
|
+
claude mcp add ruflo -- npx -y ruflo@latest mcp start
|
|
1884
1890
|
|
|
1885
1891
|
# Optional servers
|
|
1886
1892
|
claude mcp add ruv-swarm -- npx -y ruv-swarm mcp start
|
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
export declare const HELPERS_STAMP_FILE = ".helpers-version";
|
|
2
|
-
/**
|
|
2
|
+
/**
|
|
3
|
+
* ruflo-owned helpers that carry hook logic (or the render surface for the
|
|
4
|
+
* funnel disclosure row) and must track the package version. Adding to this
|
|
5
|
+
* list REQUIRES re-signing `helpers.manifest.json` at publish time — the
|
|
6
|
+
* integrity gate below refuses any file it doesn't have a signed hash for.
|
|
7
|
+
*/
|
|
3
8
|
export declare const CRITICAL_HELPERS: string[];
|
|
4
9
|
/** Installed @claude-flow/cli version — the value the helpers are stamped with. */
|
|
5
10
|
export declare function getInstalledCliVersion(): string;
|
|
@@ -9,8 +14,34 @@ export declare function getInstalledCliVersion(): string;
|
|
|
9
14
|
* stamp read + string compare (sub-ms); the copy runs at most once per version
|
|
10
15
|
* bump. Best-effort, never throws. No-op outside a ruflo project (requires an
|
|
11
16
|
* existing hook-handler.cjs — never creates files in an unrelated directory).
|
|
17
|
+
*
|
|
18
|
+
* FORWARD-ONLY (never downgrades): refreshing on any mere INEQUALITY, rather
|
|
19
|
+
* than only when the installed version is semver-NEWER, is a real corruption
|
|
20
|
+
* vector — confirmed live: a stray/older installed binary (a stale `npx`
|
|
21
|
+
* cache, a marketplace install lagging behind an unpublished dev-tree fix)
|
|
22
|
+
* running `daemon start` (or any command) against THIS project directory
|
|
23
|
+
* would see its own older version != the project's newer stamp and silently
|
|
24
|
+
* overwrite hand-fixed `hook-handler.cjs`/`intelligence.cjs` with its own
|
|
25
|
+
* older, already-superseded bundled copies. Comparing with `semver.gt`
|
|
26
|
+
* instead of `!==` makes that impossible: an older or equal installed
|
|
27
|
+
* version is always a no-op, regardless of how it got invoked.
|
|
28
|
+
*
|
|
29
|
+
* `opts` exists for tests ONLY (mirrors daemon-autostart.ts's injectable
|
|
30
|
+
* `SpawnDaemonFn` pattern): the real signed-copy path is otherwise coupled to
|
|
31
|
+
* THIS repo's actual current `.claude/helpers` + its real Ed25519 signature —
|
|
32
|
+
* fine for production (that coupling to the real source IS the point), but
|
|
33
|
+
* it means a test exercising that path for real would only pass when this
|
|
34
|
+
* repo's manifest happens to be currently re-signed, which is a separately-
|
|
35
|
+
* gated, occasionally-stale publish-time step. `sourceDirOverride` +
|
|
36
|
+
* `pubkeyPemOverride` let a test build its own tiny, throwaway-keypair-
|
|
37
|
+
* signed fixture and get real, deterministic coverage of the verify → hash →
|
|
38
|
+
* copy logic without depending on that.
|
|
12
39
|
*/
|
|
13
|
-
export declare function autoRefreshHelpersIfStale(cwd: string
|
|
40
|
+
export declare function autoRefreshHelpersIfStale(cwd: string, opts?: {
|
|
41
|
+
sourceDirOverride?: string;
|
|
42
|
+
pubkeyPemOverride?: string;
|
|
43
|
+
versionOverride?: string;
|
|
44
|
+
}): Promise<{
|
|
14
45
|
refreshed: boolean;
|
|
15
46
|
from?: string;
|
|
16
47
|
to?: string;
|
|
@@ -17,11 +17,55 @@ import * as fs from 'fs';
|
|
|
17
17
|
import * as path from 'path';
|
|
18
18
|
import { fileURLToPath } from 'url';
|
|
19
19
|
import { createRequire } from 'module';
|
|
20
|
+
import * as semver from 'semver';
|
|
20
21
|
import { verifyHelpersManifest, sha256Hex, HELPERS_MANIFEST_FILE, } from './helper-signing.js';
|
|
21
22
|
const __dirname = path.dirname(fileURLToPath(import.meta.url));
|
|
23
|
+
/**
|
|
24
|
+
* Walk up from `startDir` to the nearest ancestor whose `package.json` names
|
|
25
|
+
* `@claude-flow/cli` — depth-independent, unlike a hardcoded `'..','..',
|
|
26
|
+
* '..'`. That fixed count assumed this module always runs compiled, three
|
|
27
|
+
* levels under the package root (`dist/src/init/helper-refresh.js`); it
|
|
28
|
+
* silently breaks whenever the module runs from a different depth — e.g.
|
|
29
|
+
* loaded straight from `src/init/helper-refresh.ts` (one level shallower:
|
|
30
|
+
* ts-node, tsx, or a test runner that transforms TS in place rather than
|
|
31
|
+
* requiring a prior `tsc` build). When that happened here, BOTH
|
|
32
|
+
* `getInstalledCliVersion()` silently fell back to the placeholder `'0.0.0'`
|
|
33
|
+
* AND `findPackageHelpersDir()` silently failed to resolve the real package
|
|
34
|
+
* helpers dir — with no error surfaced, just wrong values propagating into
|
|
35
|
+
* version-comparison and refresh-source-selection logic. Real ceiling on the
|
|
36
|
+
* walk (`maxUp`) so a package.json-less filesystem can't loop forever.
|
|
37
|
+
*/
|
|
38
|
+
function findPackageRoot(startDir, maxUp = 6) {
|
|
39
|
+
let dir = startDir;
|
|
40
|
+
for (let i = 0; i < maxUp; i++) {
|
|
41
|
+
try {
|
|
42
|
+
const pkg = JSON.parse(fs.readFileSync(path.join(dir, 'package.json'), 'utf-8'));
|
|
43
|
+
if (pkg && pkg.name === '@claude-flow/cli')
|
|
44
|
+
return dir;
|
|
45
|
+
}
|
|
46
|
+
catch { /* no package.json here, or unreadable — keep climbing */ }
|
|
47
|
+
const parent = path.dirname(dir);
|
|
48
|
+
if (parent === dir)
|
|
49
|
+
break; // reached filesystem root
|
|
50
|
+
dir = parent;
|
|
51
|
+
}
|
|
52
|
+
return null;
|
|
53
|
+
}
|
|
22
54
|
export const HELPERS_STAMP_FILE = '.helpers-version';
|
|
23
|
-
/**
|
|
24
|
-
|
|
55
|
+
/**
|
|
56
|
+
* ruflo-owned helpers that carry hook logic (or the render surface for the
|
|
57
|
+
* funnel disclosure row) and must track the package version. Adding to this
|
|
58
|
+
* list REQUIRES re-signing `helpers.manifest.json` at publish time — the
|
|
59
|
+
* integrity gate below refuses any file it doesn't have a signed hash for.
|
|
60
|
+
*/
|
|
61
|
+
export const CRITICAL_HELPERS = [
|
|
62
|
+
'auto-memory-hook.mjs',
|
|
63
|
+
'hook-handler.cjs',
|
|
64
|
+
'intelligence.cjs',
|
|
65
|
+
// statusline.cjs is here so the funnel disclosure row (ADR-301) reaches
|
|
66
|
+
// existing installs on the next `ruflo` command, not only fresh `ruflo init`.
|
|
67
|
+
'statusline.cjs',
|
|
68
|
+
];
|
|
25
69
|
/** Installed @claude-flow/cli version — the value the helpers are stamped with. */
|
|
26
70
|
export function getInstalledCliVersion() {
|
|
27
71
|
try {
|
|
@@ -30,9 +74,11 @@ export function getInstalledCliVersion() {
|
|
|
30
74
|
return String(pkg.version || '0.0.0');
|
|
31
75
|
}
|
|
32
76
|
catch {
|
|
33
|
-
|
|
77
|
+
const root = findPackageRoot(__dirname);
|
|
78
|
+
if (!root)
|
|
79
|
+
return '0.0.0';
|
|
34
80
|
try {
|
|
35
|
-
const pkg = JSON.parse(fs.readFileSync(path.
|
|
81
|
+
const pkg = JSON.parse(fs.readFileSync(path.join(root, 'package.json'), 'utf-8'));
|
|
36
82
|
return String(pkg.version || '0.0.0');
|
|
37
83
|
}
|
|
38
84
|
catch {
|
|
@@ -49,7 +95,9 @@ function findPackageHelpersDir() {
|
|
|
49
95
|
candidates.push(path.join(pkgRoot, '.claude', 'helpers'));
|
|
50
96
|
}
|
|
51
97
|
catch { /* not resolvable */ }
|
|
52
|
-
|
|
98
|
+
const root = findPackageRoot(__dirname);
|
|
99
|
+
if (root)
|
|
100
|
+
candidates.push(path.join(root, '.claude', 'helpers'));
|
|
53
101
|
for (const c of candidates) {
|
|
54
102
|
if (fs.existsSync(path.join(c, 'hook-handler.cjs')))
|
|
55
103
|
return c;
|
|
@@ -67,13 +115,16 @@ function findPackageHelpersDir() {
|
|
|
67
115
|
* fallback needs no manifest — that content comes from the CLI's own compiled
|
|
68
116
|
* code, which is already the trust root.
|
|
69
117
|
*/
|
|
70
|
-
async function writeCriticalHelpers(helpersDir, version) {
|
|
71
|
-
const source = findPackageHelpersDir();
|
|
118
|
+
async function writeCriticalHelpers(helpersDir, version, opts = {}) {
|
|
119
|
+
const source = opts.sourceDirOverride ?? findPackageHelpersDir();
|
|
72
120
|
if (source) {
|
|
73
|
-
// 1. Verify the signed manifest against the baked public key
|
|
121
|
+
// 1. Verify the signed manifest against the baked public key (or, in
|
|
122
|
+
// tests, an injected throwaway key — see autoRefreshHelpersIfStale's
|
|
123
|
+
// opts.pubkeyPemOverride doc comment for why that injection point
|
|
124
|
+
// exists at all).
|
|
74
125
|
let trusted = null;
|
|
75
126
|
try {
|
|
76
|
-
trusted = verifyHelpersManifest(fs.readFileSync(path.join(source, HELPERS_MANIFEST_FILE), 'utf-8'));
|
|
127
|
+
trusted = verifyHelpersManifest(fs.readFileSync(path.join(source, HELPERS_MANIFEST_FILE), 'utf-8'), opts.pubkeyPemOverride);
|
|
77
128
|
}
|
|
78
129
|
catch {
|
|
79
130
|
trusted = null;
|
|
@@ -118,10 +169,19 @@ async function writeCriticalHelpers(helpersDir, version) {
|
|
|
118
169
|
// Fallback: source unresolvable (broken npx paths) — regenerate from the CLI's
|
|
119
170
|
// OWN compiled generators (the trust root; no external file to verify).
|
|
120
171
|
const gen = await import('./helpers-generator.js');
|
|
172
|
+
const statusGen = await import('./statusline-generator.js');
|
|
121
173
|
const files = {
|
|
122
174
|
'hook-handler.cjs': gen.generateHookHandler(),
|
|
123
175
|
'intelligence.cjs': gen.generateIntelligenceStub(),
|
|
124
176
|
'auto-memory-hook.mjs': gen.generateAutoMemoryHook(),
|
|
177
|
+
// Fallback needs the same generator inputs `ruflo init` uses. We match the
|
|
178
|
+
// hardcoded default (maxAgents 15) because the fallback fires when the
|
|
179
|
+
// installed package is unresolvable — no way to read the user's project
|
|
180
|
+
// config from here. Fresh `ruflo init` still generates a per-project value.
|
|
181
|
+
'statusline.cjs': statusGen.generateStatuslineScript({
|
|
182
|
+
statusline: { enabled: true, style: 'compact' },
|
|
183
|
+
runtime: { maxAgents: 15 },
|
|
184
|
+
}),
|
|
125
185
|
};
|
|
126
186
|
let wrote = false;
|
|
127
187
|
for (const [name, content] of Object.entries(files)) {
|
|
@@ -147,13 +207,35 @@ async function writeCriticalHelpers(helpersDir, version) {
|
|
|
147
207
|
* stamp read + string compare (sub-ms); the copy runs at most once per version
|
|
148
208
|
* bump. Best-effort, never throws. No-op outside a ruflo project (requires an
|
|
149
209
|
* existing hook-handler.cjs — never creates files in an unrelated directory).
|
|
210
|
+
*
|
|
211
|
+
* FORWARD-ONLY (never downgrades): refreshing on any mere INEQUALITY, rather
|
|
212
|
+
* than only when the installed version is semver-NEWER, is a real corruption
|
|
213
|
+
* vector — confirmed live: a stray/older installed binary (a stale `npx`
|
|
214
|
+
* cache, a marketplace install lagging behind an unpublished dev-tree fix)
|
|
215
|
+
* running `daemon start` (or any command) against THIS project directory
|
|
216
|
+
* would see its own older version != the project's newer stamp and silently
|
|
217
|
+
* overwrite hand-fixed `hook-handler.cjs`/`intelligence.cjs` with its own
|
|
218
|
+
* older, already-superseded bundled copies. Comparing with `semver.gt`
|
|
219
|
+
* instead of `!==` makes that impossible: an older or equal installed
|
|
220
|
+
* version is always a no-op, regardless of how it got invoked.
|
|
221
|
+
*
|
|
222
|
+
* `opts` exists for tests ONLY (mirrors daemon-autostart.ts's injectable
|
|
223
|
+
* `SpawnDaemonFn` pattern): the real signed-copy path is otherwise coupled to
|
|
224
|
+
* THIS repo's actual current `.claude/helpers` + its real Ed25519 signature —
|
|
225
|
+
* fine for production (that coupling to the real source IS the point), but
|
|
226
|
+
* it means a test exercising that path for real would only pass when this
|
|
227
|
+
* repo's manifest happens to be currently re-signed, which is a separately-
|
|
228
|
+
* gated, occasionally-stale publish-time step. `sourceDirOverride` +
|
|
229
|
+
* `pubkeyPemOverride` let a test build its own tiny, throwaway-keypair-
|
|
230
|
+
* signed fixture and get real, deterministic coverage of the verify → hash →
|
|
231
|
+
* copy logic without depending on that.
|
|
150
232
|
*/
|
|
151
|
-
export async function autoRefreshHelpersIfStale(cwd) {
|
|
233
|
+
export async function autoRefreshHelpersIfStale(cwd, opts = {}) {
|
|
152
234
|
try {
|
|
153
235
|
const helpersDir = path.join(cwd, '.claude', 'helpers');
|
|
154
236
|
if (!fs.existsSync(path.join(helpersDir, 'hook-handler.cjs')))
|
|
155
237
|
return { refreshed: false };
|
|
156
|
-
const version = getInstalledCliVersion();
|
|
238
|
+
const version = opts.versionOverride ?? getInstalledCliVersion();
|
|
157
239
|
let stamped = '';
|
|
158
240
|
try {
|
|
159
241
|
stamped = fs.readFileSync(path.join(helpersDir, HELPERS_STAMP_FILE), 'utf-8').trim();
|
|
@@ -161,7 +243,15 @@ export async function autoRefreshHelpersIfStale(cwd) {
|
|
|
161
243
|
catch { /* pre-feature: unstamped */ }
|
|
162
244
|
if (stamped === version)
|
|
163
245
|
return { refreshed: false }; // up to date — fast path
|
|
164
|
-
|
|
246
|
+
if (stamped && semver.valid(stamped) && semver.valid(version) && semver.gte(stamped, version)) {
|
|
247
|
+
// Stamped version is already >= what this binary reports — refreshing
|
|
248
|
+
// would silently DOWNGRADE the project's helpers. Skip, untouched.
|
|
249
|
+
return { refreshed: false };
|
|
250
|
+
}
|
|
251
|
+
const res = await writeCriticalHelpers(helpersDir, version, {
|
|
252
|
+
sourceDirOverride: opts.sourceDirOverride,
|
|
253
|
+
pubkeyPemOverride: opts.pubkeyPemOverride,
|
|
254
|
+
});
|
|
165
255
|
// A blocked refresh is a SECURITY signal (tampered source/manifest) — surface
|
|
166
256
|
// it, don't advance the stamp, and leave the project's existing helpers intact.
|
|
167
257
|
if (res.blocked)
|
|
@@ -448,6 +448,7 @@ export function generateHookHandler() {
|
|
|
448
448
|
'',
|
|
449
449
|
"const path = require('path');",
|
|
450
450
|
"const fs = require('fs');",
|
|
451
|
+
"const os = require('os');",
|
|
451
452
|
'',
|
|
452
453
|
'const helpersDir = __dirname;',
|
|
453
454
|
'',
|
|
@@ -537,6 +538,57 @@ export function generateHookHandler() {
|
|
|
537
538
|
' } else {',
|
|
538
539
|
" console.log('[INFO] Router not available, using default routing');",
|
|
539
540
|
' }',
|
|
541
|
+
'',
|
|
542
|
+
' // Rate-limit -> sponsored-capacity nudge (ADR-312/313). Fires here,',
|
|
543
|
+
' // client-side, BEFORE the API call this prompt would make - so it',
|
|
544
|
+
' // still reaches the transcript even if that call then fails from the',
|
|
545
|
+
' // rate limit. Cheap local file reads only; never a network call or a',
|
|
546
|
+
' // child process, so it cannot add latency to prompt submission.',
|
|
547
|
+
' try {',
|
|
548
|
+
" var rlFunnelEnv = process.env.RUFLO_FUNNEL;",
|
|
549
|
+
' var rlDisabledByEnv = rlFunnelEnv !== undefined && /^(0|false|off|no)$/i.test(String(rlFunnelEnv).trim());',
|
|
550
|
+
" var rlCiVars = ['CI', 'GITHUB_ACTIONS', 'GITLAB_CI', 'CIRCLECI', 'TRAVIS', 'BUILDKITE', 'JENKINS_URL', 'TEAMCITY_VERSION', 'TF_BUILD'];",
|
|
551
|
+
' var rlIsCi = rlCiVars.some(function (v) {',
|
|
552
|
+
' var val = process.env[v];',
|
|
553
|
+
" return val !== undefined && val !== '' && val !== '0' && String(val).toLowerCase() !== 'false';",
|
|
554
|
+
' });',
|
|
555
|
+
" var rlHome = path.join(os.homedir(), '.ruflo');",
|
|
556
|
+
' var rlUserDisabled = false;',
|
|
557
|
+
' try {',
|
|
558
|
+
" var rlUserCfg = JSON.parse(fs.readFileSync(path.join(rlHome, 'funnel.json'), 'utf8'));",
|
|
559
|
+
' rlUserDisabled = !!(rlUserCfg && rlUserCfg.enabled === false);',
|
|
560
|
+
' } catch (e) { /* absent/malformed = not disabled */ }',
|
|
561
|
+
' var rlProjectDisabled = false;',
|
|
562
|
+
' try {',
|
|
563
|
+
" var rlProjCfg = JSON.parse(fs.readFileSync(path.join(process.cwd(), 'claude-flow.config.json'), 'utf8'));",
|
|
564
|
+
' rlProjectDisabled = !!(rlProjCfg && rlProjCfg.funnel && rlProjCfg.funnel.enabled === false);',
|
|
565
|
+
' } catch (e) { /* absent/malformed = not disabled */ }',
|
|
566
|
+
'',
|
|
567
|
+
' if (!rlDisabledByEnv && !rlIsCi && !rlUserDisabled && !rlProjectDisabled) {',
|
|
568
|
+
' var rlStatus = null;',
|
|
569
|
+
" try { rlStatus = JSON.parse(fs.readFileSync(path.join(rlHome, 'rate-limit-status.json'), 'utf8')); } catch (e) { /* not flagged */ }",
|
|
570
|
+
' var rlIsLimited = false;',
|
|
571
|
+
' if (rlStatus && rlStatus.limited) {',
|
|
572
|
+
' if (rlStatus.since) {',
|
|
573
|
+
' var rlSinceMs = Date.parse(rlStatus.since);',
|
|
574
|
+
' rlIsLimited = isNaN(rlSinceMs) ? true : (Date.now() - rlSinceMs) < 6 * 60 * 60 * 1000;',
|
|
575
|
+
' } else {',
|
|
576
|
+
' rlIsLimited = true;',
|
|
577
|
+
' }',
|
|
578
|
+
' }',
|
|
579
|
+
' if (rlIsLimited) {',
|
|
580
|
+
' var rlConsented = false;',
|
|
581
|
+
' try {',
|
|
582
|
+
" var rlConsentFile = JSON.parse(fs.readFileSync(path.join(rlHome, 'consent.json'), 'utf8'));",
|
|
583
|
+
" var rlReceipt = rlConsentFile && rlConsentFile['sponsored-downtime'];",
|
|
584
|
+
' rlConsented = !!(rlReceipt && rlReceipt.granted === true && rlReceipt.at !== null && rlReceipt.policyVersion === 1);',
|
|
585
|
+
' } catch (e) { /* not consented */ }',
|
|
586
|
+
' if (!rlConsented) {',
|
|
587
|
+
" console.log('[COGNITUM] Hit your Claude usage limit? Free sponsored capacity is available at cognitum.one/meta-llm -- run: ruflo proxy sponsor-enable --yes');",
|
|
588
|
+
' }',
|
|
589
|
+
' }',
|
|
590
|
+
' }',
|
|
591
|
+
' } catch (e) { /* nudge must never break the hook */ }',
|
|
540
592
|
' },',
|
|
541
593
|
'',
|
|
542
594
|
" 'pre-bash': () => {",
|
|
@@ -40,10 +40,15 @@ export function generateMCPConfig(options) {
|
|
|
40
40
|
const npmEnv = {
|
|
41
41
|
npm_config_update_notifier: 'false',
|
|
42
42
|
};
|
|
43
|
-
// Ruflo MCP server (core) —
|
|
44
|
-
//
|
|
45
|
-
//
|
|
46
|
-
//
|
|
43
|
+
// Ruflo MCP server (core) — the registration KEY is intentionally
|
|
44
|
+
// `claude-flow` (not `ruflo`) because #2206 established that all ~166
|
|
45
|
+
// plugin tool references use `mcp__claude-flow__*`. The invoked binary
|
|
46
|
+
// is `ruflo@latest` (the post-rename wrapper) — only the registration
|
|
47
|
+
// name stays legacy so plugin tool resolution keeps working.
|
|
48
|
+
// #2612 (duplicate `claude-flow` + `ruflo` registrations after users
|
|
49
|
+
// followed pre-rename setup docs) is healed by `ruflo doctor`, which
|
|
50
|
+
// detects the duplicate and instructs the operator to remove the
|
|
51
|
+
// extra `ruflo`-keyed entry — NOT by flipping the canonical key here.
|
|
47
52
|
if (config.claudeFlow) {
|
|
48
53
|
mcpServers['claude-flow'] = createMCPServerEntry(['ruflo@latest', 'mcp', 'start'], {
|
|
49
54
|
...npmEnv,
|
|
@@ -79,7 +84,7 @@ export function generateMCPCommands(options) {
|
|
|
79
84
|
const config = options.mcp;
|
|
80
85
|
if (isWindows()) {
|
|
81
86
|
if (config.claudeFlow) {
|
|
82
|
-
// #2206: registration name must be
|
|
87
|
+
// #2206: registration name must be `claude-flow` to match mcp__claude-flow__* plugin tool references
|
|
83
88
|
commands.push('claude mcp add claude-flow -- cmd /c npx -y ruflo@latest mcp start');
|
|
84
89
|
}
|
|
85
90
|
if (config.ruvSwarm) {
|
|
@@ -91,7 +96,7 @@ export function generateMCPCommands(options) {
|
|
|
91
96
|
}
|
|
92
97
|
else {
|
|
93
98
|
if (config.claudeFlow) {
|
|
94
|
-
// #2206: registration name must be
|
|
99
|
+
// #2206: registration name must be `claude-flow` to match mcp__claude-flow__* plugin tool references
|
|
95
100
|
commands.push("claude mcp add claude-flow -- npx -y ruflo@latest mcp start");
|
|
96
101
|
}
|
|
97
102
|
if (config.ruvSwarm) {
|