@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.
Files changed (83) hide show
  1. package/.claude/.proven-config-version +1 -0
  2. package/.claude/helpers/.helpers-version +1 -1
  3. package/.claude/helpers/helpers.manifest.json +5 -4
  4. package/.claude/helpers/hook-handler.cjs +129 -0
  5. package/.claude/helpers/statusline.cjs +771 -505
  6. package/.claude/proven-config.json +42 -0
  7. package/catalog-manifest.json +12 -0
  8. package/dist/src/commands/advisor.d.ts +15 -0
  9. package/dist/src/commands/advisor.js +94 -0
  10. package/dist/src/commands/doctor.js +151 -32
  11. package/dist/src/commands/funnel.d.ts +13 -0
  12. package/dist/src/commands/funnel.js +103 -0
  13. package/dist/src/commands/hooks.js +112 -46
  14. package/dist/src/commands/index.js +10 -0
  15. package/dist/src/commands/init.js +44 -0
  16. package/dist/src/commands/proxy.d.ts +21 -0
  17. package/dist/src/commands/proxy.js +310 -0
  18. package/dist/src/commands/security.js +29 -0
  19. package/dist/src/commands/settings.d.ts +19 -0
  20. package/dist/src/commands/settings.js +180 -0
  21. package/dist/src/commands/version.d.ts +42 -0
  22. package/dist/src/commands/version.js +106 -0
  23. package/dist/src/funnel/advisor-tip.d.ts +58 -0
  24. package/dist/src/funnel/advisor-tip.js +92 -0
  25. package/dist/src/funnel/attribution.d.ts +37 -0
  26. package/dist/src/funnel/attribution.js +101 -0
  27. package/dist/src/funnel/consent.d.ts +22 -0
  28. package/dist/src/funnel/consent.js +55 -0
  29. package/dist/src/funnel/credit-errors.d.ts +31 -0
  30. package/dist/src/funnel/credit-errors.js +88 -0
  31. package/dist/src/funnel/credit-notifier.d.ts +44 -0
  32. package/dist/src/funnel/credit-notifier.js +74 -0
  33. package/dist/src/funnel/disclosure.d.ts +46 -0
  34. package/dist/src/funnel/disclosure.js +97 -0
  35. package/dist/src/funnel/enrollment.d.ts +36 -0
  36. package/dist/src/funnel/enrollment.js +64 -0
  37. package/dist/src/funnel/environment.d.ts +17 -0
  38. package/dist/src/funnel/environment.js +39 -0
  39. package/dist/src/funnel/event-transport.d.ts +51 -0
  40. package/dist/src/funnel/event-transport.js +199 -0
  41. package/dist/src/funnel/events.d.ts +42 -0
  42. package/dist/src/funnel/events.js +150 -0
  43. package/dist/src/funnel/index.d.ts +20 -0
  44. package/dist/src/funnel/index.js +20 -0
  45. package/dist/src/funnel/insights.d.ts +49 -0
  46. package/dist/src/funnel/insights.js +120 -0
  47. package/dist/src/funnel/local-signals.d.ts +15 -0
  48. package/dist/src/funnel/local-signals.js +68 -0
  49. package/dist/src/funnel/message-transport.d.ts +51 -0
  50. package/dist/src/funnel/message-transport.js +149 -0
  51. package/dist/src/funnel/messages.d.ts +55 -0
  52. package/dist/src/funnel/messages.js +160 -0
  53. package/dist/src/funnel/power-saver-notifier.d.ts +44 -0
  54. package/dist/src/funnel/power-saver-notifier.js +92 -0
  55. package/dist/src/funnel/precedence.d.ts +16 -0
  56. package/dist/src/funnel/precedence.js +85 -0
  57. package/dist/src/funnel/promo.d.ts +41 -0
  58. package/dist/src/funnel/promo.js +144 -0
  59. package/dist/src/funnel/rate-limit-notifier.d.ts +55 -0
  60. package/dist/src/funnel/rate-limit-notifier.js +102 -0
  61. package/dist/src/funnel/rotation.d.ts +19 -0
  62. package/dist/src/funnel/rotation.js +70 -0
  63. package/dist/src/funnel/state.d.ts +13 -0
  64. package/dist/src/funnel/state.js +52 -0
  65. package/dist/src/funnel/toggle-cooldown.d.ts +17 -0
  66. package/dist/src/funnel/toggle-cooldown.js +32 -0
  67. package/dist/src/funnel/types.d.ts +86 -0
  68. package/dist/src/funnel/types.js +26 -0
  69. package/dist/src/init/executor.js +25 -19
  70. package/dist/src/init/helper-refresh.d.ts +33 -2
  71. package/dist/src/init/helper-refresh.js +102 -12
  72. package/dist/src/init/helpers-generator.js +52 -0
  73. package/dist/src/init/mcp-generator.js +11 -6
  74. package/dist/src/init/statusline-generator.js +282 -116
  75. package/dist/src/services/daemon-autostart.js +28 -5
  76. package/dist/src/services/fable-harness.d.ts +39 -0
  77. package/dist/src/services/fable-harness.js +41 -0
  78. package/package.json +16 -4
  79. package/plugins/ruflo-metaharness/scripts/smoke.sh +18 -5
  80. package/dist/src/ruvector/lattice-wasm.d.ts +0 -14
  81. package/dist/src/ruvector/lattice-wasm.js +0 -144
  82. package/plugins/ruflo-metaharness/.claude-flow/data/pending-insights.jsonl +0 -5
  83. package/plugins/ruflo-metaharness/.claude-flow/neural/stats.json +0 -6
@@ -0,0 +1,199 @@
1
+ /**
2
+ * Event transport — batches the local funnel event queue and posts it to the
3
+ * Cognitum analytics Cloud Function (ADR-308 endpoint contract).
4
+ *
5
+ * Design discipline (ADR-308 client failure policy — all normative):
6
+ * 1. Telemetry never blocks the CLI. Every network call is best-effort,
7
+ * capped by a short timeout, and swallows every error path.
8
+ * 2. Events are LOCAL FIRST. The queue in `events.ts` accumulates
9
+ * regardless of API reachability. This transport is the flush layer.
10
+ * 3. Idempotency: every batch carries a UUIDv4 idempotency key so a retry
11
+ * never double-counts (ADR-308 idempotent-batches invariant).
12
+ * 4. Exponential backoff on transient failures. Successful flushes stamp
13
+ * a "last flush" timestamp so we don't hammer the API each render.
14
+ * 5. Consent-gated. Zero network activity when telemetry consent is off.
15
+ * 6. Bounded. Never send more than MAX_BATCH events at once, so a large
16
+ * backlog doesn't blow the endpoint request-size limit.
17
+ * 7. Credit-exhaustion detection. If the endpoint replies 402 (Payment
18
+ * Required) or the body carries the ADR-303
19
+ * `COGNITUM_CREDIT_EXHAUSTED` code, we surface via `credit-notifier.ts`
20
+ * — the same recovery UX ADR-303 already ships.
21
+ */
22
+ import * as fs from 'fs';
23
+ import * as https from 'https';
24
+ import { URL as NodeUrl } from 'url';
25
+ import { randomUUID } from 'crypto';
26
+ import { hasConsent } from './consent.js';
27
+ import { readStateJson, statePath, writeStateJson } from './state.js';
28
+ import { markCreditExhausted } from './credit-notifier.js';
29
+ const EVENTS_FILE = 'funnel-events.jsonl';
30
+ const FLUSH_STATE_FILE = 'funnel-events-flush.json';
31
+ /**
32
+ * Default endpoint — the ruflo-funnel-analytics endpoint on the ruv.io
33
+ * domain, mapped via Cloud Run domain mapping to the cognitum-analytics
34
+ * Cloud Function on cognitum-20260110. Overridable by env for staging or
35
+ * self-hosted deploys. The domain choice is deliberate: an rUv-authored
36
+ * OSS project's telemetry endpoint belongs on rUv's own domain, not on
37
+ * cognitum.one — that keeps the CLI attribution honest.
38
+ */
39
+ export const DEFAULT_ENDPOINT = process.env.RUFLO_FUNNEL_EVENTS_ENDPOINT ?? 'https://funnel.ruv.io/v1/events';
40
+ /** Cap per POST — server enforces its own limits too; this is a safety net. */
41
+ export const MAX_BATCH = 100;
42
+ /** Min interval between flushes (ms). Rate limits the client from within. */
43
+ export const MIN_FLUSH_INTERVAL_MS = 60_000; // 1 min
44
+ /** POST timeout — telemetry must not stall the CLI. */
45
+ export const FLUSH_TIMEOUT_MS = 4_000;
46
+ /** Read the current flush bookkeeping state (never throws). */
47
+ function readFlushState() {
48
+ const raw = readStateJson(FLUSH_STATE_FILE);
49
+ return {
50
+ lastFlushAt: raw?.lastFlushAt ?? null,
51
+ consecutiveFailures: raw?.consecutiveFailures ?? 0,
52
+ lastError: raw?.lastError,
53
+ };
54
+ }
55
+ /** Persist flush bookkeeping. Never throws. */
56
+ function writeFlushState(state) {
57
+ writeStateJson(FLUSH_STATE_FILE, state);
58
+ }
59
+ /** Read the local event queue as JSON lines. Returns [] when absent. */
60
+ function readQueue() {
61
+ try {
62
+ const raw = fs.readFileSync(statePath(EVENTS_FILE), 'utf-8');
63
+ return raw
64
+ .split('\n')
65
+ .filter(Boolean)
66
+ .map((line) => {
67
+ try {
68
+ return JSON.parse(line);
69
+ }
70
+ catch {
71
+ return null;
72
+ }
73
+ })
74
+ .filter((x) => x !== null);
75
+ }
76
+ catch {
77
+ return [];
78
+ }
79
+ }
80
+ /** Overwrite the local queue with the survivors (events we didn't flush). */
81
+ function writeQueue(events) {
82
+ try {
83
+ const body = events.length === 0 ? '' : events.map((e) => JSON.stringify(e)).join('\n') + '\n';
84
+ fs.writeFileSync(statePath(EVENTS_FILE), body, { encoding: 'utf-8', mode: 0o600 });
85
+ }
86
+ catch {
87
+ /* telemetry must never block */
88
+ }
89
+ }
90
+ /** Exponential backoff — cap at 30 minutes. */
91
+ function backoffElapsed(state, now) {
92
+ if (!state.lastFlushAt)
93
+ return true;
94
+ const last = Date.parse(state.lastFlushAt);
95
+ if (Number.isNaN(last))
96
+ return true;
97
+ const base = MIN_FLUSH_INTERVAL_MS;
98
+ const factor = Math.min(2 ** state.consecutiveFailures, 30); // cap at 30x → ~30 min
99
+ const nextAllowed = last + base * factor;
100
+ return now.getTime() >= nextAllowed;
101
+ }
102
+ /**
103
+ * POST a batch to the endpoint. Resolves to { ok, status } — never rejects.
104
+ * Kept internal so callers can't hand it a URL that dodges the allowlist.
105
+ */
106
+ function postBatch(endpoint, batch) {
107
+ return new Promise((resolve) => {
108
+ let target;
109
+ try {
110
+ target = new NodeUrl(endpoint);
111
+ }
112
+ catch {
113
+ resolve({ ok: false, status: 0, body: 'bad-endpoint' });
114
+ return;
115
+ }
116
+ if (target.protocol !== 'https:') {
117
+ resolve({ ok: false, status: 0, body: 'non-https-endpoint' });
118
+ return;
119
+ }
120
+ const body = JSON.stringify(batch);
121
+ const req = https.request({
122
+ hostname: target.hostname,
123
+ port: target.port || 443,
124
+ path: target.pathname + target.search,
125
+ method: 'POST',
126
+ headers: {
127
+ 'Content-Type': 'application/json',
128
+ 'Content-Length': Buffer.byteLength(body),
129
+ 'Idempotency-Key': batch.batchId,
130
+ 'User-Agent': `ruflo-funnel/${batch.release}`,
131
+ },
132
+ }, (res) => {
133
+ let chunks = '';
134
+ res.setEncoding('utf-8');
135
+ res.on('data', (chunk) => { chunks += chunk; });
136
+ res.on('end', () => {
137
+ const status = res.statusCode ?? 0;
138
+ resolve({ ok: status >= 200 && status < 300, status, body: chunks });
139
+ });
140
+ });
141
+ req.setTimeout(FLUSH_TIMEOUT_MS, () => {
142
+ req.destroy();
143
+ resolve({ ok: false, status: 0, body: 'timeout' });
144
+ });
145
+ req.on('error', (err) => resolve({ ok: false, status: 0, body: String(err) }));
146
+ req.write(body);
147
+ req.end();
148
+ });
149
+ }
150
+ /**
151
+ * Best-effort flush of the local event queue to the endpoint. Returns a
152
+ * summary the CLI can log at --verbose; the caller should never fail on it.
153
+ */
154
+ export async function flushEvents(opts) {
155
+ const now = opts?.now ?? new Date();
156
+ const endpoint = opts?.endpoint ?? DEFAULT_ENDPOINT;
157
+ if (!hasConsent('telemetry'))
158
+ return { flushed: 0, skipped: 'no-consent' };
159
+ const state = readFlushState();
160
+ if (!opts?.force && !backoffElapsed(state, now)) {
161
+ return { flushed: 0, skipped: 'backoff' };
162
+ }
163
+ const queue = readQueue();
164
+ if (queue.length === 0) {
165
+ // Nothing to send — record the check anyway so we don't retry every render.
166
+ writeFlushState({ ...state, lastFlushAt: now.toISOString() });
167
+ return { flushed: 0, skipped: 'empty-queue' };
168
+ }
169
+ const batchEvents = queue.slice(0, MAX_BATCH);
170
+ const batch = {
171
+ batchId: randomUUID(),
172
+ events: batchEvents,
173
+ release: opts?.release ?? 'unknown',
174
+ emittedAt: now.toISOString(),
175
+ };
176
+ const res = await postBatch(endpoint, batch);
177
+ // Credit-exhaustion detection (ADR-303 route in).
178
+ // 402 Payment Required → out of Cognitum credits.
179
+ // Body carrying the exact ADR-303 machine-readable code → same.
180
+ if (res.status === 402 || (typeof res.body === 'string' && res.body.includes('COGNITUM_CREDIT_EXHAUSTED'))) {
181
+ markCreditExhausted(now);
182
+ }
183
+ if (res.ok) {
184
+ // Drop the sent events; keep survivors.
185
+ writeQueue(queue.slice(batchEvents.length));
186
+ writeFlushState({
187
+ lastFlushAt: now.toISOString(),
188
+ consecutiveFailures: 0,
189
+ });
190
+ return { flushed: batchEvents.length, skipped: null, status: res.status };
191
+ }
192
+ writeFlushState({
193
+ lastFlushAt: now.toISOString(),
194
+ consecutiveFailures: state.consecutiveFailures + 1,
195
+ lastError: `HTTP ${res.status}`,
196
+ });
197
+ return { flushed: 0, skipped: `transport-failed`, status: res.status };
198
+ }
199
+ //# sourceMappingURL=event-transport.js.map
@@ -0,0 +1,42 @@
1
+ /**
2
+ * Funnel events — ADR-305 attribution / ADR-309 constrained schema.
3
+ *
4
+ * LOCAL-ONLY by design: this module performs no network I/O. Events are
5
+ * appended to a bounded local queue only when the telemetry consent domain
6
+ * is granted (ADR-302). Server-side ingestion (POST /v1/events, ADR-308)
7
+ * is a separate opt-in transport that does not exist in this build — until
8
+ * it does, the queue is simply a bounded local record the user can inspect
9
+ * and delete.
10
+ *
11
+ * Constraints enforced here, permanently (ADR-309): closed event set, daily
12
+ * timestamp buckets (never full timestamps), no raw prompts/commands/paths/
13
+ * repo names — the schema has no field that could carry them.
14
+ */
15
+ import type { FunnelEventName, FunnelSurface } from './types.js';
16
+ /**
17
+ * Lazily created pseudonymous funnel ID — random UUID, derived from nothing
18
+ * (no hardware, account, email, or path). Exists only when attribution
19
+ * consent (telemetry domain) is granted; deleted on opt-out.
20
+ */
21
+ export declare function getFunnelId(now?: Date): string | null;
22
+ /** Opt-out: stop emission, delete the ID and the local queue (ADR-305). */
23
+ export declare function deleteFunnelData(): void;
24
+ /**
25
+ * Most recent local record of `event`, as a daily bucket (`YYYY-MM-DD`) —
26
+ * events never carry a full timestamp (ADR-309). Returns null when nothing
27
+ * is recorded, which is also what you get with telemetry consent off (the
28
+ * queue is never written at all in that case) — this can't distinguish
29
+ * "never happened" from "not being recorded," by design.
30
+ */
31
+ export declare function lastRecordedEvent(event: FunnelEventName): string | null;
32
+ /**
33
+ * Record a funnel event to the local queue. No-op (returns false) when
34
+ * telemetry consent is absent — consent-off means zero funnel records.
35
+ * `messageId` is only carried for promo_impression / promo_open events; on
36
+ * every other event it is dropped so the schema stays clean.
37
+ */
38
+ export declare function recordFunnelEvent(event: FunnelEventName, surface: FunnelSurface, release: string, optsOrNow?: Date | {
39
+ now?: Date;
40
+ messageId?: string;
41
+ }): boolean;
42
+ //# sourceMappingURL=events.d.ts.map
@@ -0,0 +1,150 @@
1
+ /**
2
+ * Funnel events — ADR-305 attribution / ADR-309 constrained schema.
3
+ *
4
+ * LOCAL-ONLY by design: this module performs no network I/O. Events are
5
+ * appended to a bounded local queue only when the telemetry consent domain
6
+ * is granted (ADR-302). Server-side ingestion (POST /v1/events, ADR-308)
7
+ * is a separate opt-in transport that does not exist in this build — until
8
+ * it does, the queue is simply a bounded local record the user can inspect
9
+ * and delete.
10
+ *
11
+ * Constraints enforced here, permanently (ADR-309): closed event set, daily
12
+ * timestamp buckets (never full timestamps), no raw prompts/commands/paths/
13
+ * repo names — the schema has no field that could carry them.
14
+ */
15
+ import * as fs from 'fs';
16
+ import { randomUUID } from 'crypto';
17
+ import { hasConsent } from './consent.js';
18
+ import { deleteStateFile, funnelStateDir, readStateJson, statePath, writeStateJson } from './state.js';
19
+ const EVENTS_FILE = 'funnel-events.jsonl';
20
+ const FUNNEL_ID_FILE = 'funnel-id.json';
21
+ /** Bounded queue: ≤ 1000 events / ≤ 256 KiB — telemetry never grows unbounded. */
22
+ const MAX_QUEUE_BYTES = 256 * 1024;
23
+ const MAX_QUEUE_EVENTS = 1000;
24
+ const EVENT_NAMES = [
25
+ 'disclosure_shown',
26
+ 'funnel_disabled',
27
+ 'signup_opened',
28
+ 'account_created',
29
+ 'proxy_activated',
30
+ 'promo_impression',
31
+ 'promo_open',
32
+ 'sponsor_mode_enabled',
33
+ 'sponsor_mode_disabled',
34
+ 'sponsor_capacity_exhausted',
35
+ 'power_saver_enabled',
36
+ 'power_saver_disabled',
37
+ 'toggle_cooldown_blocked',
38
+ 'training_share_enabled',
39
+ 'training_share_disabled',
40
+ 'advisor_tip_enabled',
41
+ 'advisor_tip_disabled',
42
+ ];
43
+ const SURFACES = ['statusline', 'init', 'credit_exhaustion'];
44
+ /** Rotate the pseudonymous ID every 90 days (ADR-305). */
45
+ const FUNNEL_ID_TTL_MS = 90 * 24 * 60 * 60 * 1000;
46
+ /**
47
+ * Lazily created pseudonymous funnel ID — random UUID, derived from nothing
48
+ * (no hardware, account, email, or path). Exists only when attribution
49
+ * consent (telemetry domain) is granted; deleted on opt-out.
50
+ */
51
+ export function getFunnelId(now = new Date()) {
52
+ if (!hasConsent('telemetry'))
53
+ return null;
54
+ const existing = readStateJson(FUNNEL_ID_FILE);
55
+ if (existing?.id) {
56
+ const created = Date.parse(existing.createdAt);
57
+ if (!Number.isNaN(created) && now.getTime() - created < FUNNEL_ID_TTL_MS)
58
+ return existing.id;
59
+ }
60
+ const record = { id: randomUUID(), createdAt: now.toISOString() };
61
+ writeStateJson(FUNNEL_ID_FILE, record);
62
+ return record.id;
63
+ }
64
+ /** Opt-out: stop emission, delete the ID and the local queue (ADR-305). */
65
+ export function deleteFunnelData() {
66
+ deleteStateFile(FUNNEL_ID_FILE);
67
+ deleteStateFile(EVENTS_FILE);
68
+ }
69
+ /**
70
+ * Most recent local record of `event`, as a daily bucket (`YYYY-MM-DD`) —
71
+ * events never carry a full timestamp (ADR-309). Returns null when nothing
72
+ * is recorded, which is also what you get with telemetry consent off (the
73
+ * queue is never written at all in that case) — this can't distinguish
74
+ * "never happened" from "not being recorded," by design.
75
+ */
76
+ export function lastRecordedEvent(event) {
77
+ try {
78
+ const raw = fs.readFileSync(statePath(EVENTS_FILE), 'utf-8');
79
+ const lines = raw.split('\n').filter(Boolean);
80
+ for (let i = lines.length - 1; i >= 0; i--) {
81
+ const parsed = JSON.parse(lines[i]);
82
+ if (parsed.event === event)
83
+ return parsed.timestampBucket;
84
+ }
85
+ return null;
86
+ }
87
+ catch {
88
+ return null;
89
+ }
90
+ }
91
+ function dailyBucket(now) {
92
+ return now.toISOString().slice(0, 10);
93
+ }
94
+ /**
95
+ * Record a funnel event to the local queue. No-op (returns false) when
96
+ * telemetry consent is absent — consent-off means zero funnel records.
97
+ * `messageId` is only carried for promo_impression / promo_open events; on
98
+ * every other event it is dropped so the schema stays clean.
99
+ */
100
+ export function recordFunnelEvent(event, surface, release, optsOrNow = new Date()) {
101
+ if (!EVENT_NAMES.includes(event) || !SURFACES.includes(surface))
102
+ return false;
103
+ if (!hasConsent('telemetry'))
104
+ return false;
105
+ const now = optsOrNow instanceof Date ? optsOrNow : (optsOrNow.now ?? new Date());
106
+ const messageId = optsOrNow instanceof Date ? undefined : optsOrNow.messageId;
107
+ const payload = {
108
+ schemaVersion: 1,
109
+ event,
110
+ surface,
111
+ release,
112
+ timestampBucket: dailyBucket(now),
113
+ };
114
+ const id = getFunnelId(now);
115
+ if (id)
116
+ payload.pseudonymousId = id;
117
+ // messageId is only carried on promo events; validated + length-capped so
118
+ // the schema stays predictable.
119
+ if (messageId && (event === 'promo_impression' || event === 'promo_open')) {
120
+ if (typeof messageId === 'string' && messageId.length > 0 && messageId.length <= 64) {
121
+ payload.messageId = messageId;
122
+ }
123
+ }
124
+ try {
125
+ fs.mkdirSync(funnelStateDir(), { recursive: true, mode: 0o700 });
126
+ const file = statePath(EVENTS_FILE);
127
+ let existing = '';
128
+ try {
129
+ existing = fs.readFileSync(file, 'utf-8');
130
+ }
131
+ catch {
132
+ // first event
133
+ }
134
+ const lines = existing ? existing.split('\n').filter(Boolean) : [];
135
+ lines.push(JSON.stringify(payload));
136
+ let out = lines.slice(-MAX_QUEUE_EVENTS).join('\n') + '\n';
137
+ while (Buffer.byteLength(out, 'utf-8') > MAX_QUEUE_BYTES) {
138
+ const trimmed = out.split('\n').filter(Boolean);
139
+ trimmed.shift();
140
+ out = trimmed.join('\n') + '\n';
141
+ }
142
+ fs.writeFileSync(file, out, { encoding: 'utf-8', mode: 0o600 });
143
+ return true;
144
+ }
145
+ catch {
146
+ // Telemetry must never block or break the CLI (ADR-308 failure policy).
147
+ return false;
148
+ }
149
+ }
150
+ //# sourceMappingURL=events.js.map
@@ -0,0 +1,20 @@
1
+ /**
2
+ * Funnel module — ruflo → Cognitum lifecycle system (ADR-301..310).
3
+ * Local-only: nothing in this module performs network I/O.
4
+ */
5
+ export * from './types.js';
6
+ export { funnelStateDir } from './state.js';
7
+ export { isCI, isInteractive, reducedMotion } from './environment.js';
8
+ export { resolveFunnelEnabled } from './precedence.js';
9
+ export { CONSENT_DOMAINS, getConsent, hasConsent, readConsents, recordConsent, revokeConsent, } from './consent.js';
10
+ export { DISCLOSURE_GRACE_MS, DISCLOSURE_ROTATION_SLOT_MS, getDisclosure, promoEligible, recordDisclosureDeclined, recordDisclosureReenabled, recordDisclosureShown, selectDisclosureMessage, } from './disclosure.js';
11
+ export { MAX_MESSAGE_COLUMNS, MESSAGES, containsForbiddenSequences, displayWidth, eligibleMessages, eligibleMessagesFromPools, isAllowedUrl, isValidMessage, } from './messages.js';
12
+ export { DEFAULT_MESSAGES_ENDPOINT, getRemoteMessages, refreshRemoteMessages, } from './message-transport.js';
13
+ export { PROMO_REPEAT_CAP_MS, PROMO_SLOT_MODULO, ROTATION_SLOT_MS, selectMessage, } from './rotation.js';
14
+ export { CREDIT_RECOVERY_HINT, classifyCreditError, renderCreditRecovery, shouldShowCreditRecovery, type CreditPromptSession, type ProviderErrorLike, } from './credit-errors.js';
15
+ export { deleteFunnelData, getFunnelId, lastRecordedEvent, recordFunnelEvent } from './events.js';
16
+ export { getFunnelPromo, type PromoContext } from './promo.js';
17
+ export { RATE_LIMIT_TTL_MS, clearRateLimitStatus, markRateLimited, rateLimitNotice, readRateLimitStatus, type RateLimitStatus, } from './rate-limit-notifier.js';
18
+ export { QUOTA_LOW_TTL_MS, clearQuotaLowStatus, markQuotaLow, quotaLowNotice, readQuotaLowStatus, type QuotaLowStatus, } from './power-saver-notifier.js';
19
+ export { TOGGLE_COOLDOWN_MS, cooldownActive, cooldownRemainingMin } from './toggle-cooldown.js';
20
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1,20 @@
1
+ /**
2
+ * Funnel module — ruflo → Cognitum lifecycle system (ADR-301..310).
3
+ * Local-only: nothing in this module performs network I/O.
4
+ */
5
+ export * from './types.js';
6
+ export { funnelStateDir } from './state.js';
7
+ export { isCI, isInteractive, reducedMotion } from './environment.js';
8
+ export { resolveFunnelEnabled } from './precedence.js';
9
+ export { CONSENT_DOMAINS, getConsent, hasConsent, readConsents, recordConsent, revokeConsent, } from './consent.js';
10
+ export { DISCLOSURE_GRACE_MS, DISCLOSURE_ROTATION_SLOT_MS, getDisclosure, promoEligible, recordDisclosureDeclined, recordDisclosureReenabled, recordDisclosureShown, selectDisclosureMessage, } from './disclosure.js';
11
+ export { MAX_MESSAGE_COLUMNS, MESSAGES, containsForbiddenSequences, displayWidth, eligibleMessages, eligibleMessagesFromPools, isAllowedUrl, isValidMessage, } from './messages.js';
12
+ export { DEFAULT_MESSAGES_ENDPOINT, getRemoteMessages, refreshRemoteMessages, } from './message-transport.js';
13
+ export { PROMO_REPEAT_CAP_MS, PROMO_SLOT_MODULO, ROTATION_SLOT_MS, selectMessage, } from './rotation.js';
14
+ export { CREDIT_RECOVERY_HINT, classifyCreditError, renderCreditRecovery, shouldShowCreditRecovery, } from './credit-errors.js';
15
+ export { deleteFunnelData, getFunnelId, lastRecordedEvent, recordFunnelEvent } from './events.js';
16
+ export { getFunnelPromo } from './promo.js';
17
+ export { RATE_LIMIT_TTL_MS, clearRateLimitStatus, markRateLimited, rateLimitNotice, readRateLimitStatus, } from './rate-limit-notifier.js';
18
+ export { QUOTA_LOW_TTL_MS, clearQuotaLowStatus, markQuotaLow, quotaLowNotice, readQuotaLowStatus, } from './power-saver-notifier.js';
19
+ export { TOGGLE_COOLDOWN_MS, cooldownActive, cooldownRemainingMin } from './toggle-cooldown.js';
20
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1,49 @@
1
+ /**
2
+ * Local insight ticker — environment/task-aware suggestions sharing the
3
+ * promo row's screen real estate, but a deliberately SEPARATE data path
4
+ * from it.
5
+ *
6
+ * Why separate: the promo row is "zero local content, fully remote-served,
7
+ * fail-closed" (an explicit earlier design call — nothing about WHAT shows
8
+ * ships in the package). Insights are the opposite by nature — CVE counts,
9
+ * uncommitted changes, sponsored-mode state — none of that is knowable
10
+ * server-side. Conflating the two would mean either routing local logic
11
+ * through the remote-content validation pipeline (messages.ts's
12
+ * isValidMessage(), built for untrusted REMOTE content) or quietly giving
13
+ * the promo row a second, unrelated job. So: same rendered slot, same
14
+ * PromoRow shape, but a totally separate module, never touching
15
+ * message-transport.ts or the remote message cache.
16
+ *
17
+ * Cheapness discipline (learned the hard way — see the funnel-cache fix):
18
+ * every insight source here MUST be either (a) synchronous local file/state
19
+ * reads, already-computed data the caller passes in, or (b) a read of a
20
+ * cache some OTHER, separately-scheduled process populates. NEVER a network
21
+ * call from here — that would reintroduce the exact bug where a statusline
22
+ * render silently ate a multi-second fetch it could never actually finish.
23
+ */
24
+ export interface LocalInsight {
25
+ id: string;
26
+ text: string;
27
+ /** Higher = shown first when multiple insights are candidates this slot. */
28
+ priority: number;
29
+ }
30
+ export interface LocalInsightContext {
31
+ security?: {
32
+ status: string;
33
+ cvesFixed: number;
34
+ totalCves: number;
35
+ };
36
+ swarm?: {
37
+ activeAgents: number;
38
+ maxAgents: number;
39
+ coordinationActive: boolean;
40
+ };
41
+ /** Count of uncommitted-changed files (git status --short line count). */
42
+ gitUncommittedCount?: number;
43
+ now?: Date;
44
+ }
45
+ /** All candidate insights for this render, unsorted. */
46
+ export declare function computeLocalInsights(ctx: LocalInsightContext): LocalInsight[];
47
+ /** Highest-priority insight this render, or null if nothing is actionable. */
48
+ export declare function selectLocalInsight(ctx: LocalInsightContext): LocalInsight | null;
49
+ //# sourceMappingURL=insights.d.ts.map
@@ -0,0 +1,120 @@
1
+ /**
2
+ * Local insight ticker — environment/task-aware suggestions sharing the
3
+ * promo row's screen real estate, but a deliberately SEPARATE data path
4
+ * from it.
5
+ *
6
+ * Why separate: the promo row is "zero local content, fully remote-served,
7
+ * fail-closed" (an explicit earlier design call — nothing about WHAT shows
8
+ * ships in the package). Insights are the opposite by nature — CVE counts,
9
+ * uncommitted changes, sponsored-mode state — none of that is knowable
10
+ * server-side. Conflating the two would mean either routing local logic
11
+ * through the remote-content validation pipeline (messages.ts's
12
+ * isValidMessage(), built for untrusted REMOTE content) or quietly giving
13
+ * the promo row a second, unrelated job. So: same rendered slot, same
14
+ * PromoRow shape, but a totally separate module, never touching
15
+ * message-transport.ts or the remote message cache.
16
+ *
17
+ * Cheapness discipline (learned the hard way — see the funnel-cache fix):
18
+ * every insight source here MUST be either (a) synchronous local file/state
19
+ * reads, already-computed data the caller passes in, or (b) a read of a
20
+ * cache some OTHER, separately-scheduled process populates. NEVER a network
21
+ * call from here — that would reintroduce the exact bug where a statusline
22
+ * render silently ate a multi-second fetch it could never actually finish.
23
+ */
24
+ import { hasConsent } from './consent.js';
25
+ import { readQuotaLowStatus } from './power-saver-notifier.js';
26
+ import { readStateJson } from './state.js';
27
+ import { readAdvisorTip } from './advisor-tip.js';
28
+ const GIT_UNCOMMITTED_THRESHOLD = 20;
29
+ const FLYWHEEL_STATUS_TTL_MS = 24 * 60 * 60 * 1000;
30
+ function flywheelInsight(now) {
31
+ const cache = readStateJson('flywheel-status.json');
32
+ // `!cache._ts` would wrongly treat a legitimate epoch-zero timestamp as
33
+ // absent (0 is falsy) — check the type explicitly instead (ADR-316 found
34
+ // this exact defect pattern live via a test using new Date(0)).
35
+ if (!cache || !cache.headline || typeof cache._ts !== 'number')
36
+ return null;
37
+ if (now.getTime() - cache._ts >= FLYWHEEL_STATUS_TTL_MS)
38
+ return null;
39
+ return { id: 'insight-flywheel-status', text: `🧬 ${cache.headline}`, priority: 40 };
40
+ }
41
+ function securityInsight(ctx) {
42
+ const s = ctx.security;
43
+ if (!s)
44
+ return null;
45
+ const pending = s.totalCves - s.cvesFixed;
46
+ if (pending > 0) {
47
+ return {
48
+ id: 'insight-cves-pending',
49
+ text: `⚠ ${pending} CVE${pending === 1 ? '' : 's'} pending — Run ruflo security scan --depth full`,
50
+ priority: 90,
51
+ };
52
+ }
53
+ if (s.status === 'PENDING') {
54
+ return { id: 'insight-scan-pending', text: '🛡 Security scan pending — Run ruflo security scan --depth full', priority: 70 };
55
+ }
56
+ return null;
57
+ }
58
+ function gitInsight(ctx) {
59
+ const n = ctx.gitUncommittedCount;
60
+ if (n === undefined || n <= GIT_UNCOMMITTED_THRESHOLD)
61
+ return null;
62
+ return {
63
+ id: 'insight-uncommitted',
64
+ text: `📝 ${n} uncommitted changes — commit or stash before continuing`,
65
+ priority: 50,
66
+ };
67
+ }
68
+ /**
69
+ * Power-saver mode state — genuinely local (consent + a self-reported flag
70
+ * file, same pattern the rest of this module uses). Sponsored/rate-limited
71
+ * state is deliberately NOT duplicated here — promo.ts's own
72
+ * getSponsoredDowntimeOverride() already preempts rotation entirely for
73
+ * that case (ADR-313), with higher precedence than this slot-based ticker.
74
+ * Two insight sources for the same fact would mean picking which one wins;
75
+ * simpler to just not have two.
76
+ */
77
+ function proxyModeInsight(now) {
78
+ if (hasConsent('power-saver') && readQuotaLowStatus(now).low) {
79
+ return { id: 'insight-power-saver-active', text: '🔋 Power saver mode active — routing via cognitum-auto', priority: 55 };
80
+ }
81
+ return null;
82
+ }
83
+ /**
84
+ * ADR-316 — a co-pilot tip from ruflo's Fable Advisor Harness
85
+ * (services/fable-harness.ts, ADR-172). Consent-gated (never surfaces a
86
+ * stale cached tip after the user disables it, even though the cache file
87
+ * itself isn't deleted on disable — this check is what actually enforces
88
+ * "off means off"). Purely a cache read here — no network call, no spend;
89
+ * the real `claude -p` call happens in advisor-tip.ts's
90
+ * refreshAdvisorTipIfStale(), invoked from a detached background process,
91
+ * never from this hot path.
92
+ */
93
+ function advisorTipInsight(now) {
94
+ if (!hasConsent('advisor-tips'))
95
+ return null;
96
+ const tip = readAdvisorTip(now);
97
+ if (!tip)
98
+ return null;
99
+ return { id: 'insight-advisor-tip', text: `🧭 ${tip.headline}`, priority: 45 };
100
+ }
101
+ /** All candidate insights for this render, unsorted. */
102
+ export function computeLocalInsights(ctx) {
103
+ const now = ctx.now ?? new Date();
104
+ const candidates = [
105
+ securityInsight(ctx),
106
+ gitInsight(ctx),
107
+ proxyModeInsight(now),
108
+ advisorTipInsight(now),
109
+ flywheelInsight(now),
110
+ ];
111
+ return candidates.filter((i) => i !== null);
112
+ }
113
+ /** Highest-priority insight this render, or null if nothing is actionable. */
114
+ export function selectLocalInsight(ctx) {
115
+ const candidates = computeLocalInsights(ctx);
116
+ if (candidates.length === 0)
117
+ return null;
118
+ return candidates.reduce((best, c) => (c.priority > best.priority ? c : best));
119
+ }
120
+ //# sourceMappingURL=insights.js.map
@@ -0,0 +1,15 @@
1
+ export interface SecurityStatus {
2
+ status: 'CLEAN' | 'IN_PROGRESS' | 'PENDING';
3
+ cvesFixed: number;
4
+ totalCves: number;
5
+ }
6
+ export declare function getSecurityStatus(cwd?: string): SecurityStatus;
7
+ export interface SwarmStatus {
8
+ activeAgents: number;
9
+ maxAgents: number;
10
+ coordinationActive: boolean;
11
+ }
12
+ export declare function getSwarmStatus(): SwarmStatus;
13
+ /** Count of uncommitted-changed files (git status --short line count). */
14
+ export declare function getGitUncommittedCount(): number | undefined;
15
+ //# sourceMappingURL=local-signals.d.ts.map