stitchkit 0.56.4 → 0.57.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.
@@ -1 +1 @@
1
- {"version":3,"file":"events.d.ts","sourceRoot":"","sources":["../../src/agent-runtime/events.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAgBxB,eAAO,MAAM,8BAA8B;;;;;;;;iBAKzC,CAAC;AAEH,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAKrC,CAAC;AAEH,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;iBAKnC,CAAC;AAEH,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;iBASrC,CAAC;AAEH,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAOnC,CAAC;AAEH,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2BAMlC,CAAC;AAEH,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAC;AACxE,MAAM,MAAM,qBAAqB,GAAG,CAAC,KAAK,EAAE,iBAAiB,KAAK,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC"}
1
+ {"version":3,"file":"events.d.ts","sourceRoot":"","sources":["../../src/agent-runtime/events.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAcxB,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAUpC,CAAC;AAQH,eAAO,MAAM,8BAA8B;;;;;;;;iBAKzC,CAAC;AAQH,eAAO,MAAM,8BAA8B;;;;;;;;;;;;iBAEzC,CAAC;AAEH,eAAO,MAAM,8BAA8B;;;;;;;;;;;;;iBAGzC,CAAC;AAEH,eAAO,MAAM,4BAA4B;;;;;;;;;;;;iBAEvC,CAAC;AAEH,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAMrC,CAAC;AAEH,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;iBAKnC,CAAC;AAEH,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;iBASrC,CAAC;AAEH,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAQnC,CAAC;AAEH,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2BAUlC,CAAC;AAEH,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAC;AACxE,MAAM,MAAM,qBAAqB,GAAG,CAAC,KAAK,EAAE,iBAAiB,KAAK,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC"}
@@ -8,8 +8,9 @@ import { type AgentHistoryProjectionOptions } from './history';
8
8
  import type { AgentResolvedModel } from './models';
9
9
  import type { AgentObservability } from './observability';
10
10
  import type { ComposedAgentPrompt } from './prompt';
11
- import { AgentJsonObjectSchema, type AgentMessage, type AgentMessagePart, type AgentRun, type AgentSnapshot, type AgentTerminalReason } from './schemas';
11
+ import { type AgentAssistantPlaceholder, AgentJsonObjectSchema, type AgentMessage, type AgentMessagePart, type AgentRun, type AgentRunMetrics, type AgentSnapshot, type AgentTerminalReason } from './schemas';
12
12
  import type { AgentRuntimeStore, AgentStoreMutationResult } from './store';
13
+ import type { AgentRecoverableDescriptor } from './store-driver';
13
14
  export interface AgentRuntimeProtocolInput<CONTEXT> {
14
15
  parseContext(input: unknown): CONTEXT;
15
16
  parseInputMetadata(input: unknown): z.infer<typeof AgentJsonObjectSchema>;
@@ -29,8 +30,12 @@ export interface AgentRuntimeRecordIds {
29
30
  assistantMessageId: string;
30
31
  }
31
32
  export interface AgentRuntimeAdmission {
33
+ inputMessageId: string;
32
34
  runId: string;
33
35
  assistantMessageId: string;
36
+ input: AgentMessage;
37
+ run: AgentRun;
38
+ assistant: AgentAssistantPlaceholder | AgentMessage;
34
39
  snapshotVersion: number;
35
40
  }
36
41
  export interface AgentRuntimeRecoveryInput {
@@ -39,6 +44,30 @@ export interface AgentRuntimeRecoveryInput {
39
44
  context: unknown;
40
45
  conversationKey?: string;
41
46
  }
47
+ export type AgentRuntimeRecoveryDecision = {
48
+ action: 'resume';
49
+ } | {
50
+ action: 'skip';
51
+ } | {
52
+ action: 'requeue';
53
+ replaySafe: true;
54
+ } | {
55
+ action: 'abandon';
56
+ staleOwner: true;
57
+ };
58
+ export interface AgentRuntimeRecoverOptions<CONTEXT> {
59
+ resolveContext(input: AgentRecoverableDescriptor): CONTEXT | Promise<CONTEXT>;
60
+ decide?(input: AgentRecoverableDescriptor): AgentRuntimeRecoveryDecision | Promise<AgentRuntimeRecoveryDecision>;
61
+ pageSize?: number;
62
+ maxRuns?: number;
63
+ signal?: AbortSignal;
64
+ }
65
+ export interface AgentRuntimeRecoveryOutcome {
66
+ conversationId: string;
67
+ runId: string;
68
+ outcome: 'resumed' | 'requeued' | 'abandoned' | 'skipped' | 'failed';
69
+ error?: unknown;
70
+ }
42
71
  export interface AgentRuntimeInterruptInput {
43
72
  conversationId: string;
44
73
  runId: string;
@@ -111,8 +140,9 @@ export interface AgentRuntimeResult {
111
140
  reason: AgentTerminalReason;
112
141
  snapshotVersion: number;
113
142
  policyName?: string;
143
+ metrics?: AgentRunMetrics;
114
144
  }
115
- export interface AgentRuntime {
145
+ export interface AgentRuntime<CONTEXT = unknown> {
116
146
  submit(input: AgentRuntimeInput): {
117
147
  accepted: Promise<void>;
118
148
  admission: Promise<AgentRuntimeAdmission>;
@@ -123,8 +153,9 @@ export interface AgentRuntime {
123
153
  result: Promise<AgentRuntimeResult>;
124
154
  };
125
155
  interrupt(input: AgentRuntimeInterruptInput): Promise<AgentStoreMutationResult>;
156
+ recover(options: AgentRuntimeRecoverOptions<CONTEXT>): Promise<readonly AgentRuntimeRecoveryOutcome[]>;
126
157
  stop(conversationKey: string, reason?: AgentStopReason): boolean;
127
158
  close(options?: AgentSessionCloseOptions): Promise<void>;
128
159
  }
129
- export declare function createAgentRuntime<CONTEXT, TOOLS extends ToolSet>(config: AgentRuntimeConfig<CONTEXT, TOOLS>): AgentRuntime;
160
+ export declare function createAgentRuntime<CONTEXT, TOOLS extends ToolSet>(config: AgentRuntimeConfig<CONTEXT, TOOLS>): AgentRuntime<CONTEXT>;
130
161
  //# sourceMappingURL=runtime.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"runtime.d.ts","sourceRoot":"","sources":["../../src/agent-runtime/runtime.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"runtime.d.ts","sourceRoot":"","sources":["../../src/agent-runtime/runtime.ts"],"names":[],"mappings":"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"}
@@ -218,6 +218,16 @@ export declare const AgentMessageSchema: z.ZodObject<{
218
218
  updatedAt: z.ZodISODateTime;
219
219
  }, z.core.$strip>;
220
220
  export type AgentMessage = z.infer<typeof AgentMessageSchema>;
221
+ export declare const AgentAssistantPlaceholderSchema: z.ZodObject<{
222
+ schemaVersion: z.ZodLiteral<1>;
223
+ id: z.ZodString;
224
+ conversationId: z.ZodString;
225
+ runId: z.ZodString;
226
+ status: z.ZodLiteral<"pending">;
227
+ createdAt: z.ZodISODateTime;
228
+ updatedAt: z.ZodISODateTime;
229
+ }, z.core.$strip>;
230
+ export type AgentAssistantPlaceholder = z.infer<typeof AgentAssistantPlaceholderSchema>;
221
231
  export declare const AgentRunStateSchema: z.ZodEnum<{
222
232
  abandoned: "abandoned";
223
233
  cancelled: "cancelled";
@@ -467,4 +477,67 @@ export declare const AgentUsageSchema: z.ZodObject<{
467
477
  }, z.core.$strip>>;
468
478
  }, z.core.$strip>;
469
479
  export type AgentUsage = z.infer<typeof AgentUsageSchema>;
480
+ export declare const AgentRunMetricsSchema: z.ZodObject<{
481
+ partial: z.ZodBoolean;
482
+ usage: z.ZodOptional<z.ZodObject<{
483
+ inputTokens: z.ZodObject<{
484
+ value: z.ZodOptional<z.ZodNumber>;
485
+ provenance: z.ZodEnum<{
486
+ computed: "computed";
487
+ estimated: "estimated";
488
+ "provider-reported": "provider-reported";
489
+ unavailable: "unavailable";
490
+ }>;
491
+ }, z.core.$strip>;
492
+ outputTokens: z.ZodObject<{
493
+ value: z.ZodOptional<z.ZodNumber>;
494
+ provenance: z.ZodEnum<{
495
+ computed: "computed";
496
+ estimated: "estimated";
497
+ "provider-reported": "provider-reported";
498
+ unavailable: "unavailable";
499
+ }>;
500
+ }, z.core.$strip>;
501
+ reasoningTokens: z.ZodOptional<z.ZodObject<{
502
+ value: z.ZodOptional<z.ZodNumber>;
503
+ provenance: z.ZodEnum<{
504
+ computed: "computed";
505
+ estimated: "estimated";
506
+ "provider-reported": "provider-reported";
507
+ unavailable: "unavailable";
508
+ }>;
509
+ }, z.core.$strip>>;
510
+ cacheReadTokens: z.ZodOptional<z.ZodObject<{
511
+ value: z.ZodOptional<z.ZodNumber>;
512
+ provenance: z.ZodEnum<{
513
+ computed: "computed";
514
+ estimated: "estimated";
515
+ "provider-reported": "provider-reported";
516
+ unavailable: "unavailable";
517
+ }>;
518
+ }, z.core.$strip>>;
519
+ cacheWriteTokens: z.ZodOptional<z.ZodObject<{
520
+ value: z.ZodOptional<z.ZodNumber>;
521
+ provenance: z.ZodEnum<{
522
+ computed: "computed";
523
+ estimated: "estimated";
524
+ "provider-reported": "provider-reported";
525
+ unavailable: "unavailable";
526
+ }>;
527
+ }, z.core.$strip>>;
528
+ cost: z.ZodOptional<z.ZodObject<{
529
+ value: z.ZodOptional<z.ZodNumber>;
530
+ currency: z.ZodOptional<z.ZodString>;
531
+ provenance: z.ZodEnum<{
532
+ computed: "computed";
533
+ estimated: "estimated";
534
+ "provider-reported": "provider-reported";
535
+ unavailable: "unavailable";
536
+ }>;
537
+ }, z.core.$strip>>;
538
+ }, z.core.$strip>>;
539
+ durationMs: z.ZodOptional<z.ZodNumber>;
540
+ ttftMs: z.ZodOptional<z.ZodNumber>;
541
+ }, z.core.$strip>;
542
+ export type AgentRunMetrics = z.infer<typeof AgentRunMetricsSchema>;
470
543
  //# sourceMappingURL=schemas.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"schemas.d.ts","sourceRoot":"","sources":["../../src/agent-runtime/schemas.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,eAAO,MAAM,mBAAmB,aAAoB,CAAC;AACrD,eAAO,MAAM,wBAAwB,UAAwB,CAAC;AAC9D,eAAO,MAAM,oBAAoB,kBAAmC,CAAC;AACrE,eAAO,MAAM,qBAAqB,2CAAiC,CAAC;AAEpE,eAAO,MAAM,2BAA2B;;;;iBAItC,CAAC;AAEH,MAAM,MAAM,qBAAqB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,2BAA2B,CAAC,CAAC;AAEhF,eAAO,MAAM,mBAAmB;;;iBAG9B,CAAC;AAEH,eAAO,MAAM,wBAAwB;;;;;;;;iBAInC,CAAC;AAEH,eAAO,MAAM,mBAAmB;;;;;iBAK9B,CAAC;AAEH,eAAO,MAAM,qBAAqB;;;;;iBAKhC,CAAC;AAEH,eAAO,MAAM,uBAAuB;;;;;;;;;;iBAMlC,CAAC;AAEH,eAAO,MAAM,yBAAyB;;;;;;;;;;iBAMpC,CAAC;AAEH,eAAO,MAAM,qBAAqB;;;;;;;iBAGhC,CAAC;AAEH,eAAO,MAAM,sBAAsB;;;;;;iBAGjC,CAAC;AAEH,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2BASjC,CAAC;AAEH,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC;AAEtE,eAAO,MAAM,sBAAsB;;;;;EAAqD,CAAC;AACzF,eAAO,MAAM,wBAAwB;;;;;;EAMnC,CAAC;AAEH,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAW7B,CAAC;AAEH,MAAM,MAAM,YAAY,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC;AAE9D,eAAO,MAAM,mBAAmB;;;;;;;;;EAS9B,CAAC;AAEH,eAAO,MAAM,yBAAyB;;;;;;;;;;EAUpC,CAAC;AAEH,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,yBAAyB,CAAC,CAAC;AAE5E,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAazB,CAAC;AAEH,MAAM,MAAM,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;AAEtD,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAM9B,CAAC;AAEH,MAAM,MAAM,aAAa,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mBAAmB,CAAC,CAAC;AAEhE,eAAO,MAAM,qBAAqB;;;;;;;;iBAGhC,CAAC;AAEH,eAAO,MAAM,oBAAoB;;;;;;;;;iBAI/B,CAAC;AAEH,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAO3B,CAAC;AAEH,MAAM,MAAM,UAAU,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC"}
1
+ {"version":3,"file":"schemas.d.ts","sourceRoot":"","sources":["../../src/agent-runtime/schemas.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,406 @@
1
+ import { z } from 'zod';
2
+ import { type AgentMessage } from './schemas';
3
+ import { type AgentRuntimeStore } from './store';
4
+ export declare const AgentAdmissionIdentitySchema: z.ZodObject<{
5
+ idempotencyKey: z.ZodString;
6
+ inputMessageId: z.ZodString;
7
+ runId: z.ZodString;
8
+ assistantMessageId: z.ZodString;
9
+ }, z.core.$strip>;
10
+ export declare const AgentStoredStateSchema: z.ZodObject<{
11
+ schemaVersion: z.ZodLiteral<1>;
12
+ conversationId: z.ZodString;
13
+ version: z.ZodInt;
14
+ runs: z.ZodArray<z.ZodObject<{
15
+ schemaVersion: z.ZodLiteral<1>;
16
+ id: z.ZodString;
17
+ conversationId: z.ZodString;
18
+ inputMessageIds: z.ZodArray<z.ZodString>;
19
+ assistantMessageId: z.ZodString;
20
+ state: z.ZodEnum<{
21
+ abandoned: "abandoned";
22
+ cancelled: "cancelled";
23
+ completed: "completed";
24
+ failed: "failed";
25
+ interrupt_requested: "interrupt_requested";
26
+ interrupted: "interrupted";
27
+ queued: "queued";
28
+ running: "running";
29
+ }>;
30
+ revision: z.ZodInt;
31
+ ownerId: z.ZodOptional<z.ZodString>;
32
+ terminalReason: z.ZodOptional<z.ZodEnum<{
33
+ abandoned: "abandoned";
34
+ cancelled: "cancelled";
35
+ interrupted: "interrupted";
36
+ policy_stop: "policy_stop";
37
+ provider_failure: "provider_failure";
38
+ shutdown: "shutdown";
39
+ success: "success";
40
+ timeout: "timeout";
41
+ tool_failure: "tool_failure";
42
+ }>>;
43
+ terminalPolicyName: z.ZodOptional<z.ZodString>;
44
+ createdAt: z.ZodISODateTime;
45
+ updatedAt: z.ZodISODateTime;
46
+ }, z.core.$strip>>;
47
+ admissions: z.ZodArray<z.ZodObject<{
48
+ idempotencyKey: z.ZodString;
49
+ inputMessageId: z.ZodString;
50
+ runId: z.ZodString;
51
+ assistantMessageId: z.ZodString;
52
+ }, z.core.$strip>>;
53
+ }, z.core.$strip>;
54
+ export type AgentAdmissionIdentity = z.infer<typeof AgentAdmissionIdentitySchema>;
55
+ export type AgentStoredState = z.infer<typeof AgentStoredStateSchema>;
56
+ export declare const AgentHistoryMutationSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
57
+ type: z.ZodLiteral<"admit">;
58
+ input: z.ZodObject<{
59
+ schemaVersion: z.ZodLiteral<1>;
60
+ id: z.ZodString;
61
+ conversationId: z.ZodString;
62
+ runId: z.ZodOptional<z.ZodString>;
63
+ role: z.ZodEnum<{
64
+ assistant: "assistant";
65
+ summary: "summary";
66
+ system: "system";
67
+ user: "user";
68
+ }>;
69
+ status: z.ZodEnum<{
70
+ committed: "committed";
71
+ completed: "completed";
72
+ failed: "failed";
73
+ interrupted: "interrupted";
74
+ streaming: "streaming";
75
+ }>;
76
+ parts: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
77
+ type: z.ZodLiteral<"text">;
78
+ text: z.ZodString;
79
+ }, z.core.$strip>, z.ZodObject<{
80
+ type: z.ZodLiteral<"reasoning">;
81
+ text: z.ZodString;
82
+ provider: z.ZodOptional<z.ZodObject<{
83
+ schemaVersion: z.ZodInt;
84
+ provider: z.ZodString;
85
+ data: z.ZodRecord<z.ZodString, z.ZodJSONSchema>;
86
+ }, z.core.$strip>>;
87
+ }, z.core.$strip>, z.ZodObject<{
88
+ type: z.ZodLiteral<"file">;
89
+ mediaType: z.ZodString;
90
+ reference: z.ZodString;
91
+ filename: z.ZodOptional<z.ZodString>;
92
+ }, z.core.$strip>, z.ZodObject<{
93
+ type: z.ZodLiteral<"source">;
94
+ sourceId: z.ZodString;
95
+ url: z.ZodOptional<z.ZodURL>;
96
+ title: z.ZodOptional<z.ZodString>;
97
+ }, z.core.$strip>, z.ZodObject<{
98
+ type: z.ZodLiteral<"tool-call">;
99
+ callId: z.ZodString;
100
+ toolName: z.ZodString;
101
+ input: z.ZodJSONSchema;
102
+ provider: z.ZodOptional<z.ZodObject<{
103
+ schemaVersion: z.ZodInt;
104
+ provider: z.ZodString;
105
+ data: z.ZodRecord<z.ZodString, z.ZodJSONSchema>;
106
+ }, z.core.$strip>>;
107
+ }, z.core.$strip>, z.ZodObject<{
108
+ type: z.ZodLiteral<"tool-result">;
109
+ callId: z.ZodString;
110
+ toolName: z.ZodString;
111
+ outcome: z.ZodEnum<{
112
+ error: "error";
113
+ interrupted: "interrupted";
114
+ success: "success";
115
+ }>;
116
+ output: z.ZodOptional<z.ZodJSONSchema>;
117
+ }, z.core.$strip>, z.ZodObject<{
118
+ type: z.ZodLiteral<"provider">;
119
+ envelope: z.ZodObject<{
120
+ schemaVersion: z.ZodInt;
121
+ provider: z.ZodString;
122
+ data: z.ZodRecord<z.ZodString, z.ZodJSONSchema>;
123
+ }, z.core.$strip>;
124
+ }, z.core.$strip>, z.ZodObject<{
125
+ type: z.ZodLiteral<"control">;
126
+ reason: z.ZodEnum<{
127
+ "run-interrupted": "run-interrupted";
128
+ "stale-run": "stale-run";
129
+ }>;
130
+ }, z.core.$strip>], "type">>;
131
+ metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodJSONSchema>>;
132
+ createdAt: z.ZodISODateTime;
133
+ updatedAt: z.ZodISODateTime;
134
+ }, z.core.$strip>;
135
+ }, z.core.$strip>, z.ZodObject<{
136
+ type: z.ZodLiteral<"upsert-assistant">;
137
+ message: z.ZodObject<{
138
+ schemaVersion: z.ZodLiteral<1>;
139
+ id: z.ZodString;
140
+ conversationId: z.ZodString;
141
+ runId: z.ZodOptional<z.ZodString>;
142
+ role: z.ZodEnum<{
143
+ assistant: "assistant";
144
+ summary: "summary";
145
+ system: "system";
146
+ user: "user";
147
+ }>;
148
+ status: z.ZodEnum<{
149
+ committed: "committed";
150
+ completed: "completed";
151
+ failed: "failed";
152
+ interrupted: "interrupted";
153
+ streaming: "streaming";
154
+ }>;
155
+ parts: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
156
+ type: z.ZodLiteral<"text">;
157
+ text: z.ZodString;
158
+ }, z.core.$strip>, z.ZodObject<{
159
+ type: z.ZodLiteral<"reasoning">;
160
+ text: z.ZodString;
161
+ provider: z.ZodOptional<z.ZodObject<{
162
+ schemaVersion: z.ZodInt;
163
+ provider: z.ZodString;
164
+ data: z.ZodRecord<z.ZodString, z.ZodJSONSchema>;
165
+ }, z.core.$strip>>;
166
+ }, z.core.$strip>, z.ZodObject<{
167
+ type: z.ZodLiteral<"file">;
168
+ mediaType: z.ZodString;
169
+ reference: z.ZodString;
170
+ filename: z.ZodOptional<z.ZodString>;
171
+ }, z.core.$strip>, z.ZodObject<{
172
+ type: z.ZodLiteral<"source">;
173
+ sourceId: z.ZodString;
174
+ url: z.ZodOptional<z.ZodURL>;
175
+ title: z.ZodOptional<z.ZodString>;
176
+ }, z.core.$strip>, z.ZodObject<{
177
+ type: z.ZodLiteral<"tool-call">;
178
+ callId: z.ZodString;
179
+ toolName: z.ZodString;
180
+ input: z.ZodJSONSchema;
181
+ provider: z.ZodOptional<z.ZodObject<{
182
+ schemaVersion: z.ZodInt;
183
+ provider: z.ZodString;
184
+ data: z.ZodRecord<z.ZodString, z.ZodJSONSchema>;
185
+ }, z.core.$strip>>;
186
+ }, z.core.$strip>, z.ZodObject<{
187
+ type: z.ZodLiteral<"tool-result">;
188
+ callId: z.ZodString;
189
+ toolName: z.ZodString;
190
+ outcome: z.ZodEnum<{
191
+ error: "error";
192
+ interrupted: "interrupted";
193
+ success: "success";
194
+ }>;
195
+ output: z.ZodOptional<z.ZodJSONSchema>;
196
+ }, z.core.$strip>, z.ZodObject<{
197
+ type: z.ZodLiteral<"provider">;
198
+ envelope: z.ZodObject<{
199
+ schemaVersion: z.ZodInt;
200
+ provider: z.ZodString;
201
+ data: z.ZodRecord<z.ZodString, z.ZodJSONSchema>;
202
+ }, z.core.$strip>;
203
+ }, z.core.$strip>, z.ZodObject<{
204
+ type: z.ZodLiteral<"control">;
205
+ reason: z.ZodEnum<{
206
+ "run-interrupted": "run-interrupted";
207
+ "stale-run": "stale-run";
208
+ }>;
209
+ }, z.core.$strip>], "type">>;
210
+ metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodJSONSchema>>;
211
+ createdAt: z.ZodISODateTime;
212
+ updatedAt: z.ZodISODateTime;
213
+ }, z.core.$strip>;
214
+ }, z.core.$strip>, z.ZodObject<{
215
+ type: z.ZodLiteral<"replace-compacted-range">;
216
+ replacedMessageIds: z.ZodArray<z.ZodString>;
217
+ summary: z.ZodObject<{
218
+ schemaVersion: z.ZodLiteral<1>;
219
+ id: z.ZodString;
220
+ conversationId: z.ZodString;
221
+ runId: z.ZodOptional<z.ZodString>;
222
+ role: z.ZodEnum<{
223
+ assistant: "assistant";
224
+ summary: "summary";
225
+ system: "system";
226
+ user: "user";
227
+ }>;
228
+ status: z.ZodEnum<{
229
+ committed: "committed";
230
+ completed: "completed";
231
+ failed: "failed";
232
+ interrupted: "interrupted";
233
+ streaming: "streaming";
234
+ }>;
235
+ parts: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
236
+ type: z.ZodLiteral<"text">;
237
+ text: z.ZodString;
238
+ }, z.core.$strip>, z.ZodObject<{
239
+ type: z.ZodLiteral<"reasoning">;
240
+ text: z.ZodString;
241
+ provider: z.ZodOptional<z.ZodObject<{
242
+ schemaVersion: z.ZodInt;
243
+ provider: z.ZodString;
244
+ data: z.ZodRecord<z.ZodString, z.ZodJSONSchema>;
245
+ }, z.core.$strip>>;
246
+ }, z.core.$strip>, z.ZodObject<{
247
+ type: z.ZodLiteral<"file">;
248
+ mediaType: z.ZodString;
249
+ reference: z.ZodString;
250
+ filename: z.ZodOptional<z.ZodString>;
251
+ }, z.core.$strip>, z.ZodObject<{
252
+ type: z.ZodLiteral<"source">;
253
+ sourceId: z.ZodString;
254
+ url: z.ZodOptional<z.ZodURL>;
255
+ title: z.ZodOptional<z.ZodString>;
256
+ }, z.core.$strip>, z.ZodObject<{
257
+ type: z.ZodLiteral<"tool-call">;
258
+ callId: z.ZodString;
259
+ toolName: z.ZodString;
260
+ input: z.ZodJSONSchema;
261
+ provider: z.ZodOptional<z.ZodObject<{
262
+ schemaVersion: z.ZodInt;
263
+ provider: z.ZodString;
264
+ data: z.ZodRecord<z.ZodString, z.ZodJSONSchema>;
265
+ }, z.core.$strip>>;
266
+ }, z.core.$strip>, z.ZodObject<{
267
+ type: z.ZodLiteral<"tool-result">;
268
+ callId: z.ZodString;
269
+ toolName: z.ZodString;
270
+ outcome: z.ZodEnum<{
271
+ error: "error";
272
+ interrupted: "interrupted";
273
+ success: "success";
274
+ }>;
275
+ output: z.ZodOptional<z.ZodJSONSchema>;
276
+ }, z.core.$strip>, z.ZodObject<{
277
+ type: z.ZodLiteral<"provider">;
278
+ envelope: z.ZodObject<{
279
+ schemaVersion: z.ZodInt;
280
+ provider: z.ZodString;
281
+ data: z.ZodRecord<z.ZodString, z.ZodJSONSchema>;
282
+ }, z.core.$strip>;
283
+ }, z.core.$strip>, z.ZodObject<{
284
+ type: z.ZodLiteral<"control">;
285
+ reason: z.ZodEnum<{
286
+ "run-interrupted": "run-interrupted";
287
+ "stale-run": "stale-run";
288
+ }>;
289
+ }, z.core.$strip>], "type">>;
290
+ metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodJSONSchema>>;
291
+ createdAt: z.ZodISODateTime;
292
+ updatedAt: z.ZodISODateTime;
293
+ }, z.core.$strip>;
294
+ }, z.core.$strip>], "type">;
295
+ export type AgentHistoryMutation = z.infer<typeof AgentHistoryMutationSchema>;
296
+ export declare const AgentRecoverableDescriptorSchema: z.ZodObject<{
297
+ conversationId: z.ZodString;
298
+ run: z.ZodObject<{
299
+ schemaVersion: z.ZodLiteral<1>;
300
+ id: z.ZodString;
301
+ conversationId: z.ZodString;
302
+ inputMessageIds: z.ZodArray<z.ZodString>;
303
+ assistantMessageId: z.ZodString;
304
+ state: z.ZodEnum<{
305
+ abandoned: "abandoned";
306
+ cancelled: "cancelled";
307
+ completed: "completed";
308
+ failed: "failed";
309
+ interrupt_requested: "interrupt_requested";
310
+ interrupted: "interrupted";
311
+ queued: "queued";
312
+ running: "running";
313
+ }>;
314
+ revision: z.ZodInt;
315
+ ownerId: z.ZodOptional<z.ZodString>;
316
+ terminalReason: z.ZodOptional<z.ZodEnum<{
317
+ abandoned: "abandoned";
318
+ cancelled: "cancelled";
319
+ interrupted: "interrupted";
320
+ policy_stop: "policy_stop";
321
+ provider_failure: "provider_failure";
322
+ shutdown: "shutdown";
323
+ success: "success";
324
+ timeout: "timeout";
325
+ tool_failure: "tool_failure";
326
+ }>>;
327
+ terminalPolicyName: z.ZodOptional<z.ZodString>;
328
+ createdAt: z.ZodISODateTime;
329
+ updatedAt: z.ZodISODateTime;
330
+ }, z.core.$strip>;
331
+ }, z.core.$strip>;
332
+ export declare const AgentRecoverablePageSchema: z.ZodObject<{
333
+ items: z.ZodArray<z.ZodObject<{
334
+ conversationId: z.ZodString;
335
+ run: z.ZodObject<{
336
+ schemaVersion: z.ZodLiteral<1>;
337
+ id: z.ZodString;
338
+ conversationId: z.ZodString;
339
+ inputMessageIds: z.ZodArray<z.ZodString>;
340
+ assistantMessageId: z.ZodString;
341
+ state: z.ZodEnum<{
342
+ abandoned: "abandoned";
343
+ cancelled: "cancelled";
344
+ completed: "completed";
345
+ failed: "failed";
346
+ interrupt_requested: "interrupt_requested";
347
+ interrupted: "interrupted";
348
+ queued: "queued";
349
+ running: "running";
350
+ }>;
351
+ revision: z.ZodInt;
352
+ ownerId: z.ZodOptional<z.ZodString>;
353
+ terminalReason: z.ZodOptional<z.ZodEnum<{
354
+ abandoned: "abandoned";
355
+ cancelled: "cancelled";
356
+ interrupted: "interrupted";
357
+ policy_stop: "policy_stop";
358
+ provider_failure: "provider_failure";
359
+ shutdown: "shutdown";
360
+ success: "success";
361
+ timeout: "timeout";
362
+ tool_failure: "tool_failure";
363
+ }>>;
364
+ terminalPolicyName: z.ZodOptional<z.ZodString>;
365
+ createdAt: z.ZodISODateTime;
366
+ updatedAt: z.ZodISODateTime;
367
+ }, z.core.$strip>;
368
+ }, z.core.$strip>>;
369
+ nextCursor: z.ZodOptional<z.ZodString>;
370
+ }, z.core.$strip>;
371
+ export type AgentRecoverableDescriptor = z.infer<typeof AgentRecoverableDescriptorSchema>;
372
+ export type AgentRecoverablePage = z.infer<typeof AgentRecoverablePageSchema>;
373
+ export type AgentStoreCompareAndSwapResult = {
374
+ outcome: 'applied';
375
+ } | {
376
+ outcome: 'conflict';
377
+ actualVersion: number;
378
+ };
379
+ export interface AgentRuntimeStoreDriver<TRANSACTION> {
380
+ transaction<RESULT>(work: (transaction: TRANSACTION) => Promise<RESULT>): Promise<RESULT>;
381
+ state: {
382
+ load(transaction: TRANSACTION, conversationId: string): Promise<AgentStoredState | undefined>;
383
+ compareAndSwap(transaction: TRANSACTION, input: {
384
+ conversationId: string;
385
+ expectedVersion: number;
386
+ next: AgentStoredState;
387
+ recoverable: readonly AgentRecoverableDescriptor[];
388
+ }): Promise<AgentStoreCompareAndSwapResult>;
389
+ };
390
+ history: {
391
+ load(transaction: TRANSACTION, conversationId: string): Promise<readonly AgentMessage[]>;
392
+ loadById(transaction: TRANSACTION, input: {
393
+ conversationId: string;
394
+ messageId: string;
395
+ }): Promise<AgentMessage | undefined>;
396
+ apply(transaction: TRANSACTION, mutation: AgentHistoryMutation): Promise<void>;
397
+ };
398
+ scanRecoverable(input: {
399
+ cursor?: string;
400
+ limit: number;
401
+ }): Promise<AgentRecoverablePage>;
402
+ }
403
+ export declare function createAgentRuntimeStore<TRANSACTION>(driver: AgentRuntimeStoreDriver<TRANSACTION>): AgentRuntimeStore;
404
+ /** In-memory reference adapter backed by the same reducer and driver contract as durable stores. */
405
+ export declare function createMemoryAgentRuntimeStore(): AgentRuntimeStore;
406
+ //# sourceMappingURL=store-driver.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"store-driver.d.ts","sourceRoot":"","sources":["../../src/agent-runtime/store-driver.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,EACL,KAAK,YAAY,EASlB,MAAM,WAAW,CAAC;AACnB,OAAO,EAKL,KAAK,iBAAiB,EAYvB,MAAM,SAAS,CAAC;AAEjB,eAAO,MAAM,4BAA4B;;;;;iBAKvC,CAAC;AAEH,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAMjC,CAAC;AAEH,MAAM,MAAM,sBAAsB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,4BAA4B,CAAC,CAAC;AAClF,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC;AAEtE,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2BAWrC,CAAC;AAEH,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,0BAA0B,CAAC,CAAC;AAE9E,eAAO,MAAM,gCAAgC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAG3C,CAAC;AAEH,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAGrC,CAAC;AAOH,MAAM,MAAM,0BAA0B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gCAAgC,CAAC,CAAC;AAC1F,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,0BAA0B,CAAC,CAAC;AAE9E,MAAM,MAAM,8BAA8B,GACtC;IAAE,OAAO,EAAE,SAAS,CAAA;CAAE,GACtB;IAAE,OAAO,EAAE,UAAU,CAAC;IAAC,aAAa,EAAE,MAAM,CAAA;CAAE,CAAC;AAEnD,MAAM,WAAW,uBAAuB,CAAC,WAAW;IAClD,WAAW,CAAC,MAAM,EAAE,IAAI,EAAE,CAAC,WAAW,EAAE,WAAW,KAAK,OAAO,CAAC,MAAM,CAAC,GAAG,OAAO,CAAC,MAAM,CAAC,CAAC;IAC1F,KAAK,EAAE;QACL,IAAI,CACF,WAAW,EAAE,WAAW,EACxB,cAAc,EAAE,MAAM,GACrB,OAAO,CAAC,gBAAgB,GAAG,SAAS,CAAC,CAAC;QACzC,cAAc,CACZ,WAAW,EAAE,WAAW,EACxB,KAAK,EAAE;YACL,cAAc,EAAE,MAAM,CAAC;YACvB,eAAe,EAAE,MAAM,CAAC;YACxB,IAAI,EAAE,gBAAgB,CAAC;YACvB,WAAW,EAAE,SAAS,0BAA0B,EAAE,CAAC;SACpD,GACA,OAAO,CAAC,8BAA8B,CAAC,CAAC;KAC5C,CAAC;IACF,OAAO,EAAE;QACP,IAAI,CAAC,WAAW,EAAE,WAAW,EAAE,cAAc,EAAE,MAAM,GAAG,OAAO,CAAC,SAAS,YAAY,EAAE,CAAC,CAAC;QACzF,QAAQ,CACN,WAAW,EAAE,WAAW,EACxB,KAAK,EAAE;YAAE,cAAc,EAAE,MAAM,CAAC;YAAC,SAAS,EAAE,MAAM,CAAA;SAAE,GACnD,OAAO,CAAC,YAAY,GAAG,SAAS,CAAC,CAAC;QACrC,KAAK,CAAC,WAAW,EAAE,WAAW,EAAE,QAAQ,EAAE,oBAAoB,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;KAChF,CAAC;IACF,eAAe,CAAC,KAAK,EAAE;QAAE,MAAM,CAAC,EAAE,MAAM,CAAC;QAAC,KAAK,EAAE,MAAM,CAAA;KAAE,GAAG,OAAO,CAAC,oBAAoB,CAAC,CAAC;CAC3F;AAyeD,wBAAgB,uBAAuB,CAAC,WAAW,EACjD,MAAM,EAAE,uBAAuB,CAAC,WAAW,CAAC,GAC3C,iBAAiB,CAqHnB;AA0BD,oGAAoG;AACpG,wBAAgB,6BAA6B,IAAI,iBAAiB,CAqIjE"}