@warmdrift/kgauto-compiler 2.0.0-alpha.6 → 2.0.0-alpha.60

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 (50) hide show
  1. package/README.md +95 -0
  2. package/dist/brain-proxy.d.mts +113 -0
  3. package/dist/brain-proxy.d.ts +113 -0
  4. package/dist/brain-proxy.js +189 -0
  5. package/dist/brain-proxy.mjs +6 -0
  6. package/dist/chunk-IIMPJZNH.mjs +694 -0
  7. package/dist/chunk-IUWFML6Z.mjs +165 -0
  8. package/dist/chunk-NBO4R5PC.mjs +313 -0
  9. package/dist/chunk-P3TOAEG4.mjs +56 -0
  10. package/dist/chunk-QKXTMVCT.mjs +1470 -0
  11. package/dist/chunk-RO22VFIF.mjs +29 -0
  12. package/dist/chunk-RQ3BUUB6.mjs +190 -0
  13. package/dist/glassbox/index.d.mts +59 -0
  14. package/dist/glassbox/index.d.ts +59 -0
  15. package/dist/glassbox/index.js +312 -0
  16. package/dist/glassbox/index.mjs +12 -0
  17. package/dist/glassbox-routes/format.d.mts +24 -0
  18. package/dist/glassbox-routes/format.d.ts +24 -0
  19. package/dist/glassbox-routes/format.js +86 -0
  20. package/dist/glassbox-routes/format.mjs +18 -0
  21. package/dist/glassbox-routes/index.d.mts +191 -0
  22. package/dist/glassbox-routes/index.d.ts +191 -0
  23. package/dist/glassbox-routes/index.js +2714 -0
  24. package/dist/glassbox-routes/index.mjs +663 -0
  25. package/dist/glassbox-routes/react/index.d.mts +74 -0
  26. package/dist/glassbox-routes/react/index.d.ts +74 -0
  27. package/dist/glassbox-routes/react/index.js +819 -0
  28. package/dist/glassbox-routes/react/index.mjs +754 -0
  29. package/dist/index.d.mts +2175 -17
  30. package/dist/index.d.ts +2175 -17
  31. package/dist/index.js +7248 -1597
  32. package/dist/index.mjs +3428 -164
  33. package/dist/ir-B2h0GAEL.d.ts +1378 -0
  34. package/dist/ir-BC4uDL98.d.mts +1378 -0
  35. package/dist/key-health.d.mts +131 -0
  36. package/dist/key-health.d.ts +131 -0
  37. package/dist/key-health.js +215 -0
  38. package/dist/key-health.mjs +6 -0
  39. package/dist/profiles.d.mts +292 -2
  40. package/dist/profiles.d.ts +292 -2
  41. package/dist/profiles.js +1081 -16
  42. package/dist/profiles.mjs +9 -1
  43. package/dist/types-B-pzBJKf.d.mts +149 -0
  44. package/dist/types-CKuu7Clz.d.ts +149 -0
  45. package/dist/types-CRy90cjp.d.mts +131 -0
  46. package/dist/types-CsB2YASc.d.ts +131 -0
  47. package/package.json +52 -6
  48. package/dist/chunk-MBEI5UOM.mjs +0 -409
  49. package/dist/profiles-CQnLkQ7b.d.ts +0 -611
  50. package/dist/profiles-zm6diETo.d.mts +0 -611
@@ -0,0 +1,29 @@
1
+ import {
2
+ appChannel,
3
+ getPubSub,
4
+ traceChannel
5
+ } from "./chunk-NBO4R5PC.mjs";
6
+
7
+ // src/glassbox/subscribe.ts
8
+ function emptyStream() {
9
+ return new ReadableStream({
10
+ start(controller) {
11
+ controller.close();
12
+ }
13
+ });
14
+ }
15
+ function subscribe(traceId) {
16
+ if (!traceId) return emptyStream();
17
+ return getPubSub().subscribe(traceChannel(traceId));
18
+ }
19
+ function subscribeApp({
20
+ appId
21
+ }) {
22
+ if (!appId) return emptyStream();
23
+ return getPubSub().subscribe(appChannel(appId));
24
+ }
25
+
26
+ export {
27
+ subscribe,
28
+ subscribeApp
29
+ };
@@ -0,0 +1,190 @@
1
+ // src/version.ts
2
+ var LIBRARY_VERSION = "2.0.0-alpha.60";
3
+
4
+ // src/key-health.ts
5
+ var JSON_HEADERS = { "Content-Type": "application/json" };
6
+ function jsonResponse(status, body) {
7
+ return new Response(JSON.stringify(body), { status, headers: JSON_HEADERS });
8
+ }
9
+ function bearerOf(req) {
10
+ const header = req.headers.get("Authorization") ?? "";
11
+ const match = /^Bearer\s+(.+)$/i.exec(header);
12
+ return match?.[1]?.trim() ?? "";
13
+ }
14
+ function requireString(name, value) {
15
+ if (typeof value !== "string" || value.length === 0) {
16
+ throw new Error(`createKeyHealthRoute: ${name} is required`);
17
+ }
18
+ return value;
19
+ }
20
+ function envKey(env, name) {
21
+ const v = env[name];
22
+ if (typeof v !== "string") return void 0;
23
+ const trimmed = v.trim();
24
+ return trimmed.length > 0 ? trimmed : void 0;
25
+ }
26
+ var PROBE_SPECS = [
27
+ {
28
+ provider: "anthropic",
29
+ canonicalEnvName: "ANTHROPIC_API_KEY",
30
+ buildRequest: (key) => ({
31
+ url: "https://api.anthropic.com/v1/models?limit=1",
32
+ headers: { "x-api-key": key, "anthropic-version": "2023-06-01" }
33
+ })
34
+ },
35
+ {
36
+ provider: "deepseek",
37
+ canonicalEnvName: "DEEPSEEK_API_KEY",
38
+ buildRequest: (key) => ({
39
+ url: "https://api.deepseek.com/user/balance",
40
+ headers: { Authorization: `Bearer ${key}` }
41
+ }),
42
+ parseBalanceUsd: (body) => {
43
+ const infos = body?.balance_infos;
44
+ if (!Array.isArray(infos) || infos.length === 0) return void 0;
45
+ const first = infos[0];
46
+ if (first?.currency !== "USD") return void 0;
47
+ const n = Number(first.total_balance);
48
+ return Number.isFinite(n) ? n : void 0;
49
+ }
50
+ },
51
+ {
52
+ provider: "google",
53
+ canonicalEnvName: "GEMINI_API_KEY",
54
+ buildRequest: (key) => ({
55
+ url: `https://generativelanguage.googleapis.com/v1beta/models?pageSize=1&key=${encodeURIComponent(key)}`,
56
+ headers: {}
57
+ })
58
+ },
59
+ {
60
+ provider: "openai",
61
+ canonicalEnvName: "OPENAI_API_KEY",
62
+ buildRequest: (key) => ({
63
+ url: "https://api.openai.com/v1/models",
64
+ headers: { Authorization: `Bearer ${key}` }
65
+ })
66
+ }
67
+ ];
68
+ function createKeyHealthRoute(config) {
69
+ const appId = requireString("appId", config.appId);
70
+ const ingestSecret = requireString("ingestSecret", config.ingestSecret);
71
+ const fetchFn = config.fetchImpl ?? fetch;
72
+ const timeoutMs = config.timeoutMs ?? 3e3;
73
+ async function probeProvider(spec, env) {
74
+ let key;
75
+ let envName = spec.canonicalEnvName;
76
+ if (spec.provider === "google") {
77
+ const gemini = envKey(env, "GEMINI_API_KEY");
78
+ const google = envKey(env, "GOOGLE_API_KEY");
79
+ const aiSdk = envKey(env, "GOOGLE_GENERATIVE_AI_API_KEY");
80
+ key = gemini ?? google ?? aiSdk;
81
+ envName = gemini ? "GEMINI_API_KEY" : google ? "GOOGLE_API_KEY" : aiSdk ? "GOOGLE_GENERATIVE_AI_API_KEY" : "GEMINI_API_KEY";
82
+ } else {
83
+ key = envKey(env, spec.canonicalEnvName);
84
+ }
85
+ if (!key) {
86
+ return {
87
+ provider: spec.provider,
88
+ env: envName,
89
+ present: false,
90
+ valid: null,
91
+ detail: "key_absent"
92
+ };
93
+ }
94
+ const base = {
95
+ provider: spec.provider,
96
+ env: envName,
97
+ present: true,
98
+ valid: null
99
+ };
100
+ const { url, headers } = spec.buildRequest(key);
101
+ const started = Date.now();
102
+ let res;
103
+ try {
104
+ res = await fetchFn(url, {
105
+ method: "GET",
106
+ headers,
107
+ signal: AbortSignal.timeout(timeoutMs)
108
+ });
109
+ } catch (err) {
110
+ const isTimeout = err instanceof Error && (err.name === "TimeoutError" || err.name === "AbortError");
111
+ return {
112
+ ...base,
113
+ latency_ms: Date.now() - started,
114
+ // NEVER echo err.message — provider errors could theoretically carry
115
+ // request context; a fixed vocabulary keeps key material impossible.
116
+ detail: isTimeout ? "timeout" : "network_error"
117
+ };
118
+ }
119
+ const latencyMs = Date.now() - started;
120
+ if (res.ok) {
121
+ const result = {
122
+ ...base,
123
+ valid: true,
124
+ status: res.status,
125
+ latency_ms: latencyMs
126
+ };
127
+ if (spec.parseBalanceUsd) {
128
+ try {
129
+ const body = await res.json();
130
+ const balance = spec.parseBalanceUsd(body);
131
+ if (balance !== void 0) result.balance_usd = balance;
132
+ } catch {
133
+ }
134
+ }
135
+ return result;
136
+ }
137
+ if (res.status === 401 || res.status === 403) {
138
+ return { ...base, valid: false, status: res.status, latency_ms: latencyMs };
139
+ }
140
+ return {
141
+ ...base,
142
+ valid: null,
143
+ status: res.status,
144
+ latency_ms: latencyMs,
145
+ detail: `http_${res.status}`
146
+ };
147
+ }
148
+ async function handle(req) {
149
+ try {
150
+ if (req.method !== "GET") {
151
+ return jsonResponse(405, { error: "method_not_allowed" });
152
+ }
153
+ if (bearerOf(req) !== ingestSecret) {
154
+ return jsonResponse(401, { error: "unauthorized" });
155
+ }
156
+ const env = config.env ?? process.env;
157
+ const settled = await Promise.allSettled(
158
+ PROBE_SPECS.map((spec) => probeProvider(spec, env))
159
+ );
160
+ const keys = settled.map((s, i) => {
161
+ if (s.status === "fulfilled") return s.value;
162
+ const spec = PROBE_SPECS[i];
163
+ return {
164
+ provider: spec.provider,
165
+ env: spec.canonicalEnvName,
166
+ present: true,
167
+ valid: null,
168
+ detail: "probe_failed"
169
+ };
170
+ });
171
+ keys.sort((a, b) => a.provider.localeCompare(b.provider));
172
+ const body = {
173
+ app_id: appId,
174
+ checked_at: (/* @__PURE__ */ new Date()).toISOString(),
175
+ library_version: LIBRARY_VERSION,
176
+ keys
177
+ };
178
+ return jsonResponse(200, body);
179
+ } catch (err) {
180
+ void err;
181
+ return jsonResponse(500, { error: "key_health_internal_error" });
182
+ }
183
+ }
184
+ return { handle };
185
+ }
186
+
187
+ export {
188
+ LIBRARY_VERSION,
189
+ createKeyHealthRoute
190
+ };
@@ -0,0 +1,59 @@
1
+ import { G as GlassboxEvent } from '../types-CRy90cjp.mjs';
2
+ export { A as AdvisoryFiredData, C as CompileDoneData, a as CompileStartData, E as ExecuteAttemptData, b as ExecuteSuccessData, F as FallbackWalkedData, c as GLASSBOX_STREAM_TTL_MS, d as GlassboxEventKind, e as GlassboxPubSub } from '../types-CRy90cjp.mjs';
3
+ import '../ir-BC4uDL98.mjs';
4
+ import '../dialect.mjs';
5
+
6
+ /**
7
+ * subscribe(traceId) — public Glass-Box subscription export.
8
+ *
9
+ * Consumer route handlers (e.g. Vercel Edge `/api/glassbox/stream`) import
10
+ * this and bridge the ReadableStream to SSE. The browser-side panel then
11
+ * renders events in real time:
12
+ *
13
+ * import { subscribe } from '@warmdrift/kgauto-compiler/glassbox';
14
+ *
15
+ * export async function GET(req: Request) {
16
+ * const { searchParams } = new URL(req.url);
17
+ * const traceId = searchParams.get('traceId');
18
+ * if (!traceId) return new Response('missing traceId', { status: 400 });
19
+ * const stream = subscribe(traceId);
20
+ * // ... bridge ReadableStream<GlassboxEvent> → SSE here ...
21
+ * }
22
+ *
23
+ * Stream behavior:
24
+ * - Emits events for `traceId` as they're published.
25
+ * - Closes cleanly 60s after the last event (rolling TTL).
26
+ * - If no events arrive within 60s of subscription, closes empty.
27
+ * - Multiple subscribers on the same traceId all fan out.
28
+ *
29
+ * No replay: subscribe() picks up only events published AFTER subscription.
30
+ * Replay is the brain-poll surface's job (see design doc).
31
+ */
32
+
33
+ /**
34
+ * Subscribe to Glass-Box events for a traceId. Returns a ReadableStream
35
+ * that yields GlassboxEvent objects until the per-trace TTL elapses.
36
+ *
37
+ * Cancelling the stream (consumer disconnect, AbortController, etc.) tears
38
+ * down the subscription cleanly via the underlying adapter.
39
+ */
40
+ declare function subscribe(traceId: string): ReadableStream<GlassboxEvent>;
41
+ /**
42
+ * Subscribe to Glass-Box events for ALL traces under an appId — the
43
+ * "tail-all" surface (alpha.26). Backs the extension's default Live mode:
44
+ * rather than needing a specific traceId ahead of time, the panel sees
45
+ * every event for the configured consumer as calls happen.
46
+ *
47
+ * Per-app routing fires only when emit call-sites pass `appId` (the typed
48
+ * builders thread `ir.appId` automatically). Per-trace channel continues to
49
+ * fire for `subscribe(traceId)` callers — both arms are independent.
50
+ *
51
+ * Cross-tenant isolation: the consumer's `/api/glassbox/stream` uses the
52
+ * factory's configured appId — no caller-supplied `?appId=` URL parameter,
53
+ * so a consumer cannot subscribe to another consumer's stream.
54
+ */
55
+ declare function subscribeApp({ appId, }: {
56
+ appId: string;
57
+ }): ReadableStream<GlassboxEvent>;
58
+
59
+ export { GlassboxEvent, subscribe, subscribeApp };
@@ -0,0 +1,59 @@
1
+ import { G as GlassboxEvent } from '../types-CsB2YASc.js';
2
+ export { A as AdvisoryFiredData, C as CompileDoneData, a as CompileStartData, E as ExecuteAttemptData, b as ExecuteSuccessData, F as FallbackWalkedData, c as GLASSBOX_STREAM_TTL_MS, d as GlassboxEventKind, e as GlassboxPubSub } from '../types-CsB2YASc.js';
3
+ import '../ir-B2h0GAEL.js';
4
+ import '../dialect.js';
5
+
6
+ /**
7
+ * subscribe(traceId) — public Glass-Box subscription export.
8
+ *
9
+ * Consumer route handlers (e.g. Vercel Edge `/api/glassbox/stream`) import
10
+ * this and bridge the ReadableStream to SSE. The browser-side panel then
11
+ * renders events in real time:
12
+ *
13
+ * import { subscribe } from '@warmdrift/kgauto-compiler/glassbox';
14
+ *
15
+ * export async function GET(req: Request) {
16
+ * const { searchParams } = new URL(req.url);
17
+ * const traceId = searchParams.get('traceId');
18
+ * if (!traceId) return new Response('missing traceId', { status: 400 });
19
+ * const stream = subscribe(traceId);
20
+ * // ... bridge ReadableStream<GlassboxEvent> → SSE here ...
21
+ * }
22
+ *
23
+ * Stream behavior:
24
+ * - Emits events for `traceId` as they're published.
25
+ * - Closes cleanly 60s after the last event (rolling TTL).
26
+ * - If no events arrive within 60s of subscription, closes empty.
27
+ * - Multiple subscribers on the same traceId all fan out.
28
+ *
29
+ * No replay: subscribe() picks up only events published AFTER subscription.
30
+ * Replay is the brain-poll surface's job (see design doc).
31
+ */
32
+
33
+ /**
34
+ * Subscribe to Glass-Box events for a traceId. Returns a ReadableStream
35
+ * that yields GlassboxEvent objects until the per-trace TTL elapses.
36
+ *
37
+ * Cancelling the stream (consumer disconnect, AbortController, etc.) tears
38
+ * down the subscription cleanly via the underlying adapter.
39
+ */
40
+ declare function subscribe(traceId: string): ReadableStream<GlassboxEvent>;
41
+ /**
42
+ * Subscribe to Glass-Box events for ALL traces under an appId — the
43
+ * "tail-all" surface (alpha.26). Backs the extension's default Live mode:
44
+ * rather than needing a specific traceId ahead of time, the panel sees
45
+ * every event for the configured consumer as calls happen.
46
+ *
47
+ * Per-app routing fires only when emit call-sites pass `appId` (the typed
48
+ * builders thread `ir.appId` automatically). Per-trace channel continues to
49
+ * fire for `subscribe(traceId)` callers — both arms are independent.
50
+ *
51
+ * Cross-tenant isolation: the consumer's `/api/glassbox/stream` uses the
52
+ * factory's configured appId — no caller-supplied `?appId=` URL parameter,
53
+ * so a consumer cannot subscribe to another consumer's stream.
54
+ */
55
+ declare function subscribeApp({ appId, }: {
56
+ appId: string;
57
+ }): ReadableStream<GlassboxEvent>;
58
+
59
+ export { GlassboxEvent, subscribe, subscribeApp };
@@ -0,0 +1,312 @@
1
+ "use strict";
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
6
+ var __export = (target, all) => {
7
+ for (var name in all)
8
+ __defProp(target, name, { get: all[name], enumerable: true });
9
+ };
10
+ var __copyProps = (to, from, except, desc) => {
11
+ if (from && typeof from === "object" || typeof from === "function") {
12
+ for (let key of __getOwnPropNames(from))
13
+ if (!__hasOwnProp.call(to, key) && key !== except)
14
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
15
+ }
16
+ return to;
17
+ };
18
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
19
+
20
+ // src/glassbox/index.ts
21
+ var glassbox_exports = {};
22
+ __export(glassbox_exports, {
23
+ GLASSBOX_STREAM_TTL_MS: () => GLASSBOX_STREAM_TTL_MS,
24
+ subscribe: () => subscribe,
25
+ subscribeApp: () => subscribeApp
26
+ });
27
+ module.exports = __toCommonJS(glassbox_exports);
28
+
29
+ // src/glassbox/types.ts
30
+ var GLASSBOX_STREAM_TTL_MS = 6e4;
31
+
32
+ // src/glassbox/pubsub-memory.ts
33
+ var MemoryPubSub = class {
34
+ subscribers = /* @__PURE__ */ new Map();
35
+ async publish(channelKey, event) {
36
+ const subs = this.subscribers.get(channelKey);
37
+ if (!subs || subs.size === 0) return;
38
+ for (const sub of subs) {
39
+ if (sub.closed) continue;
40
+ try {
41
+ sub.controller.enqueue(event);
42
+ } catch {
43
+ sub.closed = true;
44
+ continue;
45
+ }
46
+ this.refreshTtl(channelKey, sub);
47
+ }
48
+ }
49
+ subscribe(channelKey) {
50
+ const self = this;
51
+ let sub;
52
+ return new ReadableStream({
53
+ start(controller) {
54
+ sub = {
55
+ controller,
56
+ ttlTimer: setTimeout(() => {
57
+ self.closeSubscriber(channelKey, sub);
58
+ }, GLASSBOX_STREAM_TTL_MS),
59
+ closed: false
60
+ };
61
+ let set = self.subscribers.get(channelKey);
62
+ if (!set) {
63
+ set = /* @__PURE__ */ new Set();
64
+ self.subscribers.set(channelKey, set);
65
+ }
66
+ set.add(sub);
67
+ },
68
+ cancel() {
69
+ if (sub) self.removeSubscriber(channelKey, sub);
70
+ }
71
+ });
72
+ }
73
+ /**
74
+ * Refresh the rolling TTL for a subscriber after an event lands. Replaces
75
+ * the existing timer with a fresh 60s one.
76
+ */
77
+ refreshTtl(channelKey, sub) {
78
+ clearTimeout(sub.ttlTimer);
79
+ sub.ttlTimer = setTimeout(() => {
80
+ this.closeSubscriber(channelKey, sub);
81
+ }, GLASSBOX_STREAM_TTL_MS);
82
+ }
83
+ /**
84
+ * Close the subscriber's stream cleanly and remove from the fan-out set.
85
+ * Idempotent — safe to call multiple times.
86
+ */
87
+ closeSubscriber(channelKey, sub) {
88
+ if (sub.closed) return;
89
+ sub.closed = true;
90
+ clearTimeout(sub.ttlTimer);
91
+ try {
92
+ sub.controller.close();
93
+ } catch {
94
+ }
95
+ this.removeSubscriber(channelKey, sub);
96
+ }
97
+ removeSubscriber(channelKey, sub) {
98
+ clearTimeout(sub.ttlTimer);
99
+ const set = this.subscribers.get(channelKey);
100
+ if (!set) return;
101
+ set.delete(sub);
102
+ if (set.size === 0) this.subscribers.delete(channelKey);
103
+ }
104
+ /**
105
+ * Test-only reset. Tears down all subscribers, clears all state. Calling
106
+ * outside of tests is harmless but cancels every active stream.
107
+ */
108
+ _reset() {
109
+ for (const [, set] of this.subscribers) {
110
+ for (const sub of set) {
111
+ this.closeSubscriber("", sub);
112
+ }
113
+ }
114
+ this.subscribers.clear();
115
+ }
116
+ };
117
+
118
+ // src/glassbox/pubsub-upstash.ts
119
+ var UpstashPubSub = class {
120
+ url;
121
+ token;
122
+ fetchImpl;
123
+ blockMs;
124
+ maxLen;
125
+ constructor(cfg) {
126
+ this.url = cfg.url.replace(/\/$/, "");
127
+ this.token = cfg.token;
128
+ this.fetchImpl = cfg.fetchImpl ?? globalThis.fetch.bind(globalThis);
129
+ this.blockMs = cfg.blockMs ?? 100;
130
+ this.maxLen = cfg.maxLen ?? 100;
131
+ }
132
+ async publish(channelKey, event) {
133
+ const key = channelKey;
134
+ const payload = JSON.stringify(event);
135
+ await this.cmd([
136
+ "XADD",
137
+ key,
138
+ "MAXLEN",
139
+ "~",
140
+ String(this.maxLen),
141
+ "*",
142
+ "event",
143
+ payload
144
+ ]);
145
+ await this.cmd(["EXPIRE", key, String(Math.ceil(GLASSBOX_STREAM_TTL_MS / 1e3))]);
146
+ }
147
+ subscribe(channelKey) {
148
+ const key = channelKey;
149
+ const self = this;
150
+ let cursor = "$";
151
+ let cancelled = false;
152
+ let ttlDeadline = Date.now() + GLASSBOX_STREAM_TTL_MS;
153
+ return new ReadableStream({
154
+ async start(controller) {
155
+ try {
156
+ while (!cancelled && Date.now() < ttlDeadline) {
157
+ const resp = await self.cmd([
158
+ "XREAD",
159
+ "BLOCK",
160
+ String(self.blockMs),
161
+ "STREAMS",
162
+ key,
163
+ cursor
164
+ ]);
165
+ if (cancelled) break;
166
+ const parsed = parseXReadResult(resp.result);
167
+ if (parsed.entries.length === 0) {
168
+ continue;
169
+ }
170
+ for (const entry of parsed.entries) {
171
+ const evt = decodeEvent(entry.fields);
172
+ if (evt) {
173
+ try {
174
+ controller.enqueue(evt);
175
+ } catch {
176
+ cancelled = true;
177
+ break;
178
+ }
179
+ }
180
+ cursor = entry.id;
181
+ }
182
+ ttlDeadline = Date.now() + GLASSBOX_STREAM_TTL_MS;
183
+ }
184
+ } catch (err) {
185
+ if (!cancelled) {
186
+ try {
187
+ controller.error(err);
188
+ } catch {
189
+ }
190
+ return;
191
+ }
192
+ }
193
+ try {
194
+ controller.close();
195
+ } catch {
196
+ }
197
+ },
198
+ cancel() {
199
+ cancelled = true;
200
+ }
201
+ });
202
+ }
203
+ async cmd(args) {
204
+ const res = await this.fetchImpl(this.url, {
205
+ method: "POST",
206
+ headers: {
207
+ Authorization: `Bearer ${this.token}`,
208
+ "Content-Type": "application/json"
209
+ },
210
+ body: JSON.stringify(args)
211
+ });
212
+ if (!res.ok) {
213
+ throw new Error(`Upstash ${args[0]} failed: HTTP ${res.status}`);
214
+ }
215
+ const json = await res.json();
216
+ if (json.error) {
217
+ throw new Error(`Upstash ${args[0]} failed: ${json.error}`);
218
+ }
219
+ return json;
220
+ }
221
+ };
222
+ function traceChannel(traceId) {
223
+ return `glassbox:trace:${traceId}`;
224
+ }
225
+ function appChannel(appId) {
226
+ return `glassbox:app:${appId}`;
227
+ }
228
+ function decodeEvent(fields) {
229
+ const raw = fields["event"];
230
+ if (!raw) return void 0;
231
+ try {
232
+ const parsed = JSON.parse(raw);
233
+ if (typeof parsed.kind === "string" && typeof parsed.at === "number") {
234
+ return parsed;
235
+ }
236
+ return void 0;
237
+ } catch {
238
+ return void 0;
239
+ }
240
+ }
241
+ function parseXReadResult(raw) {
242
+ if (!Array.isArray(raw)) return { entries: [] };
243
+ const entries = [];
244
+ for (const stream of raw) {
245
+ if (!Array.isArray(stream) || stream.length < 2) continue;
246
+ const streamEntries = stream[1];
247
+ if (!Array.isArray(streamEntries)) continue;
248
+ for (const entry of streamEntries) {
249
+ if (!Array.isArray(entry) || entry.length < 2) continue;
250
+ const id = String(entry[0]);
251
+ const flat = entry[1];
252
+ if (!Array.isArray(flat)) continue;
253
+ const fields = {};
254
+ for (let i = 0; i < flat.length; i += 2) {
255
+ const k = flat[i];
256
+ const v = flat[i + 1];
257
+ if (typeof k === "string") fields[k] = String(v ?? "");
258
+ }
259
+ entries.push({ id, fields });
260
+ }
261
+ }
262
+ return { entries };
263
+ }
264
+
265
+ // src/glassbox/emit.ts
266
+ var activePubSub;
267
+ function getPubSub() {
268
+ if (activePubSub) return activePubSub;
269
+ const url = readEnv("UPSTASH_REDIS_URL");
270
+ const token = readEnv("UPSTASH_REDIS_TOKEN");
271
+ if (url && token) {
272
+ activePubSub = new UpstashPubSub({ url, token });
273
+ } else {
274
+ activePubSub = new MemoryPubSub();
275
+ }
276
+ return activePubSub;
277
+ }
278
+ function readEnv(key) {
279
+ try {
280
+ if (typeof process !== "undefined" && process.env) {
281
+ const v = process.env[key];
282
+ return v && v.trim() !== "" ? v : void 0;
283
+ }
284
+ } catch {
285
+ }
286
+ return void 0;
287
+ }
288
+
289
+ // src/glassbox/subscribe.ts
290
+ function emptyStream() {
291
+ return new ReadableStream({
292
+ start(controller) {
293
+ controller.close();
294
+ }
295
+ });
296
+ }
297
+ function subscribe(traceId) {
298
+ if (!traceId) return emptyStream();
299
+ return getPubSub().subscribe(traceChannel(traceId));
300
+ }
301
+ function subscribeApp({
302
+ appId
303
+ }) {
304
+ if (!appId) return emptyStream();
305
+ return getPubSub().subscribe(appChannel(appId));
306
+ }
307
+ // Annotate the CommonJS export names for ESM import in node:
308
+ 0 && (module.exports = {
309
+ GLASSBOX_STREAM_TTL_MS,
310
+ subscribe,
311
+ subscribeApp
312
+ });
@@ -0,0 +1,12 @@
1
+ import {
2
+ subscribe,
3
+ subscribeApp
4
+ } from "../chunk-RO22VFIF.mjs";
5
+ import {
6
+ GLASSBOX_STREAM_TTL_MS
7
+ } from "../chunk-NBO4R5PC.mjs";
8
+ export {
9
+ GLASSBOX_STREAM_TTL_MS,
10
+ subscribe,
11
+ subscribeApp
12
+ };
@@ -0,0 +1,24 @@
1
+ import { T as TraceHealth } from '../types-B-pzBJKf.mjs';
2
+ import '../ir-BC4uDL98.mjs';
3
+ import '../dialect.mjs';
4
+
5
+ /**
6
+ * Pure formatting helpers for Glass-Box trace display.
7
+ *
8
+ * Zero deps, no React, no design tokens. Safe to import from any consumer
9
+ * (React component, server route, CLI, Edge worker).
10
+ *
11
+ * Extracted from the alpha.32 tt-intelligence reference component port in
12
+ * alpha.35 so multiple consumer dashboards can render trace data with
13
+ * matching formatting without re-implementing each helper.
14
+ */
15
+
16
+ declare function formatAgo(iso: string, now?: number): string;
17
+ declare function shortTraceId(traceId: string): string;
18
+ declare function formatCost(usd: number | undefined | null): string;
19
+ declare function formatMs(ms: number | undefined | null): string;
20
+ declare function formatOrDash(v: number | string | undefined | null): string;
21
+ declare function inputRatioLabel(status: TraceHealth['inputRatioStatus']): string;
22
+ declare function formatMutation(mutation: string): string;
23
+
24
+ export { formatAgo, formatCost, formatMs, formatMutation, formatOrDash, inputRatioLabel, shortTraceId };