stitchkit 0.61.0 → 0.63.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.
- package/dist/agent-runtime/compaction.d.ts +14 -1
- package/dist/agent-runtime/compaction.d.ts.map +1 -1
- package/dist/agent-runtime/coordinator.d.ts +23 -2
- package/dist/agent-runtime/coordinator.d.ts.map +1 -1
- package/dist/agent-runtime/events.d.ts +140 -0
- package/dist/agent-runtime/events.d.ts.map +1 -1
- package/dist/agent-runtime/history.d.ts +39 -1
- package/dist/agent-runtime/history.d.ts.map +1 -1
- package/dist/agent-runtime/observability.d.ts +4 -0
- package/dist/agent-runtime/observability.d.ts.map +1 -1
- package/dist/agent-runtime/prompt.d.ts +1 -1
- package/dist/agent-runtime/prompt.d.ts.map +1 -1
- package/dist/agent-runtime/run-execution.d.ts +4 -0
- package/dist/agent-runtime/run-execution.d.ts.map +1 -1
- package/dist/agent-runtime/runtime-internals.d.ts +47 -0
- package/dist/agent-runtime/runtime-internals.d.ts.map +1 -1
- package/dist/agent-runtime/runtime.d.ts +1 -0
- package/dist/agent-runtime/runtime.d.ts.map +1 -1
- package/dist/agent-runtime/schemas.d.ts +208 -77
- package/dist/agent-runtime/schemas.d.ts.map +1 -1
- package/dist/agent-runtime/store-driver.d.ts +191 -0
- package/dist/agent-runtime/store-driver.d.ts.map +1 -1
- package/dist/agent-runtime/store.d.ts +583 -0
- package/dist/agent-runtime/store.d.ts.map +1 -1
- package/dist/agent-runtime/terminal-commit.d.ts +34 -4
- package/dist/agent-runtime/terminal-commit.d.ts.map +1 -1
- package/dist/agent-runtime/terminal-status.d.ts +13 -0
- package/dist/agent-runtime/terminal-status.d.ts.map +1 -1
- package/dist/agent-runtime.d.ts +1 -1
- package/dist/agent-runtime.d.ts.map +1 -1
- package/dist/agent-runtime.js +399 -99
- package/dist/{index-vtjgx3vv.js → index-b1k33127.js} +25 -18
- package/dist/testing/agent-store-conformance.d.ts.map +1 -1
- package/dist/testing.js +26 -4
- package/llms-full.txt +386 -9
- package/package.json +1 -1
|
@@ -16,6 +16,7 @@ export declare const AgentStoredRunSchema: z.ZodObject<{
|
|
|
16
16
|
assistantMessageId: z.ZodString;
|
|
17
17
|
state: z.ZodEnum<{
|
|
18
18
|
abandoned: "abandoned";
|
|
19
|
+
absorbed: "absorbed";
|
|
19
20
|
cancelled: "cancelled";
|
|
20
21
|
completed: "completed";
|
|
21
22
|
failed: "failed";
|
|
@@ -23,6 +24,7 @@ export declare const AgentStoredRunSchema: z.ZodObject<{
|
|
|
23
24
|
interrupted: "interrupted";
|
|
24
25
|
queued: "queued";
|
|
25
26
|
running: "running";
|
|
27
|
+
superseded: "superseded";
|
|
26
28
|
}>;
|
|
27
29
|
revision: z.ZodInt;
|
|
28
30
|
ownerId: z.ZodOptional<z.ZodString>;
|
|
@@ -33,12 +35,72 @@ export declare const AgentStoredRunSchema: z.ZodObject<{
|
|
|
33
35
|
interrupted: "interrupted";
|
|
34
36
|
policy_stop: "policy_stop";
|
|
35
37
|
provider_failure: "provider_failure";
|
|
38
|
+
provider_stop: "provider_stop";
|
|
36
39
|
shutdown: "shutdown";
|
|
37
40
|
success: "success";
|
|
41
|
+
superseded: "superseded";
|
|
38
42
|
timeout: "timeout";
|
|
39
43
|
tool_failure: "tool_failure";
|
|
40
44
|
}>>;
|
|
41
45
|
terminalPolicyName: z.ZodOptional<z.ZodString>;
|
|
46
|
+
absorbedIntoRunId: z.ZodOptional<z.ZodString>;
|
|
47
|
+
usage: z.ZodOptional<z.ZodObject<{
|
|
48
|
+
inputTokens: z.ZodObject<{
|
|
49
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
50
|
+
provenance: z.ZodEnum<{
|
|
51
|
+
computed: "computed";
|
|
52
|
+
estimated: "estimated";
|
|
53
|
+
"provider-reported": "provider-reported";
|
|
54
|
+
unavailable: "unavailable";
|
|
55
|
+
}>;
|
|
56
|
+
}, z.core.$strip>;
|
|
57
|
+
outputTokens: z.ZodObject<{
|
|
58
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
59
|
+
provenance: z.ZodEnum<{
|
|
60
|
+
computed: "computed";
|
|
61
|
+
estimated: "estimated";
|
|
62
|
+
"provider-reported": "provider-reported";
|
|
63
|
+
unavailable: "unavailable";
|
|
64
|
+
}>;
|
|
65
|
+
}, z.core.$strip>;
|
|
66
|
+
reasoningTokens: z.ZodOptional<z.ZodObject<{
|
|
67
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
68
|
+
provenance: z.ZodEnum<{
|
|
69
|
+
computed: "computed";
|
|
70
|
+
estimated: "estimated";
|
|
71
|
+
"provider-reported": "provider-reported";
|
|
72
|
+
unavailable: "unavailable";
|
|
73
|
+
}>;
|
|
74
|
+
}, z.core.$strip>>;
|
|
75
|
+
cacheReadTokens: z.ZodOptional<z.ZodObject<{
|
|
76
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
77
|
+
provenance: z.ZodEnum<{
|
|
78
|
+
computed: "computed";
|
|
79
|
+
estimated: "estimated";
|
|
80
|
+
"provider-reported": "provider-reported";
|
|
81
|
+
unavailable: "unavailable";
|
|
82
|
+
}>;
|
|
83
|
+
}, z.core.$strip>>;
|
|
84
|
+
cacheWriteTokens: z.ZodOptional<z.ZodObject<{
|
|
85
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
86
|
+
provenance: z.ZodEnum<{
|
|
87
|
+
computed: "computed";
|
|
88
|
+
estimated: "estimated";
|
|
89
|
+
"provider-reported": "provider-reported";
|
|
90
|
+
unavailable: "unavailable";
|
|
91
|
+
}>;
|
|
92
|
+
}, z.core.$strip>>;
|
|
93
|
+
cost: z.ZodOptional<z.ZodObject<{
|
|
94
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
95
|
+
currency: z.ZodOptional<z.ZodString>;
|
|
96
|
+
provenance: z.ZodEnum<{
|
|
97
|
+
computed: "computed";
|
|
98
|
+
estimated: "estimated";
|
|
99
|
+
"provider-reported": "provider-reported";
|
|
100
|
+
unavailable: "unavailable";
|
|
101
|
+
}>;
|
|
102
|
+
}, z.core.$strip>>;
|
|
103
|
+
}, z.core.$strip>>;
|
|
42
104
|
createdAt: z.ZodISODateTime;
|
|
43
105
|
updatedAt: z.ZodISODateTime;
|
|
44
106
|
}, z.core.$strip>;
|
|
@@ -59,6 +121,7 @@ export declare const AgentStoredRunSchema: z.ZodObject<{
|
|
|
59
121
|
failed: "failed";
|
|
60
122
|
interrupted: "interrupted";
|
|
61
123
|
streaming: "streaming";
|
|
124
|
+
superseded: "superseded";
|
|
62
125
|
}>;
|
|
63
126
|
parts: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
64
127
|
type: z.ZodLiteral<"text">;
|
|
@@ -141,6 +204,7 @@ export declare const AgentAdmissionReceiptSchema: z.ZodObject<{
|
|
|
141
204
|
failed: "failed";
|
|
142
205
|
interrupted: "interrupted";
|
|
143
206
|
streaming: "streaming";
|
|
207
|
+
superseded: "superseded";
|
|
144
208
|
}>;
|
|
145
209
|
parts: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
146
210
|
type: z.ZodLiteral<"text">;
|
|
@@ -226,6 +290,7 @@ export declare const AgentHistoryMutationSchema: z.ZodDiscriminatedUnion<[z.ZodO
|
|
|
226
290
|
failed: "failed";
|
|
227
291
|
interrupted: "interrupted";
|
|
228
292
|
streaming: "streaming";
|
|
293
|
+
superseded: "superseded";
|
|
229
294
|
}>;
|
|
230
295
|
parts: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
231
296
|
type: z.ZodLiteral<"text">;
|
|
@@ -305,6 +370,7 @@ export declare const AgentHistoryMutationSchema: z.ZodDiscriminatedUnion<[z.ZodO
|
|
|
305
370
|
failed: "failed";
|
|
306
371
|
interrupted: "interrupted";
|
|
307
372
|
streaming: "streaming";
|
|
373
|
+
superseded: "superseded";
|
|
308
374
|
}>;
|
|
309
375
|
parts: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
310
376
|
type: z.ZodLiteral<"text">;
|
|
@@ -385,6 +451,7 @@ export declare const AgentHistoryMutationSchema: z.ZodDiscriminatedUnion<[z.ZodO
|
|
|
385
451
|
failed: "failed";
|
|
386
452
|
interrupted: "interrupted";
|
|
387
453
|
streaming: "streaming";
|
|
454
|
+
superseded: "superseded";
|
|
388
455
|
}>;
|
|
389
456
|
parts: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
390
457
|
type: z.ZodLiteral<"text">;
|
|
@@ -457,6 +524,7 @@ export declare const AgentRecoverableDescriptorSchema: z.ZodObject<{
|
|
|
457
524
|
assistantMessageId: z.ZodString;
|
|
458
525
|
state: z.ZodEnum<{
|
|
459
526
|
abandoned: "abandoned";
|
|
527
|
+
absorbed: "absorbed";
|
|
460
528
|
cancelled: "cancelled";
|
|
461
529
|
completed: "completed";
|
|
462
530
|
failed: "failed";
|
|
@@ -464,6 +532,7 @@ export declare const AgentRecoverableDescriptorSchema: z.ZodObject<{
|
|
|
464
532
|
interrupted: "interrupted";
|
|
465
533
|
queued: "queued";
|
|
466
534
|
running: "running";
|
|
535
|
+
superseded: "superseded";
|
|
467
536
|
}>;
|
|
468
537
|
revision: z.ZodInt;
|
|
469
538
|
ownerId: z.ZodOptional<z.ZodString>;
|
|
@@ -474,12 +543,72 @@ export declare const AgentRecoverableDescriptorSchema: z.ZodObject<{
|
|
|
474
543
|
interrupted: "interrupted";
|
|
475
544
|
policy_stop: "policy_stop";
|
|
476
545
|
provider_failure: "provider_failure";
|
|
546
|
+
provider_stop: "provider_stop";
|
|
477
547
|
shutdown: "shutdown";
|
|
478
548
|
success: "success";
|
|
549
|
+
superseded: "superseded";
|
|
479
550
|
timeout: "timeout";
|
|
480
551
|
tool_failure: "tool_failure";
|
|
481
552
|
}>>;
|
|
482
553
|
terminalPolicyName: z.ZodOptional<z.ZodString>;
|
|
554
|
+
absorbedIntoRunId: z.ZodOptional<z.ZodString>;
|
|
555
|
+
usage: z.ZodOptional<z.ZodObject<{
|
|
556
|
+
inputTokens: z.ZodObject<{
|
|
557
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
558
|
+
provenance: z.ZodEnum<{
|
|
559
|
+
computed: "computed";
|
|
560
|
+
estimated: "estimated";
|
|
561
|
+
"provider-reported": "provider-reported";
|
|
562
|
+
unavailable: "unavailable";
|
|
563
|
+
}>;
|
|
564
|
+
}, z.core.$strip>;
|
|
565
|
+
outputTokens: z.ZodObject<{
|
|
566
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
567
|
+
provenance: z.ZodEnum<{
|
|
568
|
+
computed: "computed";
|
|
569
|
+
estimated: "estimated";
|
|
570
|
+
"provider-reported": "provider-reported";
|
|
571
|
+
unavailable: "unavailable";
|
|
572
|
+
}>;
|
|
573
|
+
}, z.core.$strip>;
|
|
574
|
+
reasoningTokens: z.ZodOptional<z.ZodObject<{
|
|
575
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
576
|
+
provenance: z.ZodEnum<{
|
|
577
|
+
computed: "computed";
|
|
578
|
+
estimated: "estimated";
|
|
579
|
+
"provider-reported": "provider-reported";
|
|
580
|
+
unavailable: "unavailable";
|
|
581
|
+
}>;
|
|
582
|
+
}, z.core.$strip>>;
|
|
583
|
+
cacheReadTokens: z.ZodOptional<z.ZodObject<{
|
|
584
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
585
|
+
provenance: z.ZodEnum<{
|
|
586
|
+
computed: "computed";
|
|
587
|
+
estimated: "estimated";
|
|
588
|
+
"provider-reported": "provider-reported";
|
|
589
|
+
unavailable: "unavailable";
|
|
590
|
+
}>;
|
|
591
|
+
}, z.core.$strip>>;
|
|
592
|
+
cacheWriteTokens: z.ZodOptional<z.ZodObject<{
|
|
593
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
594
|
+
provenance: z.ZodEnum<{
|
|
595
|
+
computed: "computed";
|
|
596
|
+
estimated: "estimated";
|
|
597
|
+
"provider-reported": "provider-reported";
|
|
598
|
+
unavailable: "unavailable";
|
|
599
|
+
}>;
|
|
600
|
+
}, z.core.$strip>>;
|
|
601
|
+
cost: z.ZodOptional<z.ZodObject<{
|
|
602
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
603
|
+
currency: z.ZodOptional<z.ZodString>;
|
|
604
|
+
provenance: z.ZodEnum<{
|
|
605
|
+
computed: "computed";
|
|
606
|
+
estimated: "estimated";
|
|
607
|
+
"provider-reported": "provider-reported";
|
|
608
|
+
unavailable: "unavailable";
|
|
609
|
+
}>;
|
|
610
|
+
}, z.core.$strip>>;
|
|
611
|
+
}, z.core.$strip>>;
|
|
483
612
|
createdAt: z.ZodISODateTime;
|
|
484
613
|
updatedAt: z.ZodISODateTime;
|
|
485
614
|
}, z.core.$strip>;
|
|
@@ -495,6 +624,7 @@ export declare const AgentRecoverablePageSchema: z.ZodObject<{
|
|
|
495
624
|
assistantMessageId: z.ZodString;
|
|
496
625
|
state: z.ZodEnum<{
|
|
497
626
|
abandoned: "abandoned";
|
|
627
|
+
absorbed: "absorbed";
|
|
498
628
|
cancelled: "cancelled";
|
|
499
629
|
completed: "completed";
|
|
500
630
|
failed: "failed";
|
|
@@ -502,6 +632,7 @@ export declare const AgentRecoverablePageSchema: z.ZodObject<{
|
|
|
502
632
|
interrupted: "interrupted";
|
|
503
633
|
queued: "queued";
|
|
504
634
|
running: "running";
|
|
635
|
+
superseded: "superseded";
|
|
505
636
|
}>;
|
|
506
637
|
revision: z.ZodInt;
|
|
507
638
|
ownerId: z.ZodOptional<z.ZodString>;
|
|
@@ -512,12 +643,72 @@ export declare const AgentRecoverablePageSchema: z.ZodObject<{
|
|
|
512
643
|
interrupted: "interrupted";
|
|
513
644
|
policy_stop: "policy_stop";
|
|
514
645
|
provider_failure: "provider_failure";
|
|
646
|
+
provider_stop: "provider_stop";
|
|
515
647
|
shutdown: "shutdown";
|
|
516
648
|
success: "success";
|
|
649
|
+
superseded: "superseded";
|
|
517
650
|
timeout: "timeout";
|
|
518
651
|
tool_failure: "tool_failure";
|
|
519
652
|
}>>;
|
|
520
653
|
terminalPolicyName: z.ZodOptional<z.ZodString>;
|
|
654
|
+
absorbedIntoRunId: z.ZodOptional<z.ZodString>;
|
|
655
|
+
usage: z.ZodOptional<z.ZodObject<{
|
|
656
|
+
inputTokens: z.ZodObject<{
|
|
657
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
658
|
+
provenance: z.ZodEnum<{
|
|
659
|
+
computed: "computed";
|
|
660
|
+
estimated: "estimated";
|
|
661
|
+
"provider-reported": "provider-reported";
|
|
662
|
+
unavailable: "unavailable";
|
|
663
|
+
}>;
|
|
664
|
+
}, z.core.$strip>;
|
|
665
|
+
outputTokens: z.ZodObject<{
|
|
666
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
667
|
+
provenance: z.ZodEnum<{
|
|
668
|
+
computed: "computed";
|
|
669
|
+
estimated: "estimated";
|
|
670
|
+
"provider-reported": "provider-reported";
|
|
671
|
+
unavailable: "unavailable";
|
|
672
|
+
}>;
|
|
673
|
+
}, z.core.$strip>;
|
|
674
|
+
reasoningTokens: z.ZodOptional<z.ZodObject<{
|
|
675
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
676
|
+
provenance: z.ZodEnum<{
|
|
677
|
+
computed: "computed";
|
|
678
|
+
estimated: "estimated";
|
|
679
|
+
"provider-reported": "provider-reported";
|
|
680
|
+
unavailable: "unavailable";
|
|
681
|
+
}>;
|
|
682
|
+
}, z.core.$strip>>;
|
|
683
|
+
cacheReadTokens: z.ZodOptional<z.ZodObject<{
|
|
684
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
685
|
+
provenance: z.ZodEnum<{
|
|
686
|
+
computed: "computed";
|
|
687
|
+
estimated: "estimated";
|
|
688
|
+
"provider-reported": "provider-reported";
|
|
689
|
+
unavailable: "unavailable";
|
|
690
|
+
}>;
|
|
691
|
+
}, z.core.$strip>>;
|
|
692
|
+
cacheWriteTokens: z.ZodOptional<z.ZodObject<{
|
|
693
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
694
|
+
provenance: z.ZodEnum<{
|
|
695
|
+
computed: "computed";
|
|
696
|
+
estimated: "estimated";
|
|
697
|
+
"provider-reported": "provider-reported";
|
|
698
|
+
unavailable: "unavailable";
|
|
699
|
+
}>;
|
|
700
|
+
}, z.core.$strip>>;
|
|
701
|
+
cost: z.ZodOptional<z.ZodObject<{
|
|
702
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
703
|
+
currency: z.ZodOptional<z.ZodString>;
|
|
704
|
+
provenance: z.ZodEnum<{
|
|
705
|
+
computed: "computed";
|
|
706
|
+
estimated: "estimated";
|
|
707
|
+
"provider-reported": "provider-reported";
|
|
708
|
+
unavailable: "unavailable";
|
|
709
|
+
}>;
|
|
710
|
+
}, z.core.$strip>>;
|
|
711
|
+
}, z.core.$strip>>;
|
|
521
712
|
createdAt: z.ZodISODateTime;
|
|
522
713
|
updatedAt: z.ZodISODateTime;
|
|
523
714
|
}, z.core.$strip>;
|
|
@@ -1 +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,
|
|
1
|
+
{"version":3,"file":"store-driver.d.ts","sourceRoot":"","sources":["../../src/agent-runtime/store-driver.ts"],"names":[],"mappings":"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"}
|