-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapi-surface.json
More file actions
2005 lines (2005 loc) · 101 KB
/
Copy pathapi-surface.json
File metadata and controls
2005 lines (2005 loc) · 101 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": {
".": {
"AgentAdapter": "type c0e869f7f324",
"AgentBackendContext": "type 355e9367717f",
"AgentBackendInput": "type 765914132783",
"AgentEvalError": "value e261dfa15a57",
"AgentEvalErrorCode": "type 3a679d0bd62a",
"AgentExecutionBackend": "type 6f574660abc2",
"AgentKnowledgeProvider": "type 0bfecb927c3f",
"AgentKnowledgeReadinessCheckOptions": "type f77a5ab2faa6",
"AgentRuntimeEvent": "type 76082e8c9cc2",
"AgentRuntimeEventSink": "type ff8a6a75055e",
"AgentTaskContext": "type 5fada1545700",
"AgentTaskRunResult": "type b5382cfa3ea6",
"AgentTaskSpec": "type de1e49554bcf",
"AgentTaskStatus": "type 4087243dc453",
"AgenticGeneratorExecutorForWorktree": "type a1493d23fed8",
"AgenticGeneratorOptions": "type 1d5e47e57c3b",
"AgenticGeneratorShotDisposition": "type dc9795eb57ec",
"AgenticGeneratorShotExecution": "type c0739e352ea6",
"AgenticGeneratorShotReceipt": "type c73c53ad3197",
"AuthSource": "type 77f50d94d779",
"BackendCallPolicy": "type 24f2ced8aec3",
"BackendErrorDetail": "type bb4d505107a1",
"BackendTransportError": "value 3d6126b2c0d7",
"BuildPromptFindingsInput": "type c10103bc72dd",
"CandidateGenerator": "type d2b99fd9843d",
"ChatModelCandidate": "type c35e223e502c",
"ChatModelValidation": "type fc44fbff36e7",
"CircuitBreakerConfig": "type d7631a064800",
"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",
"CreateKnowledgeImprovementActivationExecutorOptions": "type 4b3e5fe02df7",
"CreateProfileImprovementHarnessOptions": "type 36de01aba28e",
"D1DatabaseLike": "type ffce9ec5de30",
"D1StmtLike": "type cd8b3c46cbcd",
"DEFAULT_ROUTER_BASE_URL": "value 4db78e51a917",
"DELEGATED_LOOP_MODES": "value 373728f5643d",
"DataAcquisitionPlan": "type f595c2c91db4",
"DeepReadonly": "type debabea31148",
"DelegatedLoopMode": "type acf62798912e",
"DelegatedLoopRegistry": "type 578e702bfe4f",
"DelegatedLoopResult": "type 668fbc87659d",
"DelegatedLoopRunner": "type d7db78933ab9",
"EvalRunEvent": "type 8ddfe4d59ad2",
"EvalRunGeneration": "type 20afaf09c958",
"EvalRunsExportConfig": "type 10f49fac643f",
"EvalRunsExportResult": "type 11bbddf37396",
"FileConversationJournal": "value 4802312707cb",
"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 e4fa798734e5",
"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 fa46b216be21",
"ImproveMethodSource": "type 316a33848162",
"ImproveOptimizationRunOptions": "type 37126daf2710",
"ImproveOptions": "type 69633089568b",
"ImproveProfileAgent": "type 838ce6cf96eb",
"ImproveProfileComponents": "type 49e65202cc11",
"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",
"InMemoryConversationJournal": "value 4927b0749651",
"InMemoryRuntimeSessionStore": "value a8aeb6b14dab",
"JudgeError": "value b119b38f761c",
"KnowledgeImprovementActivationExecutor": "type b9069463896a",
"KnowledgeImprovementCandidatePair": "type ced5b8564c25",
"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",
"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",
"PersonaConversationResult": "type d642750715ee",
"PersonaDriver": "type 14b302d4c33f",
"PlannerError": "value 3b3330bf4164",
"ProfileImprovementHarness": "type aa5280c89d45",
"ProfileImprovementHarnessRunOptions": "type 3d1ff1d78855",
"RESEARCH_SUPERVISOR_SYSTEM_PROMPT": "value 373728f5643d",
"ROLLOUT_POLICY_EXTENSION": "value 4fa0cbedb455",
"RawTraceDistillerOptions": "type a04b8b0d09e1",
"ReadonlyAgentProfile": "type 416a5d04e179",
"ReflectiveGeneratorOptions": "type 5d7e3177ca32",
"ResearchLoopResult": "type 81ea8dc20823",
"ResearchLoopRunnerOptions": "type dff4c537bf69",
"ResolvedChatModel": "type 24e7a9f1cb42",
"RetainedInteractiveAdmissionError": "value 06dc6a995448",
"RetainedInteractiveBindingError": "value 8bcc2778aec5",
"RetainedRunAdmissionError": "value 85773591acdd",
"RetainedRunDispatchBindingError": "value ea583571fb51",
"RetryBackoff": "type e0f2ba9bd71e",
"RetryableErrorPredicate": "type 6b06d3078afb",
"RouterEnv": "type d93fc1501ebe",
"RunAgentTaskOptions": "type 8a5ee0100d34",
"RunAgentTaskStreamOptions": "type 964c2a59566b",
"RunConversationOptions": "type 6cd1e1b881cb",
"RunDelegatedLoopOptions": "type 40ddb29eca6a",
"RunKnowledgeImprovementJobOptions": "type dff0e531eaa5",
"RunPersonaConfig": "type 203b38f0e3d2",
"RunPersonaConversationOptions": "type 05613f97bfd9",
"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 cc5dc525e2d7",
"RuntimeStreamEventCollector": "type 011c1ad4eff1",
"RuntimeStreamEventSink": "type b0c84fc28f63",
"RuntimeStreamEventSummary": "type e4ff6bf87ed8",
"RuntimeTelemetryOptions": "type 16902f8bb7af",
"SanitizedKnowledgeReadinessReport": "type d89736118d1a",
"SanitizedKnowledgeRequirement": "type e4173a7b55fc",
"ServerSentEventOptions": "type c80818c13fcd",
"SqlAdapter": "type 6573f95f9224",
"SqlConversationJournal": "value 3062906baa8c",
"SupervisedKnowledgeUpdateInput": "type f8a606d04044",
"SupervisedKnowledgeUpdateOptions": "type e20062b4394e",
"SupervisedKnowledgeUpdateResult": "type ac482862a4ae",
"SupervisedKnowledgeUpdater": "type 90a6812eba78",
"TurnOrder": "type 573c9a049337",
"ValidationError": "value 44437c30eb82",
"Verifier": "type c596e7edac69",
"VerifyResult": "type 0864be50c38c",
"VetoedFact": "type b762517293cc",
"WorktreeCheckRunner": "type f5ddf0040e0d",
"WorktreeLoopRunnerOptions": "type 4b8323fdc124",
"agenticGenerator": "value 381e9adc701e",
"applyRolloutPolicyToProfile": "value 3ae3e840b966",
"applyRunRecordDefaults": "value fc85805a0744",
"auditLoopRunner": "value ff6bae6605ee",
"buildKnowledgeImprovementExperimentBundles": "value cf13e301f3d1",
"buildLoopOtelSpans": "value 284106dc9b9c",
"buildLoopSpanNodes": "value b6907891f903",
"buildRuntimeEventOtelSpans": "value 9a523ecba638",
"cleanModelId": "value 0cd63baa2088",
"commandVerifier": "value 75c0a10aca5d",
"composeRuntimeHooks": "value a0c8fbe0631b",
"createAgentKnowledgeReadinessCheck": "value 86edaf4f4ca1",
"createConversationBackend": "value 9fe923adfb90",
"createIterableBackend": "value 314afcb51e55",
"createKnowledgeImprovementActivationExecutor": "value b6efdb7cc158",
"createOpenInferenceFileExporter": "value d98118aa9e40",
"createOtelExporter": "value a8142a47de96",
"createProfileExecutionBackend": "value a7926388b9fc",
"createProfileImprovementHarness": "value af7341a4d1fb",
"createRuntimeEventCollector": "value ea22e5215f79",
"createRuntimeStreamEventCollector": "value c6532ff21604",
"createSandboxPromptBackend": "value efc3c55b313a",
"createSupervisedKnowledgeUpdater": "value 3a255d7f1b27",
"d1ToSqlAdapter": "value 52e77815bc46",
"decideKnowledgeReadiness": "value c00f22a77c3e",
"defaultBuildPrompt": "value 9ce828d2a432",
"defineConversation": "value 569007d80718",
"defineRuntimeHooks": "value 1f3fb112bbaa",
"exportEvalRuns": "value 240c22b20078",
"findingLines": "value 725aa52c4ca7",
"formatSupervisedKnowledgeTask": "value bdcf6b28157d",
"generateSpanId": "value 2f8329045cac",
"getModels": "value 95cb7c012c48",
"improve": "value 1303859a2197",
"isDelegatedLoopMode": "value d0f2042750ec",
"knowledgeReadinessDeliverable": "value f6f33b24a926",
"loopEventToOtelSpan": "value 63bec8b09ae0",
"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",
"optimizerMethod": "value 373728f5643d",
"padSpanId": "value 1361fbd38de8",
"padTraceId": "value 1361fbd38de8",
"parseLoopRunnerArgv": "value a8173e0b3524",
"parseRolloutPolicy": "value 4be8e09035c4",
"promptInstructionsProfileComponents": "value 373728f5643d",
"rawTraceDistiller": "value df1b44b906a6",
"readinessServerSentEvent": "value e5b2bd79ca9d",
"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",
"runSupervisedKnowledgeUpdate": "value 4cd56c075560",
"runtimeStreamServerSentEvent": "value ed7e61d7dbdb",
"sanitizeAgentRuntimeEvent": "value ceeb6589f492",
"sanitizeKnowledgeReadinessReport": "value 52e6ee752f5e",
"sanitizeRuntimeStreamEvent": "value 79987b6804ef",
"serializeRolloutPolicy": "value 9f07b8c69207",
"startRuntimeRun": "value 959a71b41eca",
"strategyAuthorMethod": "value 373728f5643d",
"structuralRolloutPolicyFromProfile": "value 5f1af6a9539c",
"toOtelAttributes": "value 94c29b77cec8",
"toolBuildPrompt": "value 4cfa006cdc25",
"validateChatModelId": "value da54a32a148a",
"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",
"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",
"AgentCandidateExecutionRoots": "type 5692b473238e",
"AgentCandidateExecutionStageResult": "type 2eb6256022d8",
"AgentCandidateExecutionTerminalRecord": "type ed994e452bd9",
"AgentCandidateExecutionTerminalResult": "type b991f3debe4e",
"AgentCandidateExecutorFinalCapture": "type 2d4288d14451",
"AgentCandidateExecutorMemoryCapture": "type cd3cedbca53d",
"AgentCandidateExecutorPort": "type cd2b297f0101",
"AgentCandidateExecutorProfileFile": "type c97cec0f81c0",
"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 0e1f608e0d32",
"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",
"DescribeWorkspaceTreeOptions": "type ab1a7cdec683",
"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 f097c604857e",
"PreparedAgentCandidateInstruction": "type 14cc5c16b748",
"PreparedAgentCandidateKnowledge": "type 089fe22a6ce2",
"PreparedAgentCandidateLaunch": "type 98de2a170c7b",
"PreparedAgentCandidateTrace": "type 6e0b276ba854",
"ProtectedAgentCandidateModelGrantContext": "type 0117bf495136",
"RecoverExpiredAgentCandidateOptions": "type c9854bda8f64",
"ResolvedAgentCandidateContainer": "type 7ff5ca832b4b",
"RunProtectedAgentCandidateModelGrantOptions": "type 8595c92d0073",
"RunProtectedAgentCandidateModelGrantResult": "type 522d1f7d6ef2",
"SeedWorkspaceTreeInput": "type 4074eb4daea5",
"VerifiedAgentCandidate": "type a8159a2b2fc2",
"VerifiedAgentCandidateTaskOutcome": "type e78360db85cb",
"WorkspaceScanLimits": "type ced502a2f692",
"WorkspaceScanOptions": "type 9444fecd24bf",
"WorkspaceTreeAlgorithm": "type 105d6d87a50f",
"WorkspaceTreeDescriptor": "type 4025017feb9a",
"WorkspaceTreeEntryPolicy": "type 836983906191",
"WorkspaceTreeExclusion": "type dc36c840dc13",
"WorkspaceTreeExclusionReason": "type ee4fbb2f3df2",
"agentCandidateProfileAsAgentProfile": "value 6884700ef860",
"applyExactAgentProfileDiff": "value 38958c07f2c3",
"assertCandidateProfileBinding": "value 8babdc257b17",
"buildAgentCandidateBundle": "value fb0cb3f4fdfd",
"candidateExecutionClaim": "value 52eecda52a77",
"candidateKnowledgeExecutionPaths": "value 966345443a36",
"candidateWorkspaceManifest": "value a6b0d5802a19",
"captureAgentCandidateWorkspace": "value 7f4475902270",
"captureAgentCandidateWorkspaceFiles": "value dd1fee3fc5af",
"createAgentCandidateWorkspacePort": "value ca1a2b460bd3",
"createProtectedAgentCandidateModelPort": "value fcfc8ab74054",
"describeWorkspaceTree": "value 0f6adbbbe641",
"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",
"scanMaterializedWorkspaceManifest": "value 447fe290195b",
"sealAgentCandidateBundle": "value f80c7f87fffd",
"seedWorkspaceTree": "value db5f581e44a1",
"verifyAgentCandidateBundle": "value f111bf8784e4",
"verifyMaterializedWorkspace": "value 43b68cbd7804"
},
"./durable": {
"ChatStreamEvent": "type c38a1cde4ab8",
"ChatTurnHooks": "type c1fa3249c9a9",
"ChatTurnIdentity": "type 1b2cf5cd17fa",
"ChatTurnProducer": "type 50a503923fd5",
"ChatTurnResult": "type 35c160c2c727",
"DurableCoordinationStreamIdentity": "type ba6f79b360bf",
"DurableFailureRecord": "type 3d974904c01d",
"DurableSupervisionDiscovery": "type a6572a894544",
"FAILURE_RECORD_FILE": "value d0bdbc890145",
"FileObserverJournal": "value f24ea2becb3e",
"ObserverJournal": "type 4a4ddc5bfa6d",
"ObserverRecord": "type 875ccc95286a",
"ObserverRecordKind": "type 6987df37ecf5",
"PursuitCostProvenance": "type fc5f37082627",
"PursuitNodeCost": "type 2ae084b090ba",
"PursuitNodePlacement": "type 744e7b45dc01",
"PursuitNodePlatform": "type 1d5dc2e2dd89",
"PursuitNodeProjection": "type bb568c03c428",
"PursuitNodeTiming": "type 8cb37b8dca25",
"PursuitNodeUsage": "type 951e957775ab",
"PursuitProjection": "type 8d4e8a08d707",
"PursuitRunProjection": "type 09b1ce3c49be",
"PursuitRunTotals": "type 87a99709fb0a",
"PursuitStatus": "type 8a9aa4ae39bb",
"RUN_DIRECTORY_LOCK_FILE": "value e2845e1b76b7",
"RunChatTurnInput": "type 3aafc346a44b",
"RunDirectoryLock": "type 2aff17d3b194",
"RunDirectoryLockHolder": "type 703a8ec365ab",
"RunDirectoryLockedError": "value bf00b522d645",
"SETTLE_RECORD_FILE": "value 3ca04227bc1e",
"SettledRunDirectoryError": "value 54198e7c6c16",
"SupervisePursuitError": "value c0703d653f90",
"SupervisePursuitOptions": "type 924edac7d1c5",
"SupervisedPursuitResult": "type 9901df2bf8df",
"acquireRunDirectoryLock": "value 7681e3ff5853",
"createFileObserverHooks": "value 707d61f37837",
"deriveExecutionId": "value 5ed1a2cebcd9",
"discoverDurableSupervisionRun": "value 755167676917",
"handleChatTurn": "value ab8628a7396c",
"observerRecordDigest": "value b372133204fd",
"projectPursuit": "value 6183aae54abd",
"readFailureRecord": "value f4ae9add9dd5",
"readRunDirectoryLock": "value 13d8f2062433",
"readSettleRecord": "value 1ff34b03afee",
"settleRecordJson": "value 7e8cbf0155c1",
"supervisePursuit": "value ff560cf64200",
"verifyObserverRecords": "value 0c68d6d910e5"
},
"./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",
"PullCertifiedOptions": "type d5a0c173fd20",
"PullOutcome": "type 65f5ba023e2a",
"RecordTraceMeta": "value be5f3221e70c",
"Redactor": "type 8a0e4e2fbc4c",
"RepoConfig": "value 2aa9a2284542",
"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",
"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",
"isIntelligenceOff": "value fa9a66077cc2",
"manifestFromProfile": "value 786f9b5c308d",
"normalizeCertifiedProfile": "value 3604f776098d",
"optimizationActivationReceiptFromMetadata": "value e147ede440b0",
"parseCandidateProfileMaterialization": "value 591ba64ada03",
"prepareAgentImprovementProfileActivation": "value 39aa825991a1",
"proposeAgentImprovement": "value ea3fa033cb66",
"proposeAgentProfileImprovement": "value 6026856ccdac",
"proposeAuthoredAgentProfileImprovement": "value 79ef5a7d69e7",
"pullCertified": "value 265cf12f35a0",
"resolveEffort": "value a82e4f2a7fc5",
"resolveIntelligenceBaseUrl": "value 2bf6d3f6fc08",
"resolveRedactor": "value 79a4a5ba9c66",
"reviewAgentImprovementProposal": "value e905b9c7c23f",
"runAgentCandidateExperiment": "value 280b7f88417b",
"submitAgentImprovementProposal": "value 6a4d50e3fdad",
"verifyAgentImprovementActivation": "value d0bec979590d",
"verifyAgentImprovementActivationResult": "value 7440ce291631",
"verifyAgentImprovementProposal": "value d513ada97fd4",
"verifyAgentImprovementReview": "value f9e009a6deb3",
"verifyCandidateExecutionEvidence": "value ee2d02075659",
"withIntelligence": "value f55fd63a2b20"
},
"./kernel": {
"AUTHORITY_MARKERS": "value 373728f5643d",
"AcquireOptions": "type b22366e9a9c6",
"ActivityLog": "type 0ade4b852031",
"ActivityNote": "type 9d995059ae4a",
"Agent": "type 88ef4a9d1adc",
"AgentEnvironment": "type 4272cf5e0349",
"AgentEnvironmentCapabilities": "type 775aee251d5c",
"AgentEnvironmentEvent": "type c7419dd754cb",
"AgentEnvironmentProvider": "type 0f882d7128a6",
"AgentEnvironmentProviderRef": "type bd25b68b8f2c",
"AgentEnvironmentProviderRegistry": "type 2c933aaa7fed",
"AgentEnvironmentQuery": "type 677d4e13d224",
"AgentEnvironmentStatus": "type 5ab6422846d3",
"AgentEnvironmentSummary": "type d7d574d7b05e",
"AgentExecutionRef": "type 5655795b6b6d",
"AgentGraph": "type 16ff46ba7a9d",
"AgentProfile": "type 2e3ca3f86aa4",
"AgentProfileRef": "type 7454b813d48f",
"AgentRunSpec": "type d6d59ac12903",
"AgentSession": "type 3de9c1785140",
"AgentSessionRef": "type 0dc2f3248049",
"AgentSessionStatus": "type ee2e42c95177",
"AgentSpec": "type 16cb1fb4fdba",
"AgentTurnBackend": "type 27d359607e4f",
"AgentTurnInput": "type 2f01873ca3b4",
"AgentTurnResult": "type 5abca86333d1",
"AgentTurnUsage": "type 634b35107a76",
"AgenticOptions": "type 92c4b1ed6bee",
"AgenticRunResult": "type c78c1b6efac4",
"AgenticSurface": "type 7a39cf7fe592",
"AgenticTask": "type aa1c8cd4b87b",
"AgenticTool": "type 41a8833d5f92",
"AllWorkersStalledOptions": "type 64b3bb163f9c",
"AnalystAuthoring": "type abd5c69f5892",
"AnalystFinding": "type c3f0a5aa0056",
"AnalystFindingEvent": "type b98887b55018",
"AnalystKind": "type 219df8ea507b",
"AnalystLensOutput": "type fb3e51448dda",
"AnalystRegistry": "type 08225f424ebe",
"AnalyzeOnSettleRoute": "type 80e7bed4a3c6",
"AnytimeReport": "type 1ef579fa893e",
"AnytimeStrategySummary": "type 3d858c7915d2",
"AnytimeTaskCurve": "type ea02e1804ff2",
"ArtifactHandle": "type 6ef7522708d3",
"AssertTraceDerivedFindings": "type ac9aae85dba7",
"AttachWorkerOptions": "type b6ab0a2a92cf",
"AuditIntentInput": "type 7a0b21680dba",
"AuditIntentOptions": "type b2d2dd342a9a",
"AuthorStrategyOptions": "type 20ad4ad22ffc",
"AuthoredAnalystDefinition": "type 0dd8d9e5bf4a",
"AuthoredAnalystLimits": "type 7dc13358b8d1",
"AuthoredHarness": "type 3ee2e6c460f8",
"AuthoredProfile": "type 7f2e9cc492f3",
"AuthoredStrategy": "type d17fe1764b79",
"AuthorityInboxMessage": "type 6083ad33f389",
"AuthorizeDownMessage": "type 669851863ba0",
"AuthorizedDownMessage": "type 40777f0dfc99",
"AuthorizedSpawn": "type 18a1d11a6cf8",
"AuthorizedSpawnContext": "type e4c4ae6d9929",
"AxisScoresOf": "type 15a9e641f7f9",
"BenchmarkCell": "type 72b3c9fe657e",
"BenchmarkConfig": "type 7895a24fb428",
"BenchmarkLift": "type 9442fa088dee",
"BenchmarkReport": "type f8853080b3b6",
"BenchmarkStrategySummary": "type 4d83fc0b0683",
"BenchmarkTaskRow": "type f13f61342da2",
"BoxSurfaceReaderOptions": "type e242c26fef8c",
"BranchCapableBox": "type a426aebe9f3f",
"BridgeHarnessStore": "type ca55cbc26b63",
"BridgeModelCredential": "type 82ad4d863f5c",
"BridgeSeam": "type 3ee6c139b2d1",
"Budget": "type d3e20424e44d",
"BudgetPool": "type 32b97a2266d1",
"BudgetPoolRestore": "type 09960d15dfe8",
"BudgetReadout": "type 0e2ea9923511",
"BusEvent": "type 736dd037425e",
"BusRecord": "type fccfdf943e88",
"BusStats": "type 10ba4be00459",
"ChampionPick": "type 1db47d30dae5",
"ChampionPolicy": "type 4b17da042456",
"ChatCompletionsTransport": "type 726467054d2f",
"ChatSessionStore": "type 26313742b041",
"ChatTransportExecutorOptions": "type df6031f7077d",
"ChatTransportTool": "type cb30b98eeedf",
"ChatWorkerSeamOptions": "type cacce7b7479a",
"CheckExecChannel": "type 90f9e475ce63",
"CheckOutcome": "type 746d116a349f",
"CheckRunContext": "type e8774ff0a0c1",
"CheckRunner": "type f6a8836baf0f",
"CheckSource": "type 4b92f36331ad",
"CheckSourceCtx": "type c8b501066774",
"CheckpointCapableBox": "type 306e2b9d7474",
"CheckpointRef": "type 20ca9fd5c0c4",
"CheckpointRequest": "type 378bf142a1c2",
"ClaimRetainedInteractiveControlOptions": "type e385904855e4",
"CliInPlaceSeam": "type 76c9f782074e",
"CliSeam": "type 69bfe2571bab",
"CliWorktreeBridgeSeam": "type 81fa5d344141",
"CliWorktreeSeam": "type d5be6307c356",
"CodeModeOptions": "type 846ed388a825",
"CodeModeRunner": "type 644646a508d0",
"CodexForkBoundary": "type 5335e473148a",
"CodexRolloutIdentity": "type 13675db20eb0",
"CodexRolloutSession": "type ef9041afd483",
"CodexRolloutStoreReader": "type 84f8cfa66c5c",
"CodexRolloutStoreRef": "type 4d1bfd78f5c1",
"CodexRolloutTurn": "type 820ae33f1bbc",
"CodexStoreDelta": "type 50fc7583bd18",
"CollectedAgentTurn": "type 6385effded14",
"CombinatorShape": "type e6d4ff2d3279",
"CompletionAnalyst": "type ada30bcac7fc",
"CompletionEvidence": "type fdddeacb1597",
"CompletionPolicy": "type 137ec8465d23",
"CompletionVerdict": "type a4470fdfdae0",
"ConcurrencyCaps": "type 4f7137d5aadc",
"ContinuationInstruction": "type b8afbf15f4e3",
"ContinuityMode": "type 57d23eae19f8",
"CoordinationAuthentication": "type 597b1639d2a9",
"CoordinationBinding": "type 3cd5ae984cb1",
"CoordinationDeliveryEvidence": "type b9bcf48aeb2e",
"CoordinationEvent": "type c618020ecc5e",
"CoordinationHttpAudit": "type 22f86be3170a",
"CoordinationHttpOptions": "type 6cf4d9604a62",
"CoordinationLog": "type 760d6417189e",
"CoordinationMcpHandle": "type d03f5776ed8b",
"CoordinationOwnerId": "type ba5552a40a12",
"CoordinationPublicAddress": "type 5857f2cc16c2",
"CoordinationStats": "type 5513580ead3b",
"CoordinationToolFace": "type 8528650d28ea",
"CoordinationTransportOptions": "type a127b6ae930f",
"CoordinationVerbs": "type bb903f9ae985",
"CopyOptions": "type 35a54f7c31dc",
"Corpus": "type 527d2cf49f0c",
"CorpusFilter": "type b7e398057b88",
"CorpusReadbackOptions": "type 2e70b002c6e3",
"CorpusRecord": "type 86fb089cd01b",
"CreateAgentEnvironmentInput": "type 8fea2bbfd5e3",
"CreateSandboxOptions": "type ab0f2b178258",
"CreateScopeAnalystOptions": "type 3351ecca65d7",
"CreateTangleSandboxExactProcessProviderOptions": "type ef080d0f41c5",
"CriuCapableClient": "type d10855d03b2d",
"DEFAULT_AUTHORED_PROFILE_SECURITY_POLICY": "value 373728f5643d",
"DEFAULT_AWAIT_EVENT_TIMEOUT_MS": "value b2f5e3885437",
"DEFAULT_PEER_MAIL_LIMITS": "value 373728f5643d",
"DEFAULT_SANDBOX_STEERING_MAX_TURNS": "value 3a13e5c79926",
"DEFAULT_STALL_AFTER_MS": "value 10d1ef3e7731",
"DefaultVerdict": "type 4b3d06e6ecfd",
"DefinePersona": "type e9bce97cd6c3",
"DefinePersonaInput": "type ce299393bb66",
"DefinedAnalystRecord": "type 4b0452ee38ab",
"DefinedLeaderboard": "type a1db1bea16bc",
"DelegateOptions": "type 5d55f9d4e301",
"Deliverable": "type d266204aeece",
"DeliverableResolutionInput": "type 687f1e17f86c",
"DeliverableSpec": "type 05815c75d49e",
"DeliveredOutput": "type eda13e5cb055",
"DispatchReport": "type e9684a9fca97",
"DispatchStopReason": "type bc0f227aaa05",
"DispatchUnit": "type a561998d312a",
"DownMessageAuthorizationInput": "type 948cf7956d48",
"DownMessageDeliveryAttempt": "type 5bdd1f632583",
"DownMessageDeliveryOutcome": "type bca367e62a6a",
"DownMessageEvent": "type 9dd808200f9d",
"DriveHarness": "type 50e2a57a8d4d",
"DriveHarnessOwnerContext": "type d0689ff0eb6e",
"Driver": "type 4a747076b1a3",
"DriverAttemptRecord": "type f9ce2f046564",
"DriverAttemptStop": "type 6d63d4b7d1e5",
"DriverAttemptsExhaustedError": "value febf49e9aab4",
"DriverBudgetReadout": "type 16f9b013d385",
"DriverContractState": "type a287e992fd8a",
"DriverProgressMark": "type cb7863a2e835",
"DriverReentry": "type 856da6132418",
"DriverRepromptPolicy": "type 0761759617c8",
"DriverRepromptRefusal": "type 2b7a1302459a",
"DriverRetryPolicy": "type b5607c21ee53",
"DriverUnmetContractContext": "type 9e6627e11f90",
"DriverUnmetContractDecision": "type f62a992629d1",
"EVIDENCE_MAX_CHARS": "value 60366a39f55c",
"EdgeDeliveryOutcome": "type ede8c2ce5f1a",
"EdgeTraversal": "type 531ad4bff85c",
"Environment": "type 7679243649b9",
"EqualKArm": "type f1bd7c02d16c",
"EqualKOnCost": "type 300428eef16a",
"EqualKOnCostOptions": "type ef1a283473cb",
"EqualKVerdict": "type 2c3a95e53c17",
"EscalateQuestion": "type 2de34745d7da",
"EventBus": "type a98300338cc7",
"EvolutionArchiveNode": "type 9044695f0cc0",
"EvolutionAuthor": "type ff06ea1bcc70",
"EvolutionBandInfo": "type f6e42c0bffc6",
"EvolutionCandidate": "type 570d4ff1249f",
"EvolutionGeneration": "type b6d6f9e8a114",
"EvolutionReport": "type 7d793b69d7bd",
"ExecCtx": "type 3ba322d20513",
"ExecRequest": "type 1ae7193c5ae7",
"ExecResult": "type 88076a0a7f30",
"ExecutionBindingReceipt": "type 65ebc4a19a73",
"Executor": "type 0f7a010cc74d",
"ExecutorAccounting": "type 9902bc52553b",
"ExecutorCancellation": "type a570eaf2765f",
"ExecutorCancellationRequest": "type c9bf674c803e",
"ExecutorConfig": "type 53b4110f9327",
"ExecutorContext": "type 98d2e228ea1b",
"ExecutorExecutionBinding": "type cbd52e7e2eb8",
"ExecutorFactory": "type 0d6f475ad3d4",
"ExecutorMaterialization": "type ceafe44da26b",
"ExecutorNodeContext": "type 7f86daa88edc",
"ExecutorProgress": "type c91983468166",
"ExecutorProgressEvent": "type 19b8d5b7224e",
"ExecutorRegistry": "type 2abca0065370",
"ExecutorResult": "type ab419e4881b2",
"ExecutorResultMapping": "type 928060ab7f4f",
"ExecutorTeardownWarning": "type 1ab2ac0f50c9",
"ExecutorToolCall": "type 56fd90955bd7",
"Fanout": "type d2570033354a",
"FanoutOptions": "type ee8f81c742a8",
"FanoutSynthesis": "type 96247d7ebea1",
"FanoutWinnerSelector": "type 89624289dfa4",
"FileCoordinationLog": "value bd8f02ee8c2c",
"FileCorpus": "value ac872ff9718b",
"FileResultBlobStore": "value a464e1a75d77",
"FileSpawnJournal": "value aead755d0085",
"FinalizeContext": "type e45cea6eacef",
"FinalizerSettled": "type c525a06427fc",
"FlatWidenGate": "type 825b8b585b72",
"ForkCapableBox": "type 87d9804bb9f3",
"ForkRequest": "type 7cd1fb62a8d3",
"GitWorkspaceOptions": "type 47832f185060",
"GraphEdge": "type 701ce1d925e2",
"GraphEdgeCapError": "value bfc1c053a15e",
"GraphNode": "type 2401c6812e75",
"GraphResult": "type 9a2057bac283",
"GroupOf": "type 40205210c0cb",
"Handle": "type 2022f38d425c",
"HarnessUsage": "type 49b62b4cb06e",
"HarvestCorpusOptions": "type 0a848c6cece4",
"HarvestError": "value 24d31a2ce396",
"HarvestFailure": "type f97e2b8987f7",
"HarvestReport": "type 790868689567",
"HarvestSurfaceDiffsOptions": "type 113b350f8501",
"InMemoryCorpus": "value 93113eee5efb",
"InMemoryResultBlobStore": "value b1dde23cc070",
"InMemoryRunContext": "type 03f98a01b16e",
"InMemoryRunContextOptions": "type 2a6c74b5ce6c",
"InMemorySpawnJournal": "value 07f46acfd592",
"InPlaceCliExecutorOptions": "type 78b55d7dc46d",
"InPlaceHarnessResult": "type 5b14993cdbe6",
"InProcessOnPrompt": "type 91fc314f0d37",
"InProcessPromptCtx": "type a936c45bd2df",
"InProcessSandboxClientOptions": "type 7cc5f24f2c04",
"Inbox": "type e6fd66233c57",
"InboxMessage": "type dda78341c99d",
"IntentAudit": "type 807ae442590f",
"InteractiveWorkerEnvironment": "type beec94668a8f",
"InteractiveWorkerKeyInput": "type a4a14f56a0f7",
"InteractiveWorkerOptions": "type b471fefe2e84",
"InteractiveWorkerResult": "type 019701624429",
"Interval": "type 7beacbf4a336",
"IsolatedCheckOptions": "type c0648ebd04db",
"IsolatedCheckResult": "type 105120ddd047",
"Iteration": "type 5370c086cdd2",
"KeyProvider": "type 0ad3a4b60a7f",
"Leaderboard": "type 5664041325d1",
"LeaderboardBenchScore": "type ef7cb230f39b",
"LeaderboardBenchTask": "type 025d9b2f2116",
"LeaderboardBenchmarkAdapter": "type bf8a4794ec7f",
"LeaderboardFlagSpec": "type 3a799300f872",
"LeaderboardIterationInfo": "type b4781152345d",
"LeaderboardOptions": "type bd52edd10a7f",
"LeaderboardRow": "type a0a908c07af7",
"LeaderboardRunContext": "type 9e81c42a37be",
"LeaderboardScenario": "type f3a246ea4966",
"LeaderboardScore": "type 2388077227bf",
"LeaderboardSpec": "type 8ef69342d68e",
"LocalMcpMaterialization": "type e23535541c6c",
"LocalSandboxClientOptions": "type 5e240abc6919",
"LoopCampaignDispatchOptions": "type 599583b169b1",
"LoopDecisionPayload": "type ea64035c87e0",
"LoopDispatchOptions": "type 4345e4354af6",
"LoopEndedPayload": "type cec1d3954f09",
"LoopIterationDispatchPayload": "type efd3fa34642f",
"LoopIterationEndedPayload": "type 4735d9d988bd",
"LoopIterationStartedPayload": "type 36344ffaa2f1",
"LoopLineageOptions": "type 18651bcfeab9",
"LoopOptionsForDispatch": "type f04ec83b947a",
"LoopPlanDescription": "type 76b21ce0ef26",
"LoopPlanPayload": "type 43448c05358d",
"LoopResult": "type 25d8a3e038fb",
"LoopSandboxPlacement": "type a99e4be1736f",
"LoopShape": "type 8925f5e259c9",
"LoopStartedPayload": "type a552ef7496eb",