@cat-factory/agents 0.84.2 → 0.86.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 (36) hide show
  1. package/dist/agents/prompts/fragment-brief.d.ts +15 -0
  2. package/dist/agents/prompts/fragment-brief.d.ts.map +1 -0
  3. package/dist/agents/prompts/fragment-brief.js +41 -0
  4. package/dist/agents/prompts/fragment-brief.js.map +1 -0
  5. package/dist/fragmentLibrary/FragmentBriefService.d.ts +50 -0
  6. package/dist/fragmentLibrary/FragmentBriefService.d.ts.map +1 -0
  7. package/dist/fragmentLibrary/FragmentBriefService.js +155 -0
  8. package/dist/fragmentLibrary/FragmentBriefService.js.map +1 -0
  9. package/dist/fragmentLibrary/FragmentLibraryService.d.ts +32 -2
  10. package/dist/fragmentLibrary/FragmentLibraryService.d.ts.map +1 -1
  11. package/dist/fragmentLibrary/FragmentLibraryService.js +49 -11
  12. package/dist/fragmentLibrary/FragmentLibraryService.js.map +1 -1
  13. package/dist/fragmentLibrary/FragmentSourceService.d.ts.map +1 -1
  14. package/dist/fragmentLibrary/FragmentSourceService.js +4 -0
  15. package/dist/fragmentLibrary/FragmentSourceService.js.map +1 -1
  16. package/dist/fragmentLibrary/LlmFragmentBriefGenerator.d.ts +23 -0
  17. package/dist/fragmentLibrary/LlmFragmentBriefGenerator.d.ts.map +1 -0
  18. package/dist/fragmentLibrary/LlmFragmentBriefGenerator.js +92 -0
  19. package/dist/fragmentLibrary/LlmFragmentBriefGenerator.js.map +1 -0
  20. package/dist/fragmentLibrary/fragment-catalog.d.ts +16 -1
  21. package/dist/fragmentLibrary/fragment-catalog.d.ts.map +1 -1
  22. package/dist/fragmentLibrary/fragment-catalog.js +23 -6
  23. package/dist/fragmentLibrary/fragment-catalog.js.map +1 -1
  24. package/dist/fragmentLibrary/fragment-source.logic.d.ts +7 -0
  25. package/dist/fragmentLibrary/fragment-source.logic.d.ts.map +1 -1
  26. package/dist/fragmentLibrary/fragment-source.logic.js +3 -0
  27. package/dist/fragmentLibrary/fragment-source.logic.js.map +1 -1
  28. package/dist/index.d.ts +5 -2
  29. package/dist/index.d.ts.map +1 -1
  30. package/dist/index.js +3 -0
  31. package/dist/index.js.map +1 -1
  32. package/dist/providers/instrumented.d.ts +36 -6
  33. package/dist/providers/instrumented.d.ts.map +1 -1
  34. package/dist/providers/instrumented.js +144 -15
  35. package/dist/providers/instrumented.js.map +1 -1
  36. package/package.json +5 -5
@@ -4,14 +4,27 @@ import { catFactoryObservability, describeError, noopLogger, readInlineObservabi
4
4
  // observability tag from here; the canonical, dependency-free definition lives in the
5
5
  // kernel so any caller layer can build the tag without depending on this package.
6
6
  export { catFactoryObservability };
7
- // Instruments the INLINE (non-proxied) LLM calls so they reach the SAME trace sink as
8
- // the container-agent calls. Container calls go through the LLM proxy, which the
9
- // orchestration `LlmObservabilityService` fans out to the sink; inline calls
10
- // (requirements review/rework, the document planner, the fragment selector, the inline
11
- // agent executor) call the AI SDK directly. This decorator wraps every resolved model
12
- // with an AI SDK middleware that, after each generate, builds the SAME
13
- // {@link LlmGenerationEvent} and calls the SAME `sink.recordGeneration` so adding the
14
- // inline feeder never means a second sink.
7
+ // Instruments the INLINE (non-proxied) LLM calls so they reach the SAME sinks as the
8
+ // container-agent calls. Container calls go through the LLM proxy (or, on a subscription
9
+ // harness, the harness's own stream), and both feed the orchestration
10
+ // `LlmObservabilityService`, which persists the call to `llm_call_metrics` and fans it out
11
+ // to the external trace sink. Inline calls (requirements review/rework, the document
12
+ // researcher/outliner/interviewer, the judges, consensus, the fragment selector, the inline
13
+ // agent executor) call the AI SDK directly. This decorator wraps every resolved model with an
14
+ // AI SDK middleware that, after each generate, feeds the same telemetry through one of two
15
+ // exits — so adding the inline feeder never means a second sink OR a second store:
16
+ //
17
+ // - `recordCall` (preferred) — the {@link InlineLlmCallRecorder} the facade builds off
18
+ // `LlmObservabilityService`. It persists the row AND owns the trace-sink fan-out, so an
19
+ // inline call recorded this way is visible to `ObservabilityPanel`, the per-step token
20
+ // rollups and `/api/v1/debug/*` exactly like a proxied one. Requires a workspace to file
21
+ // the row under.
22
+ // - `traceSink` — the direct emit, for a deployment that wires a sink but no metric store,
23
+ // and for the un-tagged call `recordCall` structurally cannot take (see below).
24
+ //
25
+ // EXACTLY ONE of the two runs per call. `recordCall`'s service already fans out to the sink
26
+ // it was built with, so calling both would double every inline generation on Langfuse/OTel;
27
+ // the facade therefore hands the SAME sink instance to both.
15
28
  //
16
29
  // The middleware is transparent: callers keep calling `generateText({ model })`
17
30
  // unchanged. To group a call under its run's trace and label it, a caller passes
@@ -72,25 +85,78 @@ function readOutputText(result) {
72
85
  }
73
86
  return '';
74
87
  }
88
+ /** Extract the model's reasoning/thinking trace from a generate result, when it came separately. */
89
+ function readReasoningText(result) {
90
+ const content = result?.content;
91
+ if (!Array.isArray(content))
92
+ return '';
93
+ return content
94
+ .filter((part) => part?.type === 'reasoning')
95
+ .map((part) => String(part.text ?? ''))
96
+ .join('');
97
+ }
98
+ /** How many chat messages the request carried (the store's chain uses this as the turn size). */
99
+ function readMessageCount(params) {
100
+ const prompt = params?.prompt;
101
+ return Array.isArray(prompt) ? prompt.length : 0;
102
+ }
103
+ /** How many tools the request offered, across the SDK's array and record `tools` shapes. */
104
+ function readToolCount(params) {
105
+ const tools = params?.tools;
106
+ if (Array.isArray(tools))
107
+ return tools.length;
108
+ if (tools && typeof tools === 'object')
109
+ return Object.keys(tools).length;
110
+ return 0;
111
+ }
112
+ /** The output ceiling the request asked for, or null when it named none. */
113
+ function readRequestMaxTokens(params) {
114
+ const max = params?.maxOutputTokens;
115
+ return typeof max === 'number' ? max : null;
116
+ }
117
+ /**
118
+ * The call's finish reason, across the SDK's two shapes.
119
+ *
120
+ * The current (v3) spec reports an OBJECT — `{ unified, raw? }` — where `unified` is the
121
+ * provider-independent reason and `raw` whatever the vendor called it; only the older flat
122
+ * spec reports the bare string. Reading the string alone silently answered `null` for every
123
+ * real call, which is invisible in telemetry (a null finish reason reads as "the provider
124
+ * didn't say") and is why this has a test driving the SDK's own mock model rather than a
125
+ * hand-rolled stand-in that returned the shape the reader wanted.
126
+ *
127
+ * `unified` is the one stored: it is what makes `length` comparable across providers, which
128
+ * is the whole reason a truncated-output signal can be computed at all.
129
+ */
75
130
  function readFinishReason(result) {
76
131
  const reason = result?.finishReason;
77
- return typeof reason === 'string' ? reason : null;
132
+ if (typeof reason === 'string')
133
+ return reason;
134
+ const unified = reason?.unified;
135
+ return typeof unified === 'string' ? unified : null;
78
136
  }
79
137
  /**
80
- * A {@link ModelProvider} that wraps every resolved model so inline LLM calls surface
81
- * on the trace sink. Build it only when a sink is wired AND the deployment opts in; an
82
- * unwrapped provider behaves exactly as before.
138
+ * A {@link ModelProvider} that wraps every resolved model so inline LLM calls surface on the
139
+ * telemetry store and/or the external trace sink. Build it only when at least one of those
140
+ * exits is wired AND the deployment opts in; an unwrapped provider behaves exactly as before.
83
141
  */
84
142
  export class InstrumentedModelProvider {
85
143
  inner;
86
144
  traceSink;
145
+ recordCall;
87
146
  recordPrompts;
88
147
  workspaceBodiesEnabled;
89
148
  now;
90
149
  log;
91
150
  constructor(deps) {
151
+ if (!deps.traceSink && !deps.recordCall) {
152
+ // A provider that instruments nothing is a wiring mistake wearing the instrumented
153
+ // wrapper's clothes: every call would pay the middleware and reach no sink, and the
154
+ // facade's `instanceof InstrumentedModelProvider` wiring assertions would still pass.
155
+ throw new Error('InstrumentedModelProvider needs at least one exit: a traceSink, a recordCall, or both.');
156
+ }
92
157
  this.inner = deps.inner;
93
158
  this.traceSink = deps.traceSink;
159
+ this.recordCall = deps.recordCall;
94
160
  this.recordPrompts = deps.recordPrompts ?? true;
95
161
  this.workspaceBodiesEnabled = deps.workspaceBodiesEnabled;
96
162
  this.now = deps.now ?? (() => Date.now());
@@ -131,11 +197,36 @@ export class InstrumentedModelProvider {
131
197
  const context = readInlineObservabilityContext(params);
132
198
  const usage = readUsage(result?.usage);
133
199
  const workspaceId = context.workspaceId ?? null;
200
+ const executionId = context.executionId ?? null;
201
+ const finishReason = ok ? readFinishReason(result) : null;
202
+ // The recorder is the richer exit AND owns the sink fan-out, so a workspace-scoped call
203
+ // takes it and stops. An un-tagged call (`workspaceId: null`) has no workspace to file a
204
+ // row under, so it falls through to the sink — which is also the whole story on a
205
+ // deployment that wires a sink but retains no metrics.
206
+ if (this.recordCall && workspaceId) {
207
+ this.record(this.recordCall, {
208
+ workspaceId,
209
+ executionId,
210
+ agentKind: context.agentKind,
211
+ ref,
212
+ params,
213
+ result,
214
+ usage,
215
+ durationMs: Math.max(0, endedAt - startedAt),
216
+ finishReason,
217
+ ok,
218
+ errMessage,
219
+ });
220
+ return;
221
+ }
222
+ if (!this.traceSink)
223
+ return;
224
+ const traceSink = this.traceSink;
134
225
  // Numeric telemetry + timing are recorded unconditionally, exactly as on the proxy
135
226
  // path; only the BODIES answer to the privacy gate below.
136
227
  const event = {
137
228
  workspaceId,
138
- executionId: context.executionId ?? null,
229
+ executionId,
139
230
  agentKind: context.agentKind,
140
231
  provider: ref.provider,
141
232
  model: ref.model,
@@ -146,7 +237,7 @@ export class InstrumentedModelProvider {
146
237
  cacheWriteTokens: usage.cacheWrite,
147
238
  completionTokens: usage.completion,
148
239
  totalTokens: usage.total,
149
- finishReason: ok ? readFinishReason(result) : null,
240
+ finishReason,
150
241
  ok,
151
242
  errorMessage: errMessage,
152
243
  };
@@ -158,13 +249,51 @@ export class InstrumentedModelProvider {
158
249
  // turns `storeAgentContext` off stops shipping bodies on its very next inline
159
250
  // call rather than when its scoped provider is next rebuilt.
160
251
  const recordBodies = await this.bodiesAllowed(workspaceId);
161
- await this.traceSink.recordGeneration({
252
+ await traceSink.recordGeneration({
162
253
  ...event,
163
254
  input: recordBodies ? safeJson(params?.prompt) : '',
164
255
  output: recordBodies && ok ? readOutputText(result) : '',
165
256
  });
166
257
  }, { workspaceId, executionId: event.executionId, source: 'inline' });
167
258
  }
259
+ /**
260
+ * Hand a workspace-scoped call to the metric recorder. Bodies are passed through
261
+ * UNGATED on purpose: the service behind the recorder scrubs them and applies the same
262
+ * `LLM_RECORD_PROMPTS` + `storeAgentContext` double gate this class applies to the sink
263
+ * exit — gating here as well would drop a body the service is entitled to store and put
264
+ * the rule in two places, which is how the sink half drifted open in the first place.
265
+ * They are handed over as THUNKS so keeping the gate on the far side costs nothing: a
266
+ * deployment with recording off never pays to serialise the prompt array.
267
+ *
268
+ * Best-effort and off the response path, exactly like the sink exit.
269
+ */
270
+ record(recordCall, call) {
271
+ const { workspaceId, executionId, ref, params, result, usage, ok } = call;
272
+ void runBestEffort(this.log, 'llmObservability.recordInlineCall', () => recordCall({
273
+ workspaceId,
274
+ executionId,
275
+ agentKind: call.agentKind,
276
+ provider: ref.provider,
277
+ model: ref.model,
278
+ messageCount: readMessageCount(params),
279
+ toolCount: readToolCount(params),
280
+ requestMaxTokens: readRequestMaxTokens(params),
281
+ promptTokens: usage.prompt,
282
+ cacheReadTokens: usage.cacheRead,
283
+ cacheWriteTokens: usage.cacheWrite,
284
+ completionTokens: usage.completion,
285
+ totalTokens: usage.total,
286
+ finishReason: call.finishReason,
287
+ durationMs: call.durationMs,
288
+ ok,
289
+ errorMessage: call.errMessage,
290
+ // Thunks: the service resolves a body only after its gate says it will be stored,
291
+ // so a prompts-off deployment never serialises a prompt array it then drops.
292
+ promptText: () => safeJson(params?.prompt),
293
+ responseText: () => (ok ? readOutputText(result) : ''),
294
+ reasoningText: () => (ok ? readReasoningText(result) : ''),
295
+ }), { workspaceId, executionId, source: 'inline' });
296
+ }
168
297
  /**
169
298
  * The double gate on prompt/response bodies: the deployment-wide `LLM_RECORD_PROMPTS`
170
299
  * switch AND the workspace's own `storeAgentContext` opt-out.
@@ -1 +1 @@
1
- {"version":3,"file":"instrumented.js","sourceRoot":"","sources":["../../src/providers/instrumented.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"instrumented.js","sourceRoot":"","sources":["../../src/providers/instrumented.ts"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cat-factory/agents",
3
- "version": "0.84.2",
3
+ "version": "0.86.0",
4
4
  "description": "Agent catalog, routing, prompts and fragment library for the Agent Architecture Board.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -32,14 +32,14 @@
32
32
  "handlebars": "^4.7.9",
33
33
  "p-map": "^7.0.6",
34
34
  "valibot": "^1.4.2",
35
- "@cat-factory/contracts": "0.193.0",
36
- "@cat-factory/kernel": "0.188.0",
37
- "@cat-factory/prompt-fragments": "0.15.16"
35
+ "@cat-factory/contracts": "0.194.0",
36
+ "@cat-factory/kernel": "0.190.0",
37
+ "@cat-factory/prompt-fragments": "0.15.17"
38
38
  },
39
39
  "devDependencies": {
40
40
  "typescript": "7.0.2",
41
41
  "vitest": "^4.1.10",
42
- "@cat-factory/caching": "0.11.17"
42
+ "@cat-factory/caching": "0.11.19"
43
43
  },
44
44
  "scripts": {
45
45
  "build": "tsc -b tsconfig.build.json",