@warmdrift/kgauto-compiler 2.0.0-alpha.7 → 2.0.0-alpha.71

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 (55) hide show
  1. package/README.md +176 -46
  2. package/dist/brain-proxy.d.mts +113 -0
  3. package/dist/brain-proxy.d.ts +113 -0
  4. package/dist/brain-proxy.js +193 -0
  5. package/dist/brain-proxy.mjs +6 -0
  6. package/dist/chunk-4UO4CCSP.mjs +1620 -0
  7. package/dist/chunk-65ZMX5OT.mjs +169 -0
  8. package/dist/{chunk-5TI6PNSK.mjs → chunk-BVEXV5KC.mjs} +11 -0
  9. package/dist/chunk-NBO4R5PC.mjs +313 -0
  10. package/dist/chunk-P3TOAEG4.mjs +56 -0
  11. package/dist/chunk-RO22VFIF.mjs +29 -0
  12. package/dist/chunk-SBFSYCQG.mjs +719 -0
  13. package/dist/chunk-URFQR3SB.mjs +203 -0
  14. package/dist/dialect.d.mts +41 -3
  15. package/dist/dialect.d.ts +41 -3
  16. package/dist/dialect.js +14 -2
  17. package/dist/dialect.mjs +5 -3
  18. package/dist/glassbox/index.d.mts +59 -0
  19. package/dist/glassbox/index.d.ts +59 -0
  20. package/dist/glassbox/index.js +312 -0
  21. package/dist/glassbox/index.mjs +12 -0
  22. package/dist/glassbox-routes/format.d.mts +24 -0
  23. package/dist/glassbox-routes/format.d.ts +24 -0
  24. package/dist/glassbox-routes/format.js +86 -0
  25. package/dist/glassbox-routes/format.mjs +18 -0
  26. package/dist/glassbox-routes/index.d.mts +191 -0
  27. package/dist/glassbox-routes/index.d.ts +191 -0
  28. package/dist/glassbox-routes/index.js +2888 -0
  29. package/dist/glassbox-routes/index.mjs +667 -0
  30. package/dist/glassbox-routes/react/index.d.mts +74 -0
  31. package/dist/glassbox-routes/react/index.d.ts +74 -0
  32. package/dist/glassbox-routes/react/index.js +819 -0
  33. package/dist/glassbox-routes/react/index.mjs +754 -0
  34. package/dist/index.d.mts +2745 -17
  35. package/dist/index.d.ts +2745 -17
  36. package/dist/index.js +9006 -1651
  37. package/dist/index.mjs +5103 -367
  38. package/dist/ir-BEQ28muo.d.ts +1608 -0
  39. package/dist/ir-CnnJST_N.d.mts +1608 -0
  40. package/dist/key-health.d.mts +131 -0
  41. package/dist/key-health.d.ts +131 -0
  42. package/dist/key-health.js +228 -0
  43. package/dist/key-health.mjs +6 -0
  44. package/dist/profiles.d.mts +292 -2
  45. package/dist/profiles.d.ts +292 -2
  46. package/dist/profiles.js +1231 -16
  47. package/dist/profiles.mjs +9 -1
  48. package/dist/types-B--CYzMo.d.ts +131 -0
  49. package/dist/types-BDFrJkma.d.mts +131 -0
  50. package/dist/types-DSeJJ6tt.d.ts +149 -0
  51. package/dist/types-DeGRCTlJ.d.mts +149 -0
  52. package/package.json +54 -8
  53. package/dist/chunk-MBEI5UOM.mjs +0 -409
  54. package/dist/profiles-B3eNQ2py.d.ts +0 -619
  55. package/dist/profiles-Py8c7zjJ.d.mts +0 -619
@@ -0,0 +1,191 @@
1
+ import { G as GlassboxEvent } from '../types-B--CYzMo.js';
2
+ import { a as TraceDetail, b as TraceSummary, c as TraceCounterfactual } from '../types-DSeJJ6tt.js';
3
+ export { A as AdvisoryRecord, T as TraceHealth, d as TraceSectionRewrite } from '../types-DSeJJ6tt.js';
4
+ import '../ir-BEQ28muo.js';
5
+ import '../dialect.js';
6
+
7
+ /**
8
+ * proxy(req) — Glass-Box replay query handler.
9
+ *
10
+ * GET /api/glassbox/proxy?traceId=<id> → single compile_outcomes row for trace
11
+ * GET /api/glassbox/proxy?limit=<N> → N most-recent compile_outcomes rows
12
+ * GET /api/glassbox/proxy → defaults to limit=20
13
+ *
14
+ * Brain reads go through PostgREST on Supabase. We always filter by
15
+ * `app_id=eq.<appId>` even though the scoped JWT's RLS policy already
16
+ * enforces tenant isolation — the explicit filter trims the network payload
17
+ * and makes the query intent obvious to anyone reading logs.
18
+ *
19
+ * Scrub: the optional `scrub` hook runs on each row before responding so
20
+ * sensitive payloads (rendered prompts, tool calls) can be redacted at the
21
+ * proxy boundary. Default is identity (no-op).
22
+ */
23
+
24
+ /**
25
+ * Typed boundary transformer: compile_outcomes row (snake_case, Postgres
26
+ * native) → TraceSummary (camelCase, TypeScript native + extension wire
27
+ * contract). Single canonical mapping site — every DB-shape ↔ wire-shape
28
+ * crossing routes through here so renderer-expected fields can't silently
29
+ * go missing. See `feedback_typed_boundary_transformers.md` for the rule.
30
+ */
31
+ declare function rowToSummary(row: Record<string, unknown>): TraceSummary;
32
+ /**
33
+ * Typed boundary transformer (L-118): compile_outcomes row → TraceDetail.
34
+ * Single canonical mapping site for the detail-view wire contract. Pre-018
35
+ * brain rows return NULL for the new columns; this transformer applies
36
+ * type-safe defaults (0 for token columns, undefined for optional strings)
37
+ * so the renderer never crashes on missing fields.
38
+ *
39
+ * alpha.28 extends the field set per the renderer design contract — every
40
+ * extended field has a default. The `counterfactuals` + `projectedDailyCost`
41
+ * fields are populated by the proxy AFTER this transformer runs (they need
42
+ * profile lookup / brain query / async I/O).
43
+ */
44
+ declare function rowToDetail(row: Record<string, unknown>): TraceDetail;
45
+
46
+ /**
47
+ * computeCounterfactuals — for a served trace, compute up to 2 cheaper
48
+ * alternatives that ALSO meet the archetype quality floor.
49
+ *
50
+ * Pure function. Called at detail-view time by the proxy's `rowToDetail`
51
+ * path. The cost-equivalent answer to "what could this have run on without
52
+ * tanking quality?" lets the Glass-Box render `💰 Cheaper alternatives` so a
53
+ * founder sees the actual cost of the routing choice rather than just the
54
+ * served cost.
55
+ *
56
+ * Mechanism (per design contract Phase 0 spec):
57
+ * 1. Walk the archetype's full default fallback chain.
58
+ * 2. For each model in the chain (excluding the served model):
59
+ * - Skip if archetypePerf[archetype] < ARCHETYPE_FLOOR_DEFAULT (6).
60
+ * Matches the cliff-advisor work — never recommend a swap that
61
+ * violates the quality floor. (Composition with Builder C is
62
+ * intentional.)
63
+ * - Skip if profile missing.
64
+ * - Compute estimated cost at the OBSERVED token counts:
65
+ * non_cached_in = tokensIn - cacheReadInputTokens
66
+ * cost = (non_cached_in / 1e6) * profile.costInputPer1m
67
+ * + (cacheable_in / 1e6) * profile.costInputPer1m
68
+ * * profile.lowering.cache.discount
69
+ * + (tokensOut / 1e6) * profile.costOutputPer1m
70
+ * - Only include if estimatedCostUsd ≤ 0.9 × servedCostUsd
71
+ * (≥10% cheaper — below that's noise of token-count estimation).
72
+ * 3. Sort cheapest first.
73
+ * 4. Cap to top 2.
74
+ *
75
+ * Edge cases:
76
+ * - tokensIn === 0 → return [] (can't meaningfully estimate).
77
+ * - servedCostUsd === 0 → return [] (no baseline to beat).
78
+ * - Zero matching alternatives → return [] (renderer hides the card).
79
+ * - Served model isn't in the chain (e.g. forceModel'd off-chain) → use
80
+ * the chain for the archetype anyway.
81
+ */
82
+
83
+ /** Only surface swaps that save at least 10% vs. served. */
84
+ declare const COUNTERFACTUAL_MIN_SAVINGS_RATIO = 0.1;
85
+ /** Cap on alternatives surfaced per trace. */
86
+ declare const COUNTERFACTUAL_MAX_RESULTS = 2;
87
+ interface ComputeCounterfactualsArgs {
88
+ servedModel: string;
89
+ servedCostUsd: number;
90
+ archetype: string;
91
+ tokensIn: number;
92
+ tokensOut: number;
93
+ /** Defaults to 0 when caller doesn't know. */
94
+ cacheReadInputTokens?: number;
95
+ /** Reserved for future per-mode chain selection. */
96
+ toolOrchestration?: 'parallel' | 'sequential' | 'either';
97
+ }
98
+ declare function computeCounterfactuals(args: ComputeCounterfactualsArgs): TraceCounterfactual[];
99
+
100
+ /**
101
+ * Public entry point for `@warmdrift/kgauto-compiler/glassbox-routes`.
102
+ *
103
+ * One factory call from a Vercel Edge consumer route handler gets you both
104
+ * the replay-query (`proxy`) and live-SSE (`stream`) endpoints that the
105
+ * Glass-Box Chrome panel reads. Wiring is ~6 lines per app:
106
+ *
107
+ * // app/api/glassbox/proxy/route.ts
108
+ * import { createGlassboxRoutes } from '@warmdrift/kgauto-compiler/glassbox-routes';
109
+ * const { proxy } = createGlassboxRoutes({
110
+ * installToken: process.env.GLASSBOX_INSTALL_TOKEN!,
111
+ * extensionId: process.env.GLASSBOX_EXTENSION_ID!,
112
+ * brainEndpoint: process.env.GLASSBOX_BRAIN_ENDPOINT!,
113
+ * brainJwt: process.env.GLASSBOX_BRAIN_JWT!, // scoped JWT (RLS via app_id claim)
114
+ * brainAnonKey: process.env.GLASSBOX_BRAIN_ANON_KEY!, // project anon/publishable key (Supabase apikey header)
115
+ * appId: 'playbacksam',
116
+ * });
117
+ * export { proxy as GET };
118
+ *
119
+ * Auth model (defense in depth):
120
+ * - Bearer install token → primary, constant-time compared
121
+ * - chrome-extension Origin → secondary CSRF gate
122
+ *
123
+ * Scrub: optional sanitization runs at the proxy boundary before events or
124
+ * rows leave the consumer's infrastructure. Per pii-scrubber-call-site-not-
125
+ * package: kgauto stays naive to PII policy; consumers pass scrub hooks
126
+ * that encode their own data-handling rules.
127
+ *
128
+ * Brain reads use the scoped JWT minted via migration 013. RLS enforces
129
+ * `app_id = jwt.claim.app_id`; the proxy filter is belt-and-suspenders for
130
+ * payload size + log legibility.
131
+ */
132
+
133
+ interface GlassboxRoutesConfig {
134
+ /** Bearer token validated on every request via constant-time compare. Required. */
135
+ installToken: string;
136
+ /** chrome-extension://<id> — exact match required on Origin header. Required. */
137
+ extensionId: string;
138
+ /** Brain endpoint base (e.g. https://kgauto-brain.supabase.co). Used by `proxy` for replay queries. */
139
+ brainEndpoint: string;
140
+ /** Scoped JWT for brain reads. Use the per-consumer JWT minted via migration 013 (claim: app_id). Drives RLS via the `app_id` claim; sent as `Authorization: Bearer <jwt>` only. */
141
+ brainJwt: string;
142
+ /**
143
+ * Anon/publishable key for the Supabase `apikey` header. Supabase requires
144
+ * `apikey` to be one of the project's known keys (anon or service_role) —
145
+ * the scoped JWT in `brainJwt` doesn't qualify there. Pass the project's
146
+ * legacy `anon` key (JWT format, role=anon) or the modern `sb_publishable_...`
147
+ * key. Safe to expose at the wire (that's what "publishable" means).
148
+ *
149
+ * Pre-alpha.24 this was missing and `brainJwt` was used as apikey too — first
150
+ * real call always 401'd against real Supabase. Catching this required a
151
+ * pre-publish smoke against the real brain; unit tests with mocked fetch
152
+ * couldn't surface it. See L-117 in command-center/learnings.md.
153
+ */
154
+ brainAnonKey: string;
155
+ /** App scope filter — must match the JWT's app_id claim. */
156
+ appId: string;
157
+ /**
158
+ * Optional sanitization hook. Called with each event/trace BEFORE it leaves the consumer.
159
+ * Default: identity (no scrub). PII policy lives at the call-site, not in the package.
160
+ */
161
+ scrub?: (event: GlassboxEvent | Record<string, unknown>) => GlassboxEvent | Record<string, unknown>;
162
+ /**
163
+ * Test-only seam: override the brain fetch implementation. Production
164
+ * code never sets this; tests use it to mock PostgREST responses.
165
+ */
166
+ fetch?: typeof fetch;
167
+ /**
168
+ * Test-only seam: override the per-trace live-stream subscriber. Production
169
+ * code resolves to the alpha.17 `subscribe()` export; tests inject a fake
170
+ * source ReadableStream<GlassboxEvent>.
171
+ */
172
+ subscribe?: (traceId: string) => ReadableStream<GlassboxEvent>;
173
+ /**
174
+ * Test-only seam: override the per-app "tail-all" subscriber (alpha.26).
175
+ * Production code resolves to the `subscribeApp()` export; tests inject
176
+ * a fake source. Backs the extension's default Live tab mode when no
177
+ * traceId is supplied in the URL.
178
+ */
179
+ subscribeApp?: (args: {
180
+ appId: string;
181
+ }) => ReadableStream<GlassboxEvent>;
182
+ }
183
+ interface GlassboxRoutes {
184
+ /** GET /api/glassbox/proxy?traceId=<id> OR ?limit=20 (recent traces) */
185
+ proxy: (req: Request) => Promise<Response>;
186
+ /** GET /api/glassbox/stream?traceId=<id> (SSE) */
187
+ stream: (req: Request) => Promise<Response>;
188
+ }
189
+ declare function createGlassboxRoutes(config: GlassboxRoutesConfig): GlassboxRoutes;
190
+
191
+ export { COUNTERFACTUAL_MAX_RESULTS, COUNTERFACTUAL_MIN_SAVINGS_RATIO, type ComputeCounterfactualsArgs, type GlassboxRoutes, type GlassboxRoutesConfig, TraceCounterfactual, TraceDetail, TraceSummary, computeCounterfactuals, createGlassboxRoutes, rowToDetail, rowToSummary };