-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapi-surface.json
More file actions
2261 lines (2261 loc) · 114 KB
/
Copy pathapi-surface.json
File metadata and controls
2261 lines (2261 loc) · 114 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"package": "@tangle-network/agent-runtime",
"entries": {
".": {
"AGENT_CANDIDATE_EXECUTION_SUPPORT": "value 373728f5643d",
"AgentAdapter": "type c0e869f7f324",
"AgentBackendContext": "type 355e9367717f",
"AgentBackendInput": "type 765914132783",
"AgentCandidateArtifactPort": "type f8d7b7b799a0",
"AgentCandidateBenchmarkGraderIdentity": "type 8607afc4b7f8",
"AgentCandidateBenchmarkGraderPort": "type 8382a860bbc7",
"AgentCandidateBundleInput": "type 7fcd34a99053",
"AgentCandidateCodeSource": "type 720bd34b92a0",
"AgentCandidateCodeSurfaceSource": "type 0a8a5d217305",
"AgentCandidateContainerPort": "type f7755309e85c",
"AgentCandidateExecutionAttemptRecord": "type 27d16559a67c",
"AgentCandidateExecutionAttemptRef": "type 8d66815c6442",
"AgentCandidateExecutionClaim": "type 03a2c93a8ca6",
"AgentCandidateExecutionClaimResult": "type 6ee8ec3e071b",
"AgentCandidateExecutionClaimStore": "type 2a61f1b79623",
"AgentCandidateExecutionCleanupHandles": "type 88d74592cf6e",
"AgentCandidateExecutionFailureClass": "type aabf1ddfc9f8",
"AgentCandidateExecutionFinishResult": "type 36672f48359a",
"AgentCandidateExecutionLease": "type d6004eb7e2ec",
"AgentCandidateExecutionPhase": "type 3d516d8e48d5",
"AgentCandidateExecutionPhaseResult": "type 0f6cd86e687f",
"AgentCandidateExecutionPorts": "type 48c2327ca7a7",
"AgentCandidateExecutionRecoveryEvidence": "type 4ba2e94e09fe",
"AgentCandidateExecutionStageResult": "type 2eb6256022d8",
"AgentCandidateExecutionTerminalRecord": "type ed994e452bd9",
"AgentCandidateExecutionTerminalResult": "type b991f3debe4e",
"AgentCandidateExecutorFinalCapture": "type 2d4288d14451",
"AgentCandidateExecutorMemoryCapture": "type cd3cedbca53d",
"AgentCandidateExecutorPort": "type cd2b297f0101",
"AgentCandidateExecutorProfileFile": "type f963e5a3e121",
"AgentCandidateExecutorRequest": "type 6faef0ce230c",
"AgentCandidateExecutorStopRequest": "type e071bbcaef26",
"AgentCandidateExecutorTaskOutcomeCapture": "type d91b347bc099",
"AgentCandidateExecutorWorkspaceFile": "type f963e5a3e121",
"AgentCandidateExecutorWorkspaceInput": "type 4111e4c17763",
"AgentCandidateMemoryPort": "type 7b6a5058261b",
"AgentCandidateMemoryResetResult": "type e0b612f9e68e",
"AgentCandidateModelGrantActivateInput": "type 885ee3d0ad96",
"AgentCandidateModelGrantClient": "type 77a3b9a5463c",
"AgentCandidateModelGrantReservation": "type eb06af48eb58",
"AgentCandidateModelGrantReserveInput": "type 32dce8e56111",
"AgentCandidateModelGrantRunReservationInput": "type 335d4b3c5add",
"AgentCandidateModelGrantSettleInput": "type 3b19843bcb48",
"AgentCandidateModelLimits": "type 016f8b91a3a0",
"AgentCandidateModelPort": "type 8cee1debee59",
"AgentCandidateOutputArtifactPort": "type 27454f2c1154",
"AgentCandidateOutputPurpose": "type 2504da8cdc9a",
"AgentCandidatePreparationEvidence": "type 28528c89ca7a",
"AgentCandidateProfileSource": "type 8b2f8787868a",
"AgentCandidateProtectedModelActivation": "type 707b8b573299",
"AgentCandidateProtectedModelReservation": "type 223c666a5440",
"AgentCandidateProtectedModelSettlement": "type 6667010466d2",
"AgentCandidateProtectedModelSettlementCall": "type 36a10ed3ce27",
"AgentCandidateProtectedRunCapture": "type 0f1c4d3205f8",
"AgentCandidateRepositoryPort": "type 50c01534a404",
"AgentCandidateRetryRejection": "type f55f90b9fa5a",
"AgentCandidateRunFinalization": "type dc343204d5f7",
"AgentCandidateTaskExecution": "type 3ccbfcad3370",
"AgentCandidateVerificationPorts": "type 935d2363e9d4",
"AgentCandidateWorkspaceArchiveLimits": "type f0293a9543e3",
"AgentCandidateWorkspacePort": "type 9971e86d3952",
"AgentEvalError": "value e261dfa15a57",
"AgentEvalErrorCode": "type 3a679d0bd62a",
"AgentExecutionBackend": "type 6f574660abc2",
"AgentKnowledgeProvider": "type 0bfecb927c3f",
"AgentKnowledgeReadinessCheckOptions": "type f77a5ab2faa6",
"AgentRuntimeEvent": "type 76082e8c9cc2",
"AgentRuntimeEventSink": "type ff8a6a75055e",
"AgentSpec": "type 16cb1fb4fdba",
"AgentTaskContext": "type 5fada1545700",
"AgentTaskRunResult": "type b5382cfa3ea6",
"AgentTaskSpec": "type de1e49554bcf",
"AgentTaskStatus": "type 4087243dc453",
"AgenticGeneratorExecutorForWorktree": "type a1493d23fed8",
"AgenticGeneratorOptions": "type 1d5e47e57c3b",
"AgenticGeneratorShotDisposition": "type 657d4fd128fa",
"AgenticGeneratorShotExecution": "type c0739e352ea6",
"AgenticGeneratorShotReceipt": "type c73c53ad3197",
"AnalystRegistry": "type 4be7b4a3eda8",
"AuthSource": "type 77f50d94d779",
"BackendCallPolicy": "type 24f2ced8aec3",
"BackendErrorDetail": "type bb4d505107a1",
"BackendTransportError": "value d106a3684dcd",
"Budget": "type 198591da0ea4",
"BuildAgentCandidateBundleInput": "type 4d1d24ab61dd",
"BuildPromptFindingsInput": "type c10103bc72dd",
"CANDIDATE_KNOWLEDGE_RETRIEVAL_CONFIG_ENV": "value e5ce255b1e1e",
"CANDIDATE_KNOWLEDGE_ROOT_ENV": "value db1bf2cc64eb",
"CANDIDATE_TRACE_ENV": "value 373728f5643d",
"CANDIDATE_TRACE_TAGS": "value 373728f5643d",
"CandidateGenerator": "type d2b99fd9843d",
"CanonicalCandidateDocument": "type 8d08e15943ea",
"CaptureAgentCandidateWorkspaceOptions": "type e9f1f65bb8ea",
"CapturedAgentCandidateWorkspace": "type 3951e6301805",
"ChatModelCandidate": "type c35e223e502c",
"ChatModelValidation": "type fc44fbff36e7",
"CircuitBreakerConfig": "type d7631a064800",
"CircuitBreakerState": "value aa3d02175e74",
"CircuitOpenError": "value c42ddd25ebcd",
"ConfigError": "value a04b1851d315",
"ControlBudget": "type b0404d2cb0b4",
"ControlDecision": "type 251bcb710b26",
"ControlEvalResult": "type c7a2d96ce0ac",
"ControlRunResult": "type 4994c45c1afc",
"ControlStep": "type 69d8ab196483",
"Conversation": "type da37c7083ab5",
"ConversationDriveState": "type 7320e9a7f523",
"ConversationJournal": "type a8842d8d1d54",
"ConversationJournalEntry": "type fc215c061bf0",
"ConversationParticipant": "type 7b8895ab5cac",
"ConversationPolicy": "type c749b11fd8cc",
"ConversationResult": "type f74fcdc4f8f0",
"ConversationStreamEvent": "type a39182b3dbfc",
"ConversationTurn": "type d8280ca3c636",
"CoordinationEvent": "type 154b351ce165",
"CreateAgentCandidateWorkspacePortOptions": "type 02ca21801e67",
"CreateKnowledgeImprovementActivationExecutorOptions": "type 4b3e5fe02df7",
"CreateProfileImprovementHarnessOptions": "type 36de01aba28e",
"CreateProtectedAgentCandidateModelPortOptions": "type 567fcbb745c5",
"D1DatabaseLike": "type ffce9ec5de30",
"D1StmtLike": "type cd8b3c46cbcd",
"DEFAULT_MAX_DEPTH": "value 534bcde62c80",
"DEFAULT_ROUTER_BASE_URL": "value 4db78e51a917",
"DELEGATED_LOOP_MODES": "value 373728f5643d",
"DataAcquisitionPlan": "type f595c2c91db4",
"DeadlineExceededError": "value f14110e33449",
"DeepReadonly": "type debabea31148",
"DelegatedLoopMode": "type acf62798912e",
"DelegatedLoopRegistry": "type 578e702bfe4f",
"DelegatedLoopResult": "type 668fbc87659d",
"DelegatedLoopRunner": "type d7db78933ab9",
"DisposePreparedAgentCandidateOptions": "type 334fea4519c8",
"Driver": "type 4a747076b1a3",
"EvalRunEvent": "type 8ddfe4d59ad2",
"EvalRunGeneration": "type 20afaf09c958",
"EvalRunsExportConfig": "type 10f49fac643f",
"EvalRunsExportResult": "type 11bbddf37396",
"ExactProcessCandidateExecutorOptions": "type 6d8bcf93bcc5",
"ExecutePreparedAgentCandidateOptions": "type 57f8cd35bee5",
"Executor": "type 3c6cee1f0aaa",
"ExecutorRegistry": "type 2abca0065370",
"FORWARD_HEADERS": "value 373728f5643d",
"FileAgentCandidateExecutionClaimStore": "value 2e49494bbc13",
"FileAgentCandidateExecutionClaimStoreOptions": "type 50fb3b46925e",
"FileConversationJournal": "value 4802312707cb",
"FinalizeContext": "type e45cea6eacef",
"ForwardHeaderName": "type 2bb88719b70f",
"HaltContext": "type 303be32d6488",
"HaltPredicate": "type b69534fff420",
"HaltReason": "type c9c6c0c9ef48",
"HaltSignal": "type 2c925f52dd30",
"INTELLIGENCE_WIRE_VERSION": "value 8e3ba418bc49",
"ImproveCandidateValidationInput": "type 6baefdb7f86c",
"ImproveCandidateValidator": "type 2f7a88cfa0dd",
"ImproveCodeBaseOptions": "type 8c4ff8a0f7b4",
"ImproveCodeOptions": "type d3c28c32ba64",
"ImproveCodeResult": "type 20846088307b",
"ImproveCodeRunOptions": "type 0377eee40f14",
"ImproveCost": "type 638b3b3b0c34",
"ImproveCustomCodeGeneratorOptions": "type a15f465fdaa4",
"ImproveLineage": "type f793868e55b0",
"ImproveMethodContext": "type 38ed6f6332d8",
"ImproveMethodFactory": "type 50bf77048852",
"ImproveMethodLineage": "type a2c01575d256",
"ImproveMethodOptions": "type 6259a221feb5",
"ImproveMethodResult": "type e6193eeff9a1",
"ImproveMethodSource": "type 316a33848162",
"ImproveOptimizationRunOptions": "type 37126daf2710",
"ImproveOptions": "type 69633089568b",
"ImproveProfileAgent": "type 838ce6cf96eb",
"ImproveProfileComponents": "type c86bc1ebb675",
"ImproveProfileSurface": "type 754bd4e0923d",
"ImproveResult": "type ace20785759b",
"ImproveRuntimeCodeGeneratorOptions": "type c26225cf7ca3",
"ImproveScenarioPartitions": "type 37a3508406b1",
"ImproveSkillsOptions": "type c1f5a69faefc",
"ImproveSurface": "type b711b683b151",
"ImprovementCandidate": "type 0c22a91c6396",
"ImprovementCodeCandidate": "type 588fa6d3b2f5",
"ImprovementMaterializedProfilePopulationCandidate": "type 4eee039de8cf",
"ImprovementProfileCandidate": "type 377fabb4a9f3",
"ImprovementProfileCandidatePopulation": "type 6ef536b385ea",
"ImprovementProfileCandidatePopulationAvailable": "type 76f8548060e7",
"ImprovementProfileCandidatePopulationUnavailable": "type 5200238ba82c",
"ImprovementProfilePopulationArtifactSource": "type f1e2ede25dd5",
"ImprovementProfilePopulationCandidate": "type 855d7f091d79",
"ImprovementProfilePopulationCandidateSource": "type c30f928819b8",
"ImprovementProfilePopulationLineage": "type 33e56e42164c",
"ImprovementProfilePopulationLineageNode": "type db45b58cf60f",
"ImprovementProfilePopulationObservationSource": "type 31329c8e291c",
"ImprovementRefusedProfilePopulationCandidate": "type 8f2898262889",
"InMemoryAgentCandidateExecutionClaimStore": "value e1b9e28f3b6b",
"InMemoryAgentCandidateExecutionClaimStoreOptions": "type d77b36cad0f2",
"InMemoryConversationJournal": "value 4927b0749651",
"InMemoryRuntimeSessionStore": "value a8aeb6b14dab",
"JudgeError": "value b119b38f761c",
"KnowledgeImprovementActivationExecutor": "type b9069463896a",
"KnowledgeImprovementCandidatePair": "type 5a0c9db719eb",
"KnowledgeImprovementExperimentBundles": "type 45738926bb13",
"KnowledgeImprovementJobMeasurement": "type 5e595d464b1c",
"KnowledgeImprovementJobResult": "type 0b4b4fef3fcd",
"KnowledgeReadinessCheck": "type 7385b8732efa",
"KnowledgeReadinessCheckInput": "type f3ca03d23ec6",
"KnowledgeReadinessCheckResult": "type 661f4a72f9d7",
"KnowledgeReadinessDecision": "type eeb741965be0",
"KnowledgeReadinessReport": "type 994a26178dfd",
"KnowledgeRequirement": "type 9eff39ba138b",
"LoopResult": "type b7a972830ef0",
"LoopRunnerCliArgs": "type 6ecbc77e71cc",
"LoopRunnerCliResult": "type 89584a7b1fdb",
"LoopSpanNode": "type d35fbb5ac05f",
"McpServeSpec": "type 9d5ccac77a77",
"ModelInfo": "type 3dbd03b79f1f",
"NotFoundError": "value f62ce89741a2",
"OfficialGepaOptions": "type 1316ae2a5f8f",
"OfficialOptimizerContextOptions": "type 31b89c281161",
"OfficialOptimizerUnavailableError": "value af3511559509",
"OfficialSensitiveCandidateInput": "type a105d7d55d9c",
"OfficialSkillOptOptions": "type f45f43cb1cfc",
"OpenAIChatResponseFormat": "type 6f7a742747de",
"OpenAIChatTool": "type 587ca9c00fd0",
"OpenAIChatToolChoice": "type b8129a56b807",
"OtelAttribute": "type c654fbe3b3d7",
"OtelExportConfig": "type c6cd4c93acc1",
"OtelExporter": "type c09a138141c0",
"OtelSpan": "type 9e9702a17733",
"PROMPT_INSTRUCTION_COMPONENT_PREFIX": "value c1a5512b0a79",
"PersistedTaskOutcomeEvidence": "type f6e140502655",
"PersonaConversationResult": "type d642750715ee",
"PersonaDriver": "type 14b302d4c33f",
"PlannerError": "value 3b3330bf4164",
"PrepareAgentCandidateExecutionOptions": "type 9f3658a2e308",
"PreparedAgentCandidateExecution": "type 53db278bf3c6",
"PreparedAgentCandidateInstruction": "type 14cc5c16b748",
"PreparedAgentCandidateKnowledge": "type cff8f5ebde89",
"PreparedAgentCandidateLaunch": "type 98de2a170c7b",
"PreparedAgentCandidateTrace": "type 6e0b276ba854",
"ProfileImprovementHarness": "type aa5280c89d45",
"ProfileImprovementHarnessRunOptions": "type 3d1ff1d78855",
"PropagatedHeaders": "type a1f769265a15",
"ProtectedAgentCandidateModelGrantContext": "type 0117bf495136",
"ProviderModelAttemptEvidence": "type 9c62f347cffb",
"ProviderModelExecutionEvidence": "type d66858ac77d4",
"RESEARCH_SUPERVISOR_SYSTEM_PROMPT": "value 373728f5643d",
"ROLLOUT_POLICY_EXTENSION": "value 4fa0cbedb455",
"RawTraceDistillerOptions": "type a04b8b0d09e1",
"ReadonlyAgentProfile": "type 416a5d04e179",
"RecoverExpiredAgentCandidateOptions": "type c9854bda8f64",
"ReflectiveGeneratorOptions": "type 827a021107bd",
"ResearchLoopResult": "type 81ea8dc20823",
"ResearchLoopRunnerOptions": "type dff4c537bf69",
"ResolvedAgentCandidateContainer": "type 7ff5ca832b4b",
"ResolvedChatModel": "type 24e7a9f1cb42",
"RetainedInteractiveAdmissionError": "value 06dc6a995448",
"RetainedInteractiveBindingError": "value 8bcc2778aec5",
"RetainedRunAdmissionError": "value 85773591acdd",
"RetainedRunDispatchBindingError": "value ea583571fb51",
"RetryBackoff": "type e0f2ba9bd71e",
"RetryableErrorPredicate": "type 6b06d3078afb",
"RootProviderModelEvidence": "type 062cb80ee9d2",
"RouterEnv": "type d93fc1501ebe",
"RunAgentTaskOptions": "type 8a5ee0100d34",
"RunAgentTaskStreamOptions": "type 964c2a59566b",
"RunConversationOptions": "type ef86fe813c80",
"RunDelegatedLoopOptions": "type 40ddb29eca6a",
"RunKnowledgeImprovementJobOptions": "type dff0e531eaa5",
"RunPersonaConfig": "type 203b38f0e3d2",
"RunPersonaConversationOptions": "type 05613f97bfd9",
"RunProtectedAgentCandidateModelGrantOptions": "type 8595c92d0073",
"RunProtectedAgentCandidateModelGrantResult": "type 522d1f7d6ef2",
"RunRecord": "type a3048de8ab12",
"RuntimeCanonicalStreamEvent": "type d59bfdee9d2e",
"RuntimeDecisionEvidenceRef": "type c1813b78368b",
"RuntimeDecisionKind": "type ea4c59afcf3d",
"RuntimeDecisionPoint": "type 914aa4e5cfe2",
"RuntimeEventCollector": "type 2c5b0e463eff",
"RuntimeEventOtelOptions": "type 232ec69575c8",
"RuntimeHookContext": "type d447f65c9386",
"RuntimeHookErrorContext": "type 06512f8e93b6",
"RuntimeHookEvent": "type 2e879339080c",
"RuntimeHookPhase": "type 26b496cded58",
"RuntimeHookTarget": "type a2cbb8ff4969",
"RuntimeHooks": "type b7dd8af2a66a",
"RuntimeRunCompleteInput": "type 86da06d426ae",
"RuntimeRunCost": "type cd2169a19d05",
"RuntimeRunHandle": "type 5a574dbc109b",
"RuntimeRunOptions": "type dd562e096b0a",
"RuntimeRunPersistenceAdapter": "type b47d5152689e",
"RuntimeRunRow": "type 832d3f4557f7",
"RuntimeRunStateError": "value 3b3330bf4164",
"RuntimeRunStatus": "type 29807f9ef422",
"RuntimeSession": "type 6a000eb59978",
"RuntimeSessionStore": "type 7bc14634c6d2",
"RuntimeStreamEvent": "type 5bab626efc26",
"RuntimeStreamEventCollector": "type 011c1ad4eff1",
"RuntimeStreamEventSink": "type b0c84fc28f63",
"RuntimeStreamEventSummary": "type e4ff6bf87ed8",
"RuntimeTelemetryOptions": "type 16902f8bb7af",
"SanitizedKnowledgeReadinessReport": "type d89736118d1a",
"SanitizedKnowledgeRequirement": "type e4173a7b55fc",
"Scope": "type f0ce3d119b61",
"ServerSentEventOptions": "type c80818c13fcd",
"Settled": "type 81db5667280b",
"Spend": "type 477830045ea7",
"SpendChannel": "type 978ffae337cd",
"SpendGap": "type d24924855c35",
"SqlAdapter": "type 6573f95f9224",
"SqlConversationJournal": "value 3062906baa8c",
"SupervisedKnowledgeUpdateInput": "type f8a606d04044",
"SupervisedKnowledgeUpdateOptions": "type e20062b4394e",
"SupervisedKnowledgeUpdateResult": "type ac482862a4ae",
"SupervisedKnowledgeUpdater": "type 90a6812eba78",
"SupervisedResult": "type d2fabb828e07",
"Supervisor": "type 7d9aff9cd744",
"SupervisorFinalizer": "type f8628e65536f",
"TurnOrder": "type 573c9a049337",
"ValidationError": "value 44437c30eb82",
"VerifiedAgentCandidate": "type a8159a2b2fc2",
"VerifiedAgentCandidateTaskOutcome": "type e78360db85cb",
"Verifier": "type c596e7edac69",
"VerifyResult": "type fe21ce933c15",
"VetoedFact": "type b762517293cc",
"WorkerTraceEvidence": "type 34812cbffcbf",
"WorkerTraceUnavailableReason": "type 0dcb14d1071b",
"WorktreeCheckRunner": "type f5ddf0040e0d",
"WorktreeLoopRunnerOptions": "type 4b8323fdc124",
"agentCandidateProfileAsAgentProfile": "value 6884700ef860",
"agenticGenerator": "value 381e9adc701e",
"applyExactAgentProfileDiff": "value 38958c07f2c3",
"applyRolloutPolicyToProfile": "value 3ae3e840b966",
"applyRunRecordDefaults": "value fc85805a0744",
"assertCandidateProfileBinding": "value 8babdc257b17",
"auditLoopRunner": "value ff6bae6605ee",
"buildAgentCandidateBundle": "value fb0cb3f4fdfd",
"buildForwardHeaders": "value 10f79a3b80ce",
"buildKnowledgeImprovementExperimentBundles": "value cf13e301f3d1",
"buildLoopOtelSpans": "value 284106dc9b9c",
"buildLoopSpanNodes": "value b6907891f903",
"buildRuntimeEventOtelSpans": "value 9a523ecba638",
"candidateExecutionClaim": "value 52eecda52a77",
"candidateKnowledgeExecutionPaths": "value 966345443a36",
"captureAgentCandidateWorkspace": "value 7f4475902270",
"captureAgentCandidateWorkspaceFiles": "value dd1fee3fc5af",
"cleanModelId": "value 0cd63baa2088",
"commandVerifier": "value 75c0a10aca5d",
"composeRuntimeHooks": "value a0c8fbe0631b",
"computeBackoff": "value 8ad92fb94960",
"createAgentCandidateWorkspacePort": "value ca1a2b460bd3",
"createAgentKnowledgeReadinessCheck": "value 86edaf4f4ca1",
"createConversationBackend": "value 9fe923adfb90",
"createIterableBackend": "value 314afcb51e55",
"createKnowledgeImprovementActivationExecutor": "value b6efdb7cc158",
"createOpenInferenceFileExporter": "value d98118aa9e40",
"createOtelExporter": "value a8142a47de96",
"createProfileExecutionBackend": "value a7926388b9fc",
"createProfileImprovementHarness": "value af7341a4d1fb",
"createProtectedAgentCandidateModelPort": "value fcfc8ab74054",
"createRuntimeEventCollector": "value ea22e5215f79",
"createRuntimeStreamEventCollector": "value c6532ff21604",
"createSandboxPromptBackend": "value efc3c55b313a",
"createSupervisedKnowledgeUpdater": "value 3a255d7f1b27",
"d1ToSqlAdapter": "value 52e77815bc46",
"decideKnowledgeReadiness": "value c00f22a77c3e",
"defaultBuildPrompt": "value 9ce828d2a432",
"defaultIsRetryable": "value 373728f5643d",
"defineConversation": "value 569007d80718",
"defineRuntimeHooks": "value 1f3fb112bbaa",
"disposePreparedAgentCandidateExecution": "value 384d21a534bc",
"exactProcessProviderAsCandidateExecutor": "value 2ef0a1308acf",
"executePreparedAgentCandidate": "value b1c81ad30d63",
"exportEvalRuns": "value 240c22b20078",
"findingLines": "value 725aa52c4ca7",
"formatSupervisedKnowledgeTask": "value bdcf6b28157d",
"freezeGenericAgentCandidateProfile": "value 328bc28cc12b",
"generateSpanId": "value 2f8329045cac",
"getModels": "value 95cb7c012c48",
"improve": "value 1303859a2197",
"isDelegatedLoopMode": "value d0f2042750ec",
"isDepthExceeded": "value 471315f46983",
"knowledgeReadinessDeliverable": "value f6f33b24a926",
"loopEventToOtelSpan": "value 63bec8b09ae0",
"makePerAttemptSignal": "value f229a7f4d84b",
"mcpBuildPrompt": "value 4cfa006cdc25",
"mcpServeVerifier": "value d7a68397b89e",
"mcpToolsForRuntimeMcp": "value a34f183a9975",
"mcpToolsForRuntimeMcpSubset": "value fa6d42ba89b6",
"normalizeRolloutPolicy": "value 034102c55075",
"notifyRuntimeDecisionPoint": "value 65856ae365cd",
"notifyRuntimeHookEvent": "value bd48a1fb00a7",
"officialGepa": "value 615a3ad231e1",
"officialSkillOpt": "value f28561a84754",
"omitUndefinedObjectFields": "value e3987fca89aa",
"optimizerMethod": "value 373728f5643d",
"padSpanId": "value 1361fbd38de8",
"padTraceId": "value 1361fbd38de8",
"parseExactAgentProfile": "value e2f46e65c2c2",
"parseExactAgentProfileDiff": "value ea369fab1ae1",
"parseExactCandidateProfile": "value ca6145b1f5ca",
"parseLoopRunnerArgv": "value a8173e0b3524",
"parseRolloutPolicy": "value 4be8e09035c4",
"persistCandidateOutputArtifact": "value 1edc0baee769",
"prepareAgentCandidateExecution": "value 02474694b9b6",
"promptInstructionsProfileComponents": "value 373728f5643d",
"rawTraceDistiller": "value df1b44b906a6",
"readDepth": "value 602ca6e242cf",
"readinessServerSentEvent": "value e5b2bd79ca9d",
"recoverExpiredAgentCandidateExecution": "value 1d09e4aee824",
"reflectiveGenerator": "value 6c2bec39b893",
"researchLoopRunner": "value 9ed3a7fed1f4",
"resolveChatModel": "value c74ac57dd4c2",
"resolveRouterBaseUrl": "value 3a650bbaacd1",
"runAgentTask": "value 2c5e237fedbc",
"runAgentTaskStream": "value c9a488fe9b86",
"runConversation": "value eca3523d0592",
"runConversationStream": "value a6d996af57a6",
"runDelegatedLoop": "value 92e8cdd4b57b",
"runKnowledgeImprovementJob": "value c089ca89cb01",
"runLoopRunnerCli": "value b22ac71d40cf",
"runPersonaConversation": "value fcae0ad49bca",
"runPersonaDispatch": "value 874981b4e4ae",
"runProtectedAgentCandidateModelGrant": "value f761e1de9b39",
"runSupervisedKnowledgeUpdate": "value 4cd56c075560",
"runtimeStreamServerSentEvent": "value ed7e61d7dbdb",
"sanitizeAgentRuntimeEvent": "value ceeb6589f492",
"sanitizeKnowledgeReadinessReport": "value 52e6ee752f5e",
"sanitizeRuntimeStreamEvent": "value 79987b6804ef",
"sealAgentCandidateBundle": "value f80c7f87fffd",
"serializeRolloutPolicy": "value 9f07b8c69207",
"sleep": "value 9ab26c21d5ea",
"slugifySpeaker": "value be834607599c",
"startRuntimeRun": "value 959a71b41eca",
"strategyAuthorMethod": "value 373728f5643d",
"structuralRolloutPolicyFromProfile": "value 5f1af6a9539c",
"toOtelAttributes": "value 94c29b77cec8",
"toolBuildPrompt": "value 4cfa006cdc25",
"turnId": "value ae4a64ac14d9",
"validateChatModelId": "value da54a32a148a",
"verifyAgentCandidateBundle": "value f111bf8784e4",
"worktreeLoopRunner": "value 910ac5bbf1b1"
},
"./agent": {
"AGENT_PROFILE_MATERIALIZATION_AXES": "value ebb8b0d8a4a2",
"AgentManifest": "type 59f08015429d",
"AgentManifestError": "value 3451f92d74cc",
"AgentProfileMaterializationAxis": "type 9fb9e909000b",
"AgentRubric": "type 82399dcfde56",
"AgentRunContext": "type 06c78a83463c",
"AgentRunInvocation": "type 0b92c2716262",
"AgentRuntime": "type 1e67275c35ce",
"AgentSurfaces": "type dc8244fae1d0",
"AnalystConfig": "type 583e6f0228d2",
"AssertProfileMaterializationOptions": "type 85a55f504f37",
"CanonicalAgentProfileMaterializationAxis": "type 12e4eebceea1",
"CreateSandboxActOptions": "type d37a360deabf",
"CreateSurfaceImprovementProposerOptions": "type 62db3ccd1e78",
"DefineProfileMaterializationContractOptions": "type 6d8cae33ba5a",
"DraftPatchInput": "type 24bff6f6aa1a",
"DraftPatchOutput": "type 9c8b1c5f1b12",
"JudgeConfig": "type 23afa4e48797",
"KnownAgentProfileMaterializationAxis": "type 0407d2163837",
"ProfileMaterializationContract": "type 6d8cae33ba5a",
"ProfileMaterializationIssue": "type c891ccc87123",
"ResolvedSurface": "type 21d7aaba3961",
"RubricDimension": "type 08c46b586659",
"SandboxActComposeOverrides": "type 8605c040b8a3",
"SurfaceImprovementEdit": "type 85631f7c2567",
"SurfaceValidationIssue": "type aa45eaebef6f",
"ValidateProfileMaterializationOptions": "type f411696751ea",
"assertProfileMaterialization": "value 59bca37b3fbe",
"collectAgentRun": "value 9243227522c0",
"controlProfileMaterialization": "value 373728f5643d",
"createSandboxAct": "value 91a2336c2588",
"createSurfaceImprovementProposer": "value dc2340a9114a",
"defineAgent": "value 1423630352da",
"defineProfileMaterializationContract": "value 8db6c97463be",
"fullProfileMaterialization": "value 373728f5643d",
"profileMaterializationAxes": "value bdf70eddcb7d",
"promptControlProfileMaterialization": "value 373728f5643d",
"promptModelProfileMaterialization": "value 373728f5643d",
"promptOnlyProfileMaterialization": "value 373728f5643d",
"promptResourceProfileMaterialization": "value 373728f5643d",
"renderProfileMaterializationIssues": "value 1a83960f1ef9",
"renderSurfaceIssues": "value 6f6b39322ff4",
"resolveSubjectPath": "value 206cc9509d1a",
"sandboxActProfileMaterialization": "value 373728f5643d",
"unimplementedAgentRun": "value 9389f343a01d",
"validateProfileMaterialization": "value e3d018711382",
"validateSurfaces": "value 18a8e7013248",
"worktreeCliProfileMaterialization": "value 373728f5643d"
},
"./analyst-loop": {
"AnalystLoopEvent": "type b97c4dbd4de6",
"AnalystRegistryLike": "type a8b9557d24c5",
"AnalystRegistryStreamingLike": "type c354159698a2",
"FindingsStoreLike": "type a64a0a292ae0",
"ImprovementEditBatch": "type 980cb036ba77",
"ImprovementProposalSource": "type b669881b8700",
"ImprovementReport": "type 980cb036ba77",
"KnowledgeProposalBatch": "type 5688b09a4f90",
"KnowledgeProposalSource": "type aa18d02db444",
"KnowledgeReport": "type 5688b09a4f90",
"RunAnalystLoopOpts": "type cc1fb1424400",
"RunAnalystLoopResult": "type 8965c6dbd710",
"iterationsToTraceStore": "value d5d6e2af15df",
"runAnalystLoop": "value 7d53bcb73496"
},
"./candidate-execution": {
"AGENT_CANDIDATE_EXECUTION_SUPPORT": "value 373728f5643d",
"AgentCandidateArtifactPort": "type f8d7b7b799a0",
"AgentCandidateBenchmarkGraderIdentity": "type 8607afc4b7f8",
"AgentCandidateBenchmarkGraderPort": "type 8382a860bbc7",
"AgentCandidateBundleInput": "type 7fcd34a99053",
"AgentCandidateCodeSource": "type 720bd34b92a0",
"AgentCandidateCodeSurfaceSource": "type 0a8a5d217305",
"AgentCandidateContainerPort": "type f7755309e85c",
"AgentCandidateExecutionAttemptRecord": "type 27d16559a67c",
"AgentCandidateExecutionAttemptRef": "type 8d66815c6442",
"AgentCandidateExecutionClaim": "type 03a2c93a8ca6",
"AgentCandidateExecutionClaimResult": "type 6ee8ec3e071b",
"AgentCandidateExecutionClaimStore": "type 2a61f1b79623",
"AgentCandidateExecutionCleanupHandles": "type 88d74592cf6e",
"AgentCandidateExecutionFailureClass": "type aabf1ddfc9f8",
"AgentCandidateExecutionFinishResult": "type 36672f48359a",
"AgentCandidateExecutionLease": "type d6004eb7e2ec",
"AgentCandidateExecutionPhase": "type 3d516d8e48d5",
"AgentCandidateExecutionPhaseResult": "type 0f6cd86e687f",
"AgentCandidateExecutionPorts": "type 48c2327ca7a7",
"AgentCandidateExecutionRecoveryEvidence": "type 4ba2e94e09fe",
"AgentCandidateExecutionStageResult": "type 2eb6256022d8",
"AgentCandidateExecutionTerminalRecord": "type ed994e452bd9",
"AgentCandidateExecutionTerminalResult": "type b991f3debe4e",
"AgentCandidateExecutorFinalCapture": "type 2d4288d14451",
"AgentCandidateExecutorMemoryCapture": "type cd3cedbca53d",
"AgentCandidateExecutorPort": "type cd2b297f0101",
"AgentCandidateExecutorProfileFile": "type f963e5a3e121",
"AgentCandidateExecutorRequest": "type 6faef0ce230c",
"AgentCandidateExecutorStopRequest": "type e071bbcaef26",
"AgentCandidateExecutorTaskOutcomeCapture": "type d91b347bc099",
"AgentCandidateExecutorWorkspaceFile": "type f963e5a3e121",
"AgentCandidateExecutorWorkspaceInput": "type 4111e4c17763",
"AgentCandidateMemoryPort": "type 7b6a5058261b",
"AgentCandidateMemoryResetResult": "type e0b612f9e68e",
"AgentCandidateModelGrantActivateInput": "type 885ee3d0ad96",
"AgentCandidateModelGrantClient": "type 77a3b9a5463c",
"AgentCandidateModelGrantReservation": "type eb06af48eb58",
"AgentCandidateModelGrantReserveInput": "type 32dce8e56111",
"AgentCandidateModelGrantRunReservationInput": "type 335d4b3c5add",
"AgentCandidateModelGrantSettleInput": "type 3b19843bcb48",
"AgentCandidateModelLimits": "type 016f8b91a3a0",
"AgentCandidateModelPort": "type 8cee1debee59",
"AgentCandidateOutputArtifactPort": "type 27454f2c1154",
"AgentCandidateOutputPurpose": "type 2504da8cdc9a",
"AgentCandidatePreparationEvidence": "type 28528c89ca7a",
"AgentCandidateProfileSource": "type 8b2f8787868a",
"AgentCandidateProtectedModelActivation": "type 707b8b573299",
"AgentCandidateProtectedModelReservation": "type 223c666a5440",
"AgentCandidateProtectedModelSettlement": "type 6667010466d2",
"AgentCandidateProtectedModelSettlementCall": "type 36a10ed3ce27",
"AgentCandidateProtectedRunCapture": "type 0f1c4d3205f8",
"AgentCandidateRepositoryPort": "type 50c01534a404",
"AgentCandidateRetryRejection": "type f55f90b9fa5a",
"AgentCandidateRunFinalization": "type dc343204d5f7",
"AgentCandidateTaskExecution": "type 3ccbfcad3370",
"AgentCandidateVerificationPorts": "type 935d2363e9d4",
"AgentCandidateWorkspaceArchiveLimits": "type f0293a9543e3",
"AgentCandidateWorkspacePort": "type 9971e86d3952",
"BuildAgentCandidateBundleInput": "type 4d1d24ab61dd",
"CANDIDATE_KNOWLEDGE_RETRIEVAL_CONFIG_ENV": "value e5ce255b1e1e",
"CANDIDATE_KNOWLEDGE_ROOT_ENV": "value db1bf2cc64eb",
"CANDIDATE_TRACE_ENV": "value 373728f5643d",
"CANDIDATE_TRACE_TAGS": "value 373728f5643d",
"CanonicalCandidateDocument": "type 8d08e15943ea",
"CaptureAgentCandidateWorkspaceOptions": "type e9f1f65bb8ea",
"CapturedAgentCandidateWorkspace": "type 3951e6301805",
"CreateAgentCandidateWorkspacePortOptions": "type 02ca21801e67",
"CreateProtectedAgentCandidateModelPortOptions": "type 567fcbb745c5",
"DisposePreparedAgentCandidateOptions": "type 334fea4519c8",
"ExactProcessCandidateExecutorOptions": "type 6d8bcf93bcc5",
"ExecutePreparedAgentCandidateOptions": "type 57f8cd35bee5",
"FileAgentCandidateExecutionClaimStore": "value 2e49494bbc13",
"FileAgentCandidateExecutionClaimStoreOptions": "type 50fb3b46925e",
"InMemoryAgentCandidateExecutionClaimStore": "value e1b9e28f3b6b",
"InMemoryAgentCandidateExecutionClaimStoreOptions": "type d77b36cad0f2",
"PersistedTaskOutcomeEvidence": "type f6e140502655",
"PrepareAgentCandidateExecutionOptions": "type 9f3658a2e308",
"PreparedAgentCandidateExecution": "type 53db278bf3c6",
"PreparedAgentCandidateInstruction": "type 14cc5c16b748",
"PreparedAgentCandidateKnowledge": "type cff8f5ebde89",
"PreparedAgentCandidateLaunch": "type 98de2a170c7b",
"PreparedAgentCandidateTrace": "type 6e0b276ba854",
"ProtectedAgentCandidateModelGrantContext": "type 0117bf495136",
"RecoverExpiredAgentCandidateOptions": "type c9854bda8f64",
"ResolvedAgentCandidateContainer": "type 7ff5ca832b4b",
"RunProtectedAgentCandidateModelGrantOptions": "type 8595c92d0073",
"RunProtectedAgentCandidateModelGrantResult": "type 522d1f7d6ef2",
"VerifiedAgentCandidate": "type a8159a2b2fc2",
"VerifiedAgentCandidateTaskOutcome": "type e78360db85cb",
"agentCandidateProfileAsAgentProfile": "value 6884700ef860",
"applyExactAgentProfileDiff": "value 38958c07f2c3",
"assertCandidateProfileBinding": "value 8babdc257b17",
"buildAgentCandidateBundle": "value fb0cb3f4fdfd",
"candidateExecutionClaim": "value 52eecda52a77",
"candidateKnowledgeExecutionPaths": "value 966345443a36",
"captureAgentCandidateWorkspace": "value 7f4475902270",
"captureAgentCandidateWorkspaceFiles": "value dd1fee3fc5af",
"createAgentCandidateWorkspacePort": "value ca1a2b460bd3",
"createProtectedAgentCandidateModelPort": "value fcfc8ab74054",
"disposePreparedAgentCandidateExecution": "value 384d21a534bc",
"exactProcessProviderAsCandidateExecutor": "value 2ef0a1308acf",
"executePreparedAgentCandidate": "value b1c81ad30d63",
"freezeGenericAgentCandidateProfile": "value 328bc28cc12b",
"omitUndefinedObjectFields": "value e3987fca89aa",
"parseExactAgentProfile": "value e2f46e65c2c2",
"parseExactAgentProfileDiff": "value ea369fab1ae1",
"parseExactCandidateProfile": "value ca6145b1f5ca",
"persistCandidateOutputArtifact": "value 1edc0baee769",
"prepareAgentCandidateExecution": "value 02474694b9b6",
"recoverExpiredAgentCandidateExecution": "value 1d09e4aee824",
"runProtectedAgentCandidateModelGrant": "value f761e1de9b39",
"sealAgentCandidateBundle": "value f80c7f87fffd",
"verifyAgentCandidateBundle": "value f111bf8784e4"
},
"./conversation": {
"AuthSource": "type 77f50d94d779",
"BackendCallPolicy": "type 24f2ced8aec3",
"CircuitBreakerConfig": "type d7631a064800",
"CircuitBreakerState": "value aa3d02175e74",
"CircuitOpenError": "value c42ddd25ebcd",
"Conversation": "type da37c7083ab5",
"ConversationDriveState": "type 7320e9a7f523",
"ConversationJournal": "type a8842d8d1d54",
"ConversationJournalEntry": "type fc215c061bf0",
"ConversationParticipant": "type 7b8895ab5cac",
"ConversationPolicy": "type c749b11fd8cc",
"ConversationResult": "type f74fcdc4f8f0",
"ConversationStreamEvent": "type a39182b3dbfc",
"ConversationTurn": "type d8280ca3c636",
"D1DatabaseLike": "type ffce9ec5de30",
"D1StmtLike": "type cd8b3c46cbcd",
"DEFAULT_MAX_DEPTH": "value 534bcde62c80",
"DeadlineExceededError": "value f14110e33449",
"FORWARD_HEADERS": "value 373728f5643d",
"FileConversationJournal": "value 4802312707cb",
"ForwardHeaderName": "type 2bb88719b70f",
"HaltContext": "type 303be32d6488",
"HaltPredicate": "type b69534fff420",
"HaltReason": "type c9c6c0c9ef48",
"HaltSignal": "type 2c925f52dd30",
"InMemoryConversationJournal": "value 4927b0749651",
"PersonaConversationResult": "type d642750715ee",
"PersonaDriver": "type 14b302d4c33f",
"PropagatedHeaders": "type a1f769265a15",
"RetryBackoff": "type e0f2ba9bd71e",
"RetryableErrorPredicate": "type 6b06d3078afb",
"RunConversationOptions": "type ef86fe813c80",
"RunPersonaConfig": "type 203b38f0e3d2",
"RunPersonaConversationOptions": "type 05613f97bfd9",
"SqlAdapter": "type 6573f95f9224",
"SqlConversationJournal": "value 3062906baa8c",
"TurnOrder": "type 573c9a049337",
"buildForwardHeaders": "value 10f79a3b80ce",
"computeBackoff": "value 8ad92fb94960",
"createConversationBackend": "value 9fe923adfb90",
"createProfileExecutionBackend": "value a7926388b9fc",
"d1ToSqlAdapter": "value 52e77815bc46",
"defaultIsRetryable": "value 373728f5643d",
"defineConversation": "value 569007d80718",
"isDepthExceeded": "value 471315f46983",
"makePerAttemptSignal": "value f229a7f4d84b",
"readDepth": "value 602ca6e242cf",
"runConversation": "value eca3523d0592",
"runConversationStream": "value a6d996af57a6",
"runPersonaConversation": "value fcae0ad49bca",
"runPersonaDispatch": "value 874981b4e4ae",
"sleep": "value 9ab26c21d5ea",
"slugifySpeaker": "value be834607599c",
"turnId": "value ae4a64ac14d9"
},
"./durable": {
"ChatStreamEvent": "type c38a1cde4ab8",
"ChatTurnHooks": "type c1fa3249c9a9",
"ChatTurnIdentity": "type 1b2cf5cd17fa",
"ChatTurnProducer": "type 50a503923fd5",
"ChatTurnResult": "type 35c160c2c727",
"DurableCoordinationStreamIdentity": "type ba6f79b360bf",
"DurableSupervisionDiscovery": "type 05979eddb74a",
"FileObserverJournal": "value f24ea2becb3e",
"ObserverJournal": "type 4a4ddc5bfa6d",
"ObserverRecord": "type 875ccc95286a",
"ObserverRecordKind": "type 6987df37ecf5",
"PursuitCostProvenance": "type fc5f37082627",
"PursuitNodeCost": "type 2ae084b090ba",
"PursuitNodePlacement": "type 744e7b45dc01",
"PursuitNodeProjection": "type b65f68454746",
"PursuitNodeTiming": "type 8cb37b8dca25",
"PursuitNodeUsage": "type 951e957775ab",
"PursuitProjection": "type 8d4e8a08d707",
"PursuitRunProjection": "type 0e7976e29987",
"PursuitRunTotals": "type 87a99709fb0a",
"PursuitStatus": "type 8a9aa4ae39bb",
"RunChatTurnInput": "type 3aafc346a44b",
"SupervisePursuitError": "value aed1ebc9dee4",
"SupervisePursuitOptions": "type 924edac7d1c5",
"SupervisedPursuitResult": "type 92c631123e8d",
"createFileObserverHooks": "value 707d61f37837",
"deriveExecutionId": "value 5ed1a2cebcd9",
"discoverDurableSupervisionRun": "value 755167676917",
"handleChatTurn": "value ab8628a7396c",
"observerRecordDigest": "value b372133204fd",
"projectPursuit": "value 6183aae54abd",
"supervisePursuit": "value ff560cf64200",
"verifyObserverRecords": "value 0c68d6d910e5"
},
"./environment-provider": {
"AgentEnvironment": "type 4272cf5e0349",
"AgentEnvironmentCapabilities": "type 775aee251d5c",
"AgentEnvironmentEvent": "type c7419dd754cb",
"AgentEnvironmentProvider": "type 0f882d7128a6",
"AgentEnvironmentProviderRef": "value bd25b68b8f2c",
"AgentEnvironmentProviderRegistry": "value 2c933aaa7fed",
"AgentEnvironmentQuery": "type 677d4e13d224",
"AgentEnvironmentStatus": "type 5ab6422846d3",
"AgentEnvironmentSummary": "type d7d574d7b05e",
"AgentProfileRef": "type 7454b813d48f",
"AgentSession": "type 3de9c1785140",
"AgentSessionRef": "type 0dc2f3248049",
"AgentSessionStatus": "type ee2e42c95177",
"AgentTurnInput": "type 2f01873ca3b4",
"AgentTurnResult": "type 5abca86333d1",
"CheckpointRef": "type 20ca9fd5c0c4",
"CheckpointRequest": "type 378bf142a1c2",
"CreateAgentEnvironmentInput": "type 8fea2bbfd5e3",
"CreateTangleSandboxExactProcessProviderOptions": "type ef080d0f41c5",
"ExecRequest": "type 1ae7193c5ae7",
"ExecResult": "type 88076a0a7f30",
"ForkRequest": "type 7cd1fb62a8d3",
"PlacementInfo": "type 09a4454d0bf7",
"ProviderAsSandboxClientOptions": "value 5078ed438691",
"ProviderExecutorOptions": "value 4bf59dac2209",
"ResourceRequest": "type 20dbb23e8101",
"SandboxClientProviderOptions": "value 4a7d9cfb5414",
"WorkspaceRequest": "type d649891c12a7",
"createAgentEnvironmentProviderRegistry": "value 5db7da191aa3",
"createTangleSandboxExactProcessProvider": "value 9a6ed3915000",
"providerAsExecutor": "value f40a0103cbbb",
"providerAsSandboxClient": "value a90e714ee688",
"resolveAgentEnvironmentProvider": "value 75c31181b05e",
"sandboxClientAsProvider": "value 15e009d2a36d"
},
"./graph": {
"AgentKindConfig": "type f3bd2a2d1ef3",
"AnyNodeKind": "type 55f4a92edcad",
"AuthoredCodeOptions": "type fa82814b55dd",
"BudgetMode": "type 5b16bf1d103a",
"CONDITION_OPS": "value 373728f5643d",
"CompiledEdge": "type c827cc9cfb25",
"CompiledGraph": "type 0e82bdc88bed",
"CompiledNode": "type f9930b816a7f",
"Condition": "type 5d17cb72b88f",
"ConditionLeaf": "type 353e333b6a44",
"ConditionOp": "type 2622b369f3d8",
"DEFAULT_MAX_NODE_VISITS": "value e854627b7415",
"ENGINE_WOKEN_SEQ_BASE": "value edda59005fbd",
"EdgeLedger": "type 827c95b4320f",
"EffectContext": "type fccfee77f1e8",
"EffectName": "type ba5552a40a12",
"EngineGraphEdge": "type 545d00a076d7",
"EngineGraphNode": "type 9adfb26fafeb",
"EngineGraphSpec": "type d0b2d0604a0c",
"FinalizerChoice": "type 9f5b133c4aff",
"FoldEdge": "type 21a7109f4e19",
"FoldEdgeState": "type d818243e12e3",
"FoldInstance": "type 74b2ae32eef4",
"FoldInstanceStatus": "type 123693084eb3",
"FoldNode": "type ea75dac954b8",
"FoldSuspension": "type ae8d8798d242",
"GatingEdge": "type 70dc762746b2",
"GraphEdgeKind": "type 34a39599f5c1",
"GraphEdgeTraversal": "type 944ec84a2f32",
"GraphEngine": "type 0d3983622bbb",
"GraphEngineOptions": "type b3cb071d39bd",
"GraphFoldState": "type 016d549f40fc",
"GraphHost": "type 219dfa2b928a",
"GraphNodeSettle": "type d529e58cbed4",
"GraphRunContext": "type 957a71c856f3",
"GraphRunHandle": "type cda9c61cc44b",
"GraphRunOptions": "type cc2519718f9b",
"GraphRunReason": "type d996bc26b295",
"GraphRunResult": "type fea1d504a4e4",
"JOIN_RULES": "value 373728f5643d",
"JoinDecision": "type a1236ab0770d",
"JoinRule": "type c7bbbdb7c945",
"JsonSchema": "type e1a1c796076a",
"MAX_MAX_NODE_VISITS": "value b7fc7908cc81",
"NodeFlags": "type bd1fa7422fcc",
"NodeKind": "type 9e83e6f3f533",
"OnCrash": "type bb4c5bb25f5e",
"PortSpec": "type 6e1e4b208e91",
"Projection": "type 31e273bf5a04",
"RUN_GRAPH_ROOT_KIND": "value 6ecf84c735a2",
"Registered": "type ee1e70476757",
"Registry": "type ba1d2152924b",
"RegistryHandle": "type 40d5bf2283f9",
"ScriptBody": "type 3e96682fe797",
"ScriptKindConfig": "type 284e87b99c7a",
"SubgraphKindConfig": "type b318b850f5e0",
"SupervisorKindConfig": "type f76277ea20cf",
"SuspensionRequest": "type d38e3b1de9ba",
"admitPayload": "value ac28bc9992cf",
"agentKind": "value 228d1801050d",
"applyGraphFoldEvent": "value 70e27348ccf1",
"applyProjection": "value b94c8e122df4",
"assembleGraphResult": "value d678cca36560",
"assertAuthoredCode": "value fcab3ac5f772",
"compileGraph": "value a6503da455bc",
"createEdgeLedger": "value d963f2a8b1ed",
"createGraphEngine": "value 2a8488b90184",
"createGraphRun": "value 49f1fb76eeca",
"createRegistry": "value 6cbee0daa2be",
"decideJoin": "value 5253c2cc8e3d",
"emptyFoldState": "value ebbfa661aaf6",
"evaluateCondition": "value 0515a05e4feb",
"foldGraphJournal": "value 911d89f93bf6",
"formatRegistryHandle": "value ce839c080bdc",
"graphFromRunGraph": "value 51b7777a2802",
"isEngineFired": "value 7d67a953ae50",
"isSuspensionRequest": "value 0db839d7dce4",
"kindHandle": "value 8735aafbd0b1",
"materializeSettles": "value 429fb976f6ba",
"mintSuspensionToken": "value 0726f4b5269d",
"narrowEffects": "value 572325974365",
"openGraphRun": "value b5200af46abc",
"parseRegistryHandle": "value b438d6db0ace",
"runEngineGraph": "value cae4cbd93ff0",
"schemaAccepts": "value 9583fc0fec82",
"scriptKind": "value ad87af04535a",
"subgraphKind": "value c79e0f8c4a24",
"supervisorKind": "value 6c5c9722a558",
"suspended": "value 53894dfa6335",
"suspensionNodeId": "value 3cc8081be44f",
"tokenFromSuspensionNodeId": "value 31b9eb9e63f6",
"validateCondition": "value 137bd8f6fb85",
"validateNodeKind": "value 816745aa3700",
"validateProjection": "value 1b85f3019844"
},
"./intelligence": {
"AGENT_IMPROVEMENT_PROFILE_SURFACES": "value 373728f5643d",
"AGENT_PROFILE_MEASURED_SURFACES": "value 373728f5643d",
"AgentCandidateExecutionHostPorts": "type 2b9a9b4acdb6",
"AgentCandidateExperimentCellExecutionError": "value e55f832ba2c6",
"AgentCandidateExperimentCellPlacement": "type e44e6d43b71b",
"AgentImprovementActivation": "type 4c74aedc0858",
"AgentImprovementActivationIntent": "type 09ea7c7830ad",
"AgentImprovementActivationOutcome": "type e16d484f6be3",
"AgentImprovementActivationReconciliation": "type 76b339b8c485",
"AgentImprovementActivationResult": "type df024ad03613",
"AgentImprovementActivationResultStore": "type 1a89c04a800e",
"AgentImprovementActivationTargetIdentity": "type b3279f37c052",
"AgentImprovementActivationTargetPlan": "type 6b1e46773c65",
"AgentImprovementActivationTransition": "type 2cecec87ae54",
"AgentImprovementActivationTransitionInput": "type 28f2f0cc4092",
"AgentImprovementAnalysisOptions": "type 07347712b37f",
"AgentImprovementEvaluation": "type 9cea210b2391",
"AgentImprovementExperimentMaterial": "type 6439ab9c8f80",
"AgentImprovementMeasuredComparison": "type 93248083f243",
"AgentImprovementProfileActivationInput": "type 64c1f18b83e3",
"AgentImprovementProfileActivationPreparation": "type 43737ad73c4d",
"AgentImprovementProfileActivationTarget": "type d03f6b1732cf",
"AgentImprovementProfileReplacement": "type 48821632318d",
"AgentImprovementProfileStateDigest": "type 972d03c78fac",
"AgentImprovementProfileStateDigestInput": "type 48821632318d",
"AgentImprovementProfileStateResolver": "type e27def0aab46",
"AgentImprovementProfileStateResolverInput": "type 327740586bf2",
"AgentImprovementProfileSurface": "type 52586817b7cc",
"AgentImprovementProfileTargetState": "type 0a438d32704e",
"AgentImprovementProfileTargetTransition": "type a1bf1f2344e9",
"AgentImprovementProposal": "type 10d4f214fa4b",
"AgentImprovementProposalSubmissionState": "type b06f3b84253c",
"AgentImprovementReview": "type 8549b72eefdd",
"AgentImprovementReviewDecision": "type f43c904ab406",
"AgentImprovementTargetProfileDiffOptions": "type 374128a7add1",
"AgentProfileCandidateMeasurementExecutor": "type e9ad522d4fea",
"AgentProfileImprovementActivationOperation": "type 38ffc1ef6b47",
"AgentProfileImprovementActivationTargetPlan": "type 1f323cd4dc12",
"AgentProfileImprovementBenchmark": "type 81cb8950c4d4",
"AgentProfileImprovementExecutor": "type 15db1125ee8b",
"AgentProfileImprovementMethodOptions": "type 597d28f77b0c",
"AgentProfileMeasuredSurface": "type 5c6ef8b60007",
"AppliedIntelligence": "type cb82a58df576",
"AuthoredAgentProfileCandidateLineage": "type 6347e6de7e94",
"AuthoredAgentProfileDiffOptions": "type a5164118e67f",
"CandidateExecutionEvidence": "type a7c8bb181c24",
"CandidateProfileMaterialization": "type 319bf52c8ec2",
"CapabilityAuth": "type 8f61f43814ee",
"CapabilityInterface": "type 53b91d4f82ae",
"CapabilityManifest": "type 947efe4037a1",
"CapabilityNotAdmittedError": "value 37a3192b2385",
"CapabilitySurface": "type c1d859b37228",
"CertProvenance": "type 116370158b03",
"CertifiedArtifact": "type 28c607ca78c9",
"CertifiedCapability": "type 009b7b109962",
"CertifiedCapabilitySummary": "type a8999a7a4583",
"CertifiedProfile": "type 437da716c17c",
"CertifiedPromptSource": "type 974f5f7b8b8f",
"CertifiedPromptSourceOptions": "type 2d31469f4b3a",
"CertifiedPromptSurface": "type 78f251e31a91",
"ContentRef": "type 4c76ae1a539b",
"CorpusAccess": "type 37701cfe03d8",
"CreateAgentImprovementActivationOptions": "type a61c5545c9c8",
"CreateAgentImprovementActivationResultOptions": "type 64d82e759809",
"CreateAgentImprovementProposalOptions": "type 3f7ff4b67fe8",
"CreateExactProcessCandidateExperimentExecutorOptions": "type 6d390c45f62a",
"CreateProtectedExactProcessCandidateExperimentExecutorOptions": "type e3f99118627f",
"CredentialRef": "type bbeb8385d87f",
"DeliveryBinding": "type fe13ba1a9eeb",
"DeliveryBindingKind": "type 6cac2248f99b",
"DiffProvenance": "type 59fdd1fa068b",
"DoctorReport": "value 4c7af8631629",
"EffortOverrides": "type 58deaf1d9d53",
"EffortOverridesCompiled": "type 499d58afb3a3",
"EffortSettings": "type f2b4177fa2d1",
"EffortTier": "type b202923a16b2",
"ExactProcessCandidateExperimentExecution": "type 10813de48552",
"ExactProcessCandidateExperimentExecutor": "type ec30b48cbd3d",
"ExecuteAgentCandidateExperimentCellOptions": "type 5134a6cf12b2",
"ExecuteAgentImprovementActivationInput": "type 5fe23bc7ab96",
"ExecuteAgentImprovementActivationOptions": "type cefcd3b6791e",
"HostSpec": "type b2dc08cb3724",
"IntelligenceAgent": "type 065d39136dd1",
"IntelligenceClient": "value 19f425e70502",
"IntelligenceConfig": "value 4219c9510b1a",
"IntelligenceHookConfig": "type 52de35150f1b",
"IntelligenceWrapped": "type bb61c374f2db",
"JsonSchema": "type b757f8750838",
"ModeReadiness": "value 28b0dc739c6e",
"OptimizationActivationReceipt": "type c67cea53b944",
"OptimizationReceiptCost": "type b0fa4115eac3",
"ProfileImprovementActivationTransitionInput": "type 6f5b93a4ddf9",
"ProposeAgentImprovementOptions": "type 9a5dc8eefeb1",
"ProposeAgentImprovementResult": "type 767426ae6552",
"ProposeAgentProfileImprovementOptions": "type 9472052ac2dd",
"ProposeAgentProfileImprovementResult": "type a7943bb2bf10",
"ProposeAuthoredAgentProfileImprovementOptions": "type 8e4141140fcf",
"ProposeAuthoredAgentProfileImprovementResult": "type 66213bc9b241",
"ProposedProfileDiff": "type 87a6210bc48d",
"ProtectedExactProcessCandidateExperimentExecutor": "type cba8eed04f47",
"ProvisionedHost": "type 5c2dd8dab4de",
"PullCertifiedOptions": "type d5a0c173fd20",
"PullOutcome": "type 65f5ba023e2a",
"RecordTraceMeta": "value be5f3221e70c",
"Redactor": "type 8a0e4e2fbc4c",
"RepoConfig": "value 2aa9a2284542",
"ResolveCtx": "type 3dfee54501bd",
"ResolvedHook": "type 50595ec81c71",
"ResolvedRetrieval": "type cbfe04249594",
"ResolvedSubagent": "type d8346b828604",
"ResolvedSurface": "type 87eca5ac1ea2",
"ReviewAgentImprovementInput": "type ae49d2f046e0",
"RunAgentCandidateExperimentOptions": "type ab8d0f4cc1ce",
"RunAgentCandidateExperimentResult": "type 65609d009f61",
"RunRecord": "value 898d949b6fdc",
"RunReport": "value 5d630b8bf073",
"SealedCandidateActivationTransitionInput": "type f7871dba7221",
"SubmitAgentImprovementProposalOptions": "type 46e621896605",
"SubmitAgentImprovementProposalOutcome": "type 632bce32158c",
"TraceHandle": "value c8036504bae7",
"TraceMeta": "value 8b8e2b85391f",
"TraceOutcome": "value 7cdb1762b1ab",
"UsageSplit": "value 225059e1632c",
"VerifyCandidateExecutionEvidenceOptions": "type 2362ba397119",
"agentImprovementProfileDiffs": "value 87c549d6cba8",
"agentImprovementProfileSurfaceDigest": "value f1b26d501d0d",
"agentImprovementProfileSurfaceInput": "value 62c540281aa0",
"agentImprovementTargetProfileDiffs": "value dd98cda884b1",
"buildAgentImprovementActivationTargets": "value 63beb86f49fb",
"compileEffort": "value c7eee30c3eeb",
"composeCertifiedProfile": "value 323c5d049ef9",
"composeCertifiedProfileFromWire": "value e4fd1dc6dc63",
"composeCertifiedPrompt": "value 28d2ada347a5",
"createAgentImprovementActivation": "value 25361fb7e0b8",
"createAgentImprovementActivationResult": "value aca48792a2c0",
"createAgentImprovementMeasuredComparison": "value a45c6eac4801",
"createAgentImprovementProposal": "value 8f4363b4cf8e",
"createCertifiedPromptSource": "value 1b9ee04dc4ae",
"createExactProcessCandidateExperimentExecutor": "value b843db43e8f9",
"createIntelligenceClient": "value cefda9e36784",
"createOptimizationActivationReceipt": "value 800665aa0593",
"createProtectedExactProcessCandidateExperimentExecutor": "value 9bc60de785f1",
"defaultEffortTier": "value 373728f5643d",
"defaultRedactor": "value ac28bc9992cf",
"exactProcessCandidateExperimentExecutionSupport": "value 373728f5643d",
"executeAgentCandidateExperimentCell": "value 6d867f1f3515",
"executeAgentImprovementActivation": "value 5006f43eccab",
"isAgentImprovementProfileSurface": "value 6e4a2d637e3b",
"isAgentProfileMeasuredSurface": "value ff2275f7416c",