-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscaffold_index.json
More file actions
1947 lines (1947 loc) · 93.8 KB
/
Copy pathscaffold_index.json
File metadata and controls
1947 lines (1947 loc) · 93.8 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
{
"schema_version": "1.0",
"description": "Composition IDs across SRC for cross-SRC navigation",
"index": {
"SRC-0001": [
"SRC-0001/rule/context-window-baseline-tokens",
"SRC-0001/rule/context-window-remaining-full",
"SRC-0001/rule/readonly-policy-default",
"SRC-0001/rule/workspace-write-policy-default",
"SRC-0001/rule/workspace-write-readable-includes-writable",
"SRC-0001/rule/writable-root-path-check",
"SRC-0001/rule/read-only-subpaths-protect-infra",
"SRC-0001/rule/gitdir-pointer-resolution",
"SRC-0001/rule/slash-tmp-only-on-unix",
"SRC-0001/rule/tmpdir-env-inclusion",
"SRC-0001/rule/danger-full-access-flags",
"SRC-0001/rule/readonly-network-access-flag",
"SRC-0001/rule/sandbox-permissions-semantics",
"SRC-0001/rule/granular-mcp-elicitation-flag",
"SRC-0001/rule/granular-default-skill-and-request-perms",
"SRC-0001/rule/granular-sandbox-requires-approval-category",
"SRC-0001/rule/granular-request-permissions-tool-gating",
"SRC-0001/rule/guardian-subagent-suffix-applicability",
"SRC-0001/rule/prefix-list-rendering-limits",
"SRC-0001/rule/prefix-list-sort-order",
"SRC-0001/rule/op-kind-taxonomy",
"SRC-0001/rule/user-input-answer-serde-alias",
"SRC-0001/rule/turn-started-complete-wire-aliases",
"SRC-0001/rule/function-call-output-wire-shape",
"SRC-0001/rule/function-call-output-image-array-shape",
"SRC-0001/rule/data-url-preservation",
"SRC-0001/rule/data-url-construction",
"SRC-0001/rule/image-detail-original-only",
"SRC-0001/rule/convert-mcp-content-no-images-returns-none",
"SRC-0001/rule/function-call-output-text-drops-images",
"SRC-0001/rule/function-call-output-text-blank-only-none",
"SRC-0001/rule/response-item-compaction-alias",
"SRC-0001/rule/image-gen-call-revised-prompt-optional",
"SRC-0001/rule/permission-profile-empty-semantics",
"SRC-0001/rule/thread-id-default-not-nil",
"SRC-0001/rule/thread-id-wire-is-string",
"SRC-0001/rule/mcp-auth-display-strings",
"SRC-0001/rule/op-from-vec-user-input-defaults",
"SRC-0001/rule/user-input-empty-items-wire-shape",
"SRC-0001/rule/user-input-with-schema-wire-shape",
"SRC-0001/rule/realtime-voice-wire-names",
"SRC-0001/rule/realtime-voice-list-builtin",
"SRC-0001/rule/conversation-start-prompt-double-option",
"SRC-0001/rule/review-decision-opaque-labels",
"SRC-0001/rule/review-decision-default-denied",
"SRC-0001/rule/session-source-default-vscode",
"SRC-0001/rule/session-source-parse-aliases",
"SRC-0001/rule/session-source-thread-name",
"SRC-0001/rule/session-source-restriction-product",
"SRC-0001/rule/product-case-insensitive-from-session",
"SRC-0001/rule/product-match-empty-products-allows",
"SRC-0001/rule/ask-for-approval-default-on-request",
"SRC-0001/rule/ask-for-approval-untrusted-wire",
"SRC-0001/rule/sandbox-policy-danger-full-access-wire",
"SRC-0001/rule/collab-event-into-event-msg",
"SRC-0001/rule/mcp-tool-call-is-success",
"SRC-0001/rule/codex-error-not-affects-turn-status",
"SRC-0001/rule/error-event-default-affects-turn",
"SRC-0001/rule/function-call-namespace-optional",
"SRC-0001/rule/tool-search-server-allow-null-call-id",
"SRC-0001/rule/shell-tool-call-timeout-alias",
"SRC-0001/rule/message-phase-none-is-legacy",
"SRC-0001/rule/turn-item-hook-prompt-plan-no-legacy",
"SRC-0001/rule/reasoning-raw-content-gated",
"SRC-0001/rule/hook-prompt-empty-hook-run-id",
"SRC-0001/rule/hook-prompt-roundtrip",
"SRC-0001/rule/hook-prompt-legacy-single-hook",
"SRC-0001/rule/user-input-image-wrap-tags",
"SRC-0001/rule/mixed-images-share-label-sequence",
"SRC-0001/rule/local-image-read-error-placeholder",
"SRC-0001/rule/local-image-unsupported-format-placeholder",
"SRC-0001/rule/local-image-non-image-placeholder",
"SRC-0001/rule/user-input-skill-mention-empty",
"SRC-0001/rule/compacted-item-to-assistant-message",
"SRC-0001/rule/inter-agent-communication-serde-roundtrip",
"SRC-0001/rule/truncation-policy-multiplier-ceil",
"SRC-0001/rule/truncation-policy-token-budget-fallback",
"SRC-0001/rule/turn-context-item-persist-timing",
"SRC-0001/rule/realtime-voices-order-sorted",
"SRC-0001/entity/submission",
"SRC-0001/entity/op",
"SRC-0001/entity/user-turn",
"SRC-0001/entity/event",
"SRC-0001/entity/event-msg",
"SRC-0001/entity/turn-item",
"SRC-0001/entity/user-message-item",
"SRC-0001/entity/agent-message-item",
"SRC-0001/entity/reasoning-item",
"SRC-0001/entity/web-search-item",
"SRC-0001/entity/image-generation-item",
"SRC-0001/entity/hook-prompt-item",
"SRC-0001/entity/hook-prompt-fragment",
"SRC-0001/entity/plan-item",
"SRC-0001/entity/context-compaction-item",
"SRC-0001/entity/response-item",
"SRC-0001/entity/response-input-item",
"SRC-0001/entity/content-item",
"SRC-0001/entity/message-phase",
"SRC-0001/entity/image-detail",
"SRC-0001/entity/web-search-action",
"SRC-0001/entity/function-call-output-payload",
"SRC-0001/entity/local-shell-action",
"SRC-0001/entity/local-shell-exec-action",
"SRC-0001/entity/thread-id",
"SRC-0001/entity/tool-name",
"SRC-0001/entity/sandbox-policy",
"SRC-0001/entity/read-only-access",
"SRC-0001/entity/writable-root",
"SRC-0001/entity/ask-for-approval",
"SRC-0001/entity/granular-approval-config",
"SRC-0001/entity/network-access",
"SRC-0001/entity/inter-agent-communication",
"SRC-0001/entity/session-meta",
"SRC-0001/entity/session-source",
"SRC-0001/entity/sub-agent-source",
"SRC-0001/entity/product",
"SRC-0001/entity/rollout-item",
"SRC-0001/entity/turn-context-item",
"SRC-0001/entity/initial-history",
"SRC-0001/entity/token-usage",
"SRC-0001/entity/token-usage-info",
"SRC-0001/entity/rate-limit-snapshot",
"SRC-0001/entity/rate-limit-window",
"SRC-0001/entity/credits-snapshot",
"SRC-0001/entity/token-count-event",
"SRC-0001/entity/turn-started-event",
"SRC-0001/entity/turn-complete-event",
"SRC-0001/entity/turn-aborted-event",
"SRC-0001/entity/codex-error-info",
"SRC-0001/entity/error-event",
"SRC-0001/entity/agent-status",
"SRC-0001/entity/realtime-voice",
"SRC-0001/entity/realtime-voices-list",
"SRC-0001/entity/realtime-output-modality",
"SRC-0001/entity/conversation-start-params",
"SRC-0001/entity/realtime-event",
"SRC-0001/entity/realtime-audio-frame",
"SRC-0001/entity/truncation-policy",
"SRC-0001/entity/session-configured-event",
"SRC-0001/entity/review-decision",
"SRC-0001/entity/review-request",
"SRC-0001/entity/review-output-event",
"SRC-0001/entity/review-finding",
"SRC-0001/entity/exec-command-begin-event",
"SRC-0001/entity/exec-command-end-event",
"SRC-0001/entity/exec-command-output-delta-event",
"SRC-0001/entity/patch-apply-begin-event",
"SRC-0001/entity/patch-apply-end-event",
"SRC-0001/entity/mcp-tool-call-begin-event",
"SRC-0001/entity/mcp-tool-call-end-event",
"SRC-0001/entity/mcp-auth-status",
"SRC-0001/entity/mcp-startup-status",
"SRC-0001/entity/mcp-startup-complete-event",
"SRC-0001/entity/mcp-list-tools-response-event",
"SRC-0001/entity/skill-metadata",
"SRC-0001/entity/skill-interface",
"SRC-0001/entity/skills-list-entry",
"SRC-0001/entity/hook-run-summary",
"SRC-0001/entity/agent-path",
"SRC-0001/entity/thread-memory-mode",
"SRC-0001/entity/file-change",
"SRC-0001/entity/compacted-item",
"SRC-0001/entity/base-instructions",
"SRC-0001/entity/shell-tool-call-params",
"SRC-0001/entity/shell-command-tool-call-params",
"SRC-0001/entity/search-tool-call-params",
"SRC-0001/entity/sandbox-permissions",
"SRC-0001/entity/permission-profile",
"SRC-0001/entity/model-reroute-event",
"SRC-0001/entity/collab-agent-ref",
"SRC-0001/entity/collab-events",
"SRC-0001/uc.sub/convert-turn-item-to-legacy-events",
"SRC-0001/uc.sub/convert-user-input-to-legacy-event",
"SRC-0001/uc.sub/build-hook-prompt-message",
"SRC-0001/uc.sub/parse-hook-prompt-message",
"SRC-0001/uc.sub/serialize-function-call-output-payload",
"SRC-0001/uc.sub/deserialize-function-call-output-payload",
"SRC-0001/uc.sub/convert-user-inputs-to-response-input",
"SRC-0001/uc.sub/convert-response-input-to-response-item",
"SRC-0001/uc.sub/convert-mcp-call-tool-result-to-payload",
"SRC-0001/uc.sub/compute-writable-roots-with-cwd",
"SRC-0001/uc.sub/compute-read-only-subpaths-for-root",
"SRC-0001/uc.sub/compute-readable-roots-with-cwd",
"SRC-0001/uc.sub/compute-percent-of-context-window-remaining",
"SRC-0001/uc.sub/append-token-usage",
"SRC-0001/uc.sub/fill-token-usage-to-context-window",
"SRC-0001/uc.sub/parse-session-source-from-arg",
"SRC-0001/uc.sub/match-session-to-product-restriction",
"SRC-0001/uc.sub/build-developer-instructions-from-policy",
"SRC-0001/uc.sub/sandbox-text-from-mode",
"SRC-0001/uc.sub/convert-compacted-item-to-response-item",
"SRC-0001/uc.sub/scan-initial-history",
"SRC-0001/uc.sub/serialize-thread-id",
"SRC-0001/uc.sub/display-tool-name",
"SRC-0001/uc.sub/compute-codex-error-affects-turn-status",
"SRC-0001/uc.sub/determine-mcp-tool-call-success",
"SRC-0001/uc.sub/convert-collab-event-to-event-msg",
"SRC-0001/uc.sub/derive-truncation-budget",
"SRC-0001/uc.sub/render-writable-root-path",
"SRC-0001/uc.sub/resolve-gitdir-pointer"
],
"SRC-0002": [
"SRC-0002/rule/file-system-access-mode-conflict-precedence",
"SRC-0002/rule/file-system-access-mode-derived-capabilities",
"SRC-0002/rule/network-sandbox-policy-default-restricted",
"SRC-0002/rule/file-system-sandbox-policy-default",
"SRC-0002/rule/has-full-disk-read-access",
"SRC-0002/rule/has-full-disk-write-access",
"SRC-0002/rule/include-platform-defaults-criterion",
"SRC-0002/rule/resolve-access-precedence",
"SRC-0002/rule/restricted-implicit-deny",
"SRC-0002/rule/can-read-path-derived",
"SRC-0002/rule/with-additional-readable-roots-skip-existing",
"SRC-0002/rule/with-additional-writable-roots-skip-existing",
"SRC-0002/rule/legacy-projection-strips-redundant-readable-under-writable",
"SRC-0002/rule/legacy-projection-protects-cwd-dot-codex-eagerly",
"SRC-0002/rule/legacy-projection-supports-relative-cwd",
"SRC-0002/rule/to-legacy-rejects-writes-outside-workspace-root",
"SRC-0002/rule/to-legacy-full-disk-write-collapses",
"SRC-0002/rule/to-legacy-unknown-special-path-ignored",
"SRC-0002/rule/needs-direct-runtime-enforcement-criterion",
"SRC-0002/rule/default-readonly-subpaths-set",
"SRC-0002/rule/explicit-rule-wins-over-default-codex-carveout",
"SRC-0002/rule/preserve-symlinked-protected-subpaths",
"SRC-0002/rule/has-write-narrowing-special-rules",
"SRC-0002/rule/special-paths-share-target-rules",
"SRC-0002/rule/special-path-cwd-independent-folding",
"SRC-0002/rule/resolve-special-path-tmpdir-from-env",
"SRC-0002/rule/resolve-entry-path-root-from-cwd",
"SRC-0002/rule/dedup-absolute-paths-modes",
"SRC-0002/rule/normalize-falls-back-to-input",
"SRC-0002/rule/git-pointer-file-detection",
"SRC-0002/rule/resolve-gitdir-from-pointer-error-cases",
"SRC-0002/rule/exec-policy-amendment-prefix-rule-semantics",
"SRC-0002/rule/network-approval-protocol-https-aliases",
"SRC-0002/rule/effective-approval-id-fallback",
"SRC-0002/rule/effective-available-decisions-legacy-fallback",
"SRC-0002/rule/default-available-decisions-network-branch",
"SRC-0002/rule/default-available-decisions-additional-permissions-branch",
"SRC-0002/rule/default-available-decisions-default-branch",
"SRC-0002/rule/guardian-event-omits-fields-while-in-progress",
"SRC-0002/rule/is-ask-from-decider-conjunction",
"SRC-0002/rule/serde-tag-conventions",
"SRC-0002/entity/permissions",
"SRC-0002/entity/escalation-permissions",
"SRC-0002/entity/exec-policy-amendment",
"SRC-0002/entity/network-approval-protocol",
"SRC-0002/entity/network-approval-context",
"SRC-0002/entity/network-policy-rule-action",
"SRC-0002/entity/network-policy-amendment",
"SRC-0002/entity/guardian-risk-level",
"SRC-0002/entity/guardian-user-authorization",
"SRC-0002/entity/guardian-assessment-status",
"SRC-0002/entity/guardian-assessment-decision-source",
"SRC-0002/entity/guardian-command-source",
"SRC-0002/entity/guardian-assessment-action",
"SRC-0002/entity/guardian-assessment-event",
"SRC-0002/entity/exec-approval-request-event",
"SRC-0002/entity/elicitation-request",
"SRC-0002/entity/elicitation-request-event",
"SRC-0002/entity/elicitation-action",
"SRC-0002/entity/apply-patch-approval-request-event",
"SRC-0002/entity/network-policy-decision-payload",
"SRC-0002/entity/network-sandbox-policy",
"SRC-0002/entity/file-system-access-mode",
"SRC-0002/entity/file-system-special-path",
"SRC-0002/entity/file-system-path",
"SRC-0002/entity/file-system-sandbox-entry",
"SRC-0002/entity/file-system-sandbox-kind",
"SRC-0002/entity/file-system-sandbox-policy",
"SRC-0002/entity/writable-root-protected-subpaths",
"SRC-0002/uc.sub/build-default-available-decisions",
"SRC-0002/uc.sub/effective-available-decisions",
"SRC-0002/uc.sub/effective-approval-id",
"SRC-0002/uc.sub/resolve-filesystem-access",
"SRC-0002/uc.sub/project-from-legacy-sandbox-policy",
"SRC-0002/uc.sub/project-to-legacy-sandbox-policy",
"SRC-0002/uc.sub/check-direct-runtime-enforcement",
"SRC-0002/uc.sub/derive-default-readonly-subpaths",
"SRC-0002/uc.sub/resolve-gitdir-from-pointer-file",
"SRC-0002/uc.sub/get-writable-roots-with-carveouts",
"SRC-0002/uc.sub/extend-with-additional-readable-roots",
"SRC-0002/uc.sub/extend-with-additional-writable-roots",
"SRC-0002/uc.sub/get-unreadable-roots",
"SRC-0002/uc.sub/derive-network-sandbox-from-legacy",
"SRC-0002/uc.sub/derive-filesystem-policy-from-legacy",
"SRC-0002/uc.sub/dedup-and-normalize-paths",
"SRC-0002/uc.sub/check-write-narrowing",
"SRC-0002/uc.sub/check-ask-from-decider"
],
"SRC-0003": [
"SRC-0003/rule/agent-name-charset",
"SRC-0003/rule/agent-name-non-empty",
"SRC-0003/rule/agent-name-reserved",
"SRC-0003/rule/agent-name-no-slash",
"SRC-0003/rule/agent-path-must-start-with-root",
"SRC-0003/rule/agent-path-no-trailing-slash",
"SRC-0003/rule/agent-path-non-empty-resolve",
"SRC-0003/rule/known-plan-raw-aliases",
"SRC-0003/rule/known-plan-case-insensitive",
"SRC-0003/rule/known-plan-unknown-preserves-raw",
"SRC-0003/rule/account-plan-wire-names",
"SRC-0003/rule/account-plan-family-helpers",
"SRC-0003/rule/known-plan-workspace-account",
"SRC-0003/rule/provider-auth-default-timeout",
"SRC-0003/rule/provider-auth-default-refresh",
"SRC-0003/rule/provider-auth-deny-unknown-fields",
"SRC-0003/rule/provider-auth-cwd-fallback",
"SRC-0003/rule/auto-compact-token-limit-clamp",
"SRC-0003/rule/effective-context-window-default",
"SRC-0003/rule/default-input-modalities",
"SRC-0003/rule/personality-placeholder-substitution",
"SRC-0003/rule/personality-template-fallback",
"SRC-0003/rule/personality-none-empty-message",
"SRC-0003/rule/personality-default-fallback",
"SRC-0003/rule/instructions-variables-completeness",
"SRC-0003/rule/reasoning-effort-rank",
"SRC-0003/rule/reasoning-effort-fromstr",
"SRC-0003/rule/model-preset-default-effort-fallback",
"SRC-0003/rule/model-preset-show-in-picker",
"SRC-0003/rule/model-preset-mark-default",
"SRC-0003/rule/model-preset-supports-fast-mode",
"SRC-0003/rule/model-preset-filter-by-auth",
"SRC-0003/rule/mode-kind-aliases-to-default",
"SRC-0003/rule/mode-kind-tui-visible",
"SRC-0003/rule/mode-kind-allows-user-input",
"SRC-0003/rule/collaboration-mask-clear-semantics",
"SRC-0003/rule/web-search-merge-overlay-priority",
"SRC-0003/rule/web-search-location-merge",
"SRC-0003/rule/codex-err-retryable-set",
"SRC-0003/rule/codex-err-protocol-mapping",
"SRC-0003/rule/codex-err-http-status-extraction",
"SRC-0003/rule/error-message-ui-budget",
"SRC-0003/rule/sandbox-denied-message-source",
"SRC-0003/rule/sandbox-timeout-message",
"SRC-0003/rule/unexpected-response-body-truncation",
"SRC-0003/rule/unexpected-response-empty-body",
"SRC-0003/rule/unexpected-response-cloudflare-friendly",
"SRC-0003/rule/unexpected-response-extract-message",
"SRC-0003/rule/usage-limit-custom-limit-name",
"SRC-0003/rule/usage-limit-codex-limit-skipped",
"SRC-0003/rule/usage-limit-by-plan",
"SRC-0003/rule/retry-suffix-format",
"SRC-0003/rule/format-retry-timestamp-same-day",
"SRC-0003/rule/day-suffix-rules",
"SRC-0003/rule/format-si-suffix-units",
"SRC-0003/rule/format-si-suffix-non-negative",
"SRC-0003/rule/locale-formatter-fallback",
"SRC-0003/rule/refresh-token-error-display",
"SRC-0003/rule/cancel-err-into-turn-aborted",
"SRC-0003/rule/env-var-error-display",
"SRC-0003/rule/web-search-deny-unknown-fields",
"SRC-0003/rule/sandbox-mode-default-readonly",
"SRC-0003/rule/approvals-reviewer-default-user",
"SRC-0003/rule/windows-sandbox-default-disabled",
"SRC-0003/rule/alt-screen-default-auto",
"SRC-0003/entity/account-plan",
"SRC-0003/entity/agent-path",
"SRC-0003/entity/known-plan",
"SRC-0003/entity/auth-plan-type",
"SRC-0003/entity/refresh-token-failed-error",
"SRC-0003/entity/refresh-token-failed-reason",
"SRC-0003/entity/reasoning-summary",
"SRC-0003/entity/verbosity",
"SRC-0003/entity/sandbox-mode",
"SRC-0003/entity/approvals-reviewer",
"SRC-0003/entity/windows-sandbox-level",
"SRC-0003/entity/personality",
"SRC-0003/entity/web-search-mode",
"SRC-0003/entity/web-search-context-size",
"SRC-0003/entity/web-search-location",
"SRC-0003/entity/web-search-tool-config",
"SRC-0003/entity/web-search-filters",
"SRC-0003/entity/web-search-user-location",
"SRC-0003/entity/web-search-config",
"SRC-0003/entity/service-tier",
"SRC-0003/entity/forced-login-method",
"SRC-0003/entity/model-provider-auth-info",
"SRC-0003/entity/trust-level",
"SRC-0003/entity/alt-screen-mode",
"SRC-0003/entity/mode-kind",
"SRC-0003/entity/collaboration-mode",
"SRC-0003/entity/settings",
"SRC-0003/entity/collaboration-mode-mask",
"SRC-0003/entity/reasoning-effort",
"SRC-0003/entity/input-modality",
"SRC-0003/entity/reasoning-effort-preset",
"SRC-0003/entity/model-upgrade",
"SRC-0003/entity/model-availability-nux",
"SRC-0003/entity/model-preset",
"SRC-0003/entity/model-visibility",
"SRC-0003/entity/config-shell-tool-type",
"SRC-0003/entity/apply-patch-tool-type",
"SRC-0003/entity/web-search-tool-type",
"SRC-0003/entity/truncation-policy-config",
"SRC-0003/entity/client-version",
"SRC-0003/entity/model-info",
"SRC-0003/entity/model-messages",
"SRC-0003/entity/model-instructions-variables",
"SRC-0003/entity/model-info-upgrade",
"SRC-0003/entity/models-response",
"SRC-0003/entity/sandbox-err",
"SRC-0003/entity/codex-err",
"SRC-0003/entity/connection-failed-error",
"SRC-0003/entity/response-stream-failed",
"SRC-0003/entity/unexpected-response-error",
"SRC-0003/entity/retry-limit-reached-error",
"SRC-0003/entity/usage-limit-reached-error",
"SRC-0003/entity/env-var-error",
"SRC-0003/uc.sub/build-agent-path",
"SRC-0003/uc.sub/resolve-agent-reference",
"SRC-0003/uc.sub/derive-plan-from-raw",
"SRC-0003/uc.sub/render-usage-limit-message",
"SRC-0003/uc.sub/render-unexpected-response",
"SRC-0003/uc.sub/format-ui-error-message",
"SRC-0003/uc.sub/classify-codex-error",
"SRC-0003/uc.sub/build-model-instructions",
"SRC-0003/uc.sub/select-personality-message",
"SRC-0003/uc.sub/derive-auto-compact-limit",
"SRC-0003/uc.sub/build-model-preset",
"SRC-0003/uc.sub/filter-presets-by-auth",
"SRC-0003/uc.sub/mark-default-preset",
"SRC-0003/uc.sub/map-reasoning-efforts",
"SRC-0003/uc.sub/apply-collaboration-mode-mask",
"SRC-0003/uc.sub/merge-web-search-config",
"SRC-0003/uc.sub/format-token-count"
],
"SRC-0004": [
"SRC-0004/rule/max-user-input-text-chars",
"SRC-0004/rule/defer-loading-fallback-from-expose-to-context",
"SRC-0004/rule/defer-loading-default",
"SRC-0004/rule/utf8-fast-path",
"SRC-0004/rule/empty-bytes-empty-string",
"SRC-0004/rule/ibm866-to-windows-1252-coercion-allowlist",
"SRC-0004/rule/ibm866-coercion-disqualifiers",
"SRC-0004/rule/decode-had-errors-fallback",
"SRC-0004/rule/exec-tool-call-output-defaults",
"SRC-0004/rule/lossy-opt-i64-bounds",
"SRC-0004/rule/permission-grant-scope-default",
"SRC-0004/rule/request-permission-profile-is-empty",
"SRC-0004/rule/request-permission-profile-deny-unknown-fields",
"SRC-0004/rule/turn-id-default-empty-for-backwards-compat",
"SRC-0004/rule/update-plan-args-deny-unknown-fields",
"SRC-0004/rule/step-status-enum",
"SRC-0004/rule/parsed-command-tagged-variants",
"SRC-0004/rule/parsed-command-read-path-resolution",
"SRC-0004/rule/dynamic-tool-content-item-tag",
"SRC-0004/rule/request-id-untagged",
"SRC-0004/rule/text-element-placeholder-fallback",
"SRC-0004/rule/text-element-map-range-preserves-placeholder",
"SRC-0004/rule/byte-range-from-std-range",
"SRC-0004/rule/local-image-converted-to-image-on-serialization",
"SRC-0004/rule/user-input-non-exhaustive",
"SRC-0004/rule/text-elements-default-empty",
"SRC-0004/rule/mention-path-namespacing",
"SRC-0004/rule/is-other-is-secret-defaults",
"SRC-0004/rule/answers-keyed-by-question-id",
"SRC-0004/rule/wire-camel-case-with-snake-aliases",
"SRC-0004/rule/meta-renamed-from-underscore",
"SRC-0004/entity/dynamic-tool-spec",
"SRC-0004/entity/dynamic-tool-call-request",
"SRC-0004/entity/dynamic-tool-response",
"SRC-0004/entity/dynamic-tool-call-output-content-item",
"SRC-0004/entity/stream-output",
"SRC-0004/entity/exec-tool-call-output",
"SRC-0004/entity/windows-1252-punct-bytes",
"SRC-0004/entity/request-id",
"SRC-0004/entity/mcp-tool",
"SRC-0004/entity/mcp-resource",
"SRC-0004/entity/resource-content",
"SRC-0004/entity/resource-template",
"SRC-0004/entity/call-tool-result",
"SRC-0004/entity/memory-citation",
"SRC-0004/entity/memory-citation-entry",
"SRC-0004/entity/history-entry",
"SRC-0004/entity/parsed-command",
"SRC-0004/entity/plan-item-arg",
"SRC-0004/entity/update-plan-args",
"SRC-0004/entity/permission-grant-scope",
"SRC-0004/entity/request-permission-profile",
"SRC-0004/entity/request-permissions-args",
"SRC-0004/entity/request-permissions-response",
"SRC-0004/entity/request-permissions-event",
"SRC-0004/entity/request-user-input-question-option",
"SRC-0004/entity/request-user-input-question",
"SRC-0004/entity/request-user-input-args",
"SRC-0004/entity/request-user-input-answer",
"SRC-0004/entity/request-user-input-response",
"SRC-0004/entity/request-user-input-event",
"SRC-0004/entity/user-input",
"SRC-0004/entity/text-element",
"SRC-0004/entity/byte-range",
"SRC-0004/uc.user/grant-permissions-request",
"SRC-0004/uc.user/answer-user-input-request",
"SRC-0004/uc.sub/decode-shell-stream-bytes",
"SRC-0004/uc.sub/deserialize-dynamic-tool-spec-with-legacy-fallback",
"SRC-0004/uc.sub/adapt-mcp-wire-value-to-protocol-type",
"SRC-0004/uc.sub/serialize-local-image-to-data-url",
"SRC-0004/uc.sub/track-text-element-spans",
"SRC-0004/uc.sub/update-todo-plan"
],
"SRC-0005": [
"SRC-0005/rule/log-partition-size-limit",
"SRC-0005/rule/log-partition-row-limit",
"SRC-0005/rule/single-oversized-log-row-removed",
"SRC-0005/rule/log-retention-window",
"SRC-0005/rule/feedback-logs-bytes-cap",
"SRC-0005/rule/feedback-logs-latest-process-only",
"SRC-0005/rule/empty-thread-list-feedback-shortcut",
"SRC-0005/rule/db-filename-versioning",
"SRC-0005/rule/legacy-cleanup-sort-order",
"SRC-0005/rule/state-db-incremental-auto-vacuum",
"SRC-0005/rule/sqlite-pool-options",
"SRC-0005/rule/runtime-migrator-tolerates-newer-versions",
"SRC-0005/rule/agent-job-cancellation-only-from-pending-or-running",
"SRC-0005/rule/agent-job-item-result-atomic-completion",
"SRC-0005/rule/agent-job-item-attempt-counter",
"SRC-0005/rule/agent-job-item-completed-requires-result",
"SRC-0005/rule/backfill-singleton-row",
"SRC-0005/rule/backfill-claim-singleton-with-lease",
"SRC-0005/rule/backfill-blocked-after-complete",
"SRC-0005/rule/backfill-complete-preserves-watermark",
"SRC-0005/rule/remote-control-key-app-server-client-name",
"SRC-0005/rule/thread-spawn-edge-one-parent-per-child",
"SRC-0005/rule/thread-spawn-descendants-bfs-order",
"SRC-0005/rule/thread-spawn-find-by-path-uniqueness",
"SRC-0005/rule/thread-list-excludes-empty-first-message",
"SRC-0005/rule/thread-list-pagination-anchor-tiebreak",
"SRC-0005/rule/thread-updated-at-monotonic-millis",
"SRC-0005/rule/thread-updated-at-legacy-seconds-promotion",
"SRC-0005/rule/thread-upsert-preserves-creation-memory-mode",
"SRC-0005/rule/thread-default-memory-mode-enabled",
"SRC-0005/rule/insert-thread-if-absent-noop-on-existing",
"SRC-0005/rule/update-thread-git-info-conditional",
"SRC-0005/rule/apply-rollout-prefer-existing-git-info",
"SRC-0005/rule/apply-rollout-memory-mode-from-last-meta",
"SRC-0005/rule/apply-rollout-updated-at-priority",
"SRC-0005/rule/dynamic-tools-once-per-thread",
"SRC-0005/rule/stage1-claim-skip-up-to-date",
"SRC-0005/rule/stage1-claim-max-running-jobs",
"SRC-0005/rule/stage1-default-retry-remaining",
"SRC-0005/rule/stage1-claim-retry-window",
"SRC-0005/rule/stage1-startup-claim-window",
"SRC-0005/rule/stage1-output-upsert-condition",
"SRC-0005/rule/stage1-success-no-output-deletes-and-enqueues",
"SRC-0005/rule/stage1-ownership-required-for-finalization",
"SRC-0005/rule/global-phase2-singleton-job-key",
"SRC-0005/rule/global-phase2-claim-skip-not-dirty",
"SRC-0005/rule/global-phase2-success-watermark-monotonic",
"SRC-0005/rule/phase2-baseline-rewrite-on-success",
"SRC-0005/rule/global-phase2-failed-decrements-retry",
"SRC-0005/rule/enqueue-global-consolidation-always-bumps",
"SRC-0005/rule/get-phase2-input-selection-eligibility",
"SRC-0005/rule/phase2-removed-and-retained-diff",
"SRC-0005/rule/list-stage1-outputs-non-empty-only",
"SRC-0005/rule/prune-stage1-respects-baseline",
"SRC-0005/rule/record-stage1-usage-increments",
"SRC-0005/rule/clear-memory-data-scope",
"SRC-0005/rule/mark-thread-polluted-conditional-enqueue",
"SRC-0005/rule/agent-job-status-enum",
"SRC-0005/rule/feedback-log-line-format",
"SRC-0005/entity/state-runtime",
"SRC-0005/entity/thread",
"SRC-0005/entity/dynamic-tool",
"SRC-0005/entity/thread-spawn-edge",
"SRC-0005/entity/log-entry",
"SRC-0005/entity/log-query",
"SRC-0005/entity/agent-job",
"SRC-0005/entity/agent-job-item",
"SRC-0005/entity/backfill-state",
"SRC-0005/entity/remote-control-enrollment",
"SRC-0005/entity/stage1-output",
"SRC-0005/entity/job",
"SRC-0005/entity/stage1-startup-claim-params",
"SRC-0005/entity/state-database",
"SRC-0005/entity/logs-database",
"SRC-0005/uc.user/initialize-state-runtime",
"SRC-0005/uc.user/persist-thread-from-rollout",
"SRC-0005/uc.user/list-threads-with-pagination",
"SRC-0005/uc.user/archive-thread",
"SRC-0005/uc.user/insert-and-prune-logs",
"SRC-0005/uc.user/query-feedback-logs-for-threads",
"SRC-0005/uc.user/run-batch-agent-job",
"SRC-0005/uc.user/coordinate-rollout-backfill",
"SRC-0005/uc.user/upsert-remote-control-enrollment",
"SRC-0005/uc.user/run-thread-memory-extraction",
"SRC-0005/uc.user/consolidate-global-memory",
"SRC-0005/uc.user/mark-thread-memory-polluted",
"SRC-0005/uc.user/clear-memory-data",
"SRC-0005/uc.user/track-thread-spawn-tree",
"SRC-0005/uc.sub/allocate-monotonic-thread-updated-at",
"SRC-0005/uc.sub/migrate-and-version-databases"
],
"SRC-0006": [
"SRC-0006/rule/log-queue-capacity",
"SRC-0006/rule/log-batch-flush",
"SRC-0006/rule/process-uuid-format",
"SRC-0006/rule/agent-job-status-enum",
"SRC-0006/rule/agent-job-status-final",
"SRC-0006/rule/agent-job-item-status-enum",
"SRC-0006/rule/backfill-status-enum",
"SRC-0006/rule/backfill-state-default",
"SRC-0006/rule/directional-thread-spawn-edge-status-enum",
"SRC-0006/rule/sort-key-enum",
"SRC-0006/rule/legacy-epoch-millis-conversion",
"SRC-0006/rule/datetime-canonicalization",
"SRC-0006/rule/tokens-used-non-negative",
"SRC-0006/rule/session-meta-thread-id-match",
"SRC-0006/rule/turn-context-cwd-precedence",
"SRC-0006/rule/first-user-message-only-from-event-msg",
"SRC-0006/rule/first-user-message-write-once",
"SRC-0006/rule/image-only-user-message-placeholder",
"SRC-0006/rule/thread-name-update-replaces-title-only",
"SRC-0006/rule/strip-user-message-prefix",
"SRC-0006/rule/git-info-prefer-existing",
"SRC-0006/rule/diff-fields-coverage",
"SRC-0006/rule/cli-default-backfill",
"SRC-0006/rule/codex-home-fallback",
"SRC-0006/rule/timestamp-parsing",
"SRC-0006/rule/log-level-formatting",
"SRC-0006/rule/apply-patch-heuristic",
"SRC-0006/rule/db-versions",
"SRC-0006/rule/migration-ignore-missing",
"SRC-0006/rule/reasoning-effort-unknown-graceful",
"SRC-0006/rule/first-user-message-empty-string-to-none",
"SRC-0006/rule/sqlite-home-env",
"SRC-0006/rule/db-metric-tags",
"SRC-0006/rule/log-thread-id-resolution",
"SRC-0006/rule/feedback-log-body-format",
"SRC-0006/rule/empty-args-filtered",
"SRC-0006/rule/system-time-clock-skew",
"SRC-0006/rule/thread-id-format-row-fallback",
"SRC-0006/entity/thread-metadata",
"SRC-0006/entity/agent-job",
"SRC-0006/entity/agent-job-item",
"SRC-0006/entity/agent-job-progress",
"SRC-0006/entity/backfill-state",
"SRC-0006/entity/backfill-stats",
"SRC-0006/entity/stage1-output",
"SRC-0006/entity/stage1-output-ref",
"SRC-0006/entity/phase2-input-selection",
"SRC-0006/entity/stage1-job-claim",
"SRC-0006/entity/stage1-job-claim-outcome",
"SRC-0006/entity/stage1-startup-claim-params",
"SRC-0006/entity/phase2-job-claim-outcome",
"SRC-0006/entity/log-entry",
"SRC-0006/entity/log-row",
"SRC-0006/entity/log-query",
"SRC-0006/entity/directional-thread-spawn-edge-status",
"SRC-0006/entity/threads-page",
"SRC-0006/entity/anchor",
"SRC-0006/entity/sort-key",
"SRC-0006/entity/extraction-outcome",
"SRC-0006/entity/state-databases",
"SRC-0006/entity/db-metrics",
"SRC-0006/uc.user/tail-codex-logs",
"SRC-0006/uc.sub/query-logs",
"SRC-0006/uc.sub/extract-thread-metadata-from-rollout",
"SRC-0006/uc.sub/persist-tracing-event-to-logs-db",
"SRC-0006/uc.sub/build-thread-metadata",
"SRC-0006/uc.sub/reconcile-thread-metadata",
"SRC-0006/uc.sub/parse-agent-job-row",
"SRC-0006/uc.sub/parse-agent-job-item-row",
"SRC-0006/uc.sub/parse-backfill-state",
"SRC-0006/uc.sub/parse-stage1-output",
"SRC-0006/uc.sub/build-stage1-output-ref",
"SRC-0006/uc.sub/parse-thread-row",
"SRC-0006/uc.sub/compute-pagination-anchor",
"SRC-0006/uc.sub/canonicalize-datetime",
"SRC-0006/uc.sub/initialize-state-databases"
],
"SRC-0007": [
"SRC-0007/rule/rollout-filename-format",
"SRC-0007/rule/rollout-directory-layout",
"SRC-0007/rule/thread-item-filter-must-have-meta-and-user",
"SRC-0007/rule/listing-scan-cap",
"SRC-0007/rule/list-overfetch-multiplier",
"SRC-0007/rule/anchor-cursor-skip",
"SRC-0007/rule/parse-timestamp-uuid-from-filename",
"SRC-0007/rule/rollout-date-parts-extraction",
"SRC-0007/rule/rollout-item-persistence-mode-gate",
"SRC-0007/rule/event-msg-persistence-matrix",
"SRC-0007/rule/item-completed-plan-only",
"SRC-0007/rule/response-item-rollout-whitelist",
"SRC-0007/rule/response-item-memories-filter",
"SRC-0007/rule/exec-aggregated-output-truncation",
"SRC-0007/rule/rollout-channel-capacity",
"SRC-0007/rule/writer-recovery-retry-once",
"SRC-0007/rule/last-logged-error-dedup",
"SRC-0007/rule/memory-mode-on-session-start",
"SRC-0007/rule/interactive-session-sources",
"SRC-0007/rule/thread-id-from-filename-tail",
"SRC-0007/rule/archive-path-scoping",
"SRC-0007/rule/filename-thread-id-match",
"SRC-0007/rule/backfill-lease",
"SRC-0007/rule/backfill-batch-size",
"SRC-0007/rule/backfill-watermark-format",
"SRC-0007/rule/backfill-outcome-metric-status",
"SRC-0007/rule/backfill-archived-at-fallback",
"SRC-0007/rule/reconcile-archived-at-policy",
"SRC-0007/rule/cwd-normalization-for-state-db",
"SRC-0007/rule/cwd-match-resume",
"SRC-0007/rule/session-index-reverse-scan",
"SRC-0007/rule/session-index-latest-per-id",
"SRC-0007/rule/fallback-thread-id-from-filename",
"SRC-0007/rule/head-first-session-meta-wins",
"SRC-0007/rule/timestamp-parsing-fallback",
"SRC-0007/rule/cursor-serialization-format",
"SRC-0007/rule/cursor-anchor-id-no-pipe",
"SRC-0007/rule/truncate-mtime-to-millis",
"SRC-0007/rule/provider-matcher-default-fallback",
"SRC-0007/entity/rollout-file",
"SRC-0007/entity/session-meta",
"SRC-0007/entity/session-meta-line",
"SRC-0007/entity/rollout-item",
"SRC-0007/entity/rollout-recorder",
"SRC-0007/entity/rollout-recorder-params",
"SRC-0007/entity/rollout-writer-state",
"SRC-0007/entity/rollout-cmd",
"SRC-0007/entity/event-persistence-mode",
"SRC-0007/entity/response-item-persist-policy",
"SRC-0007/entity/thread-item",
"SRC-0007/entity/threads-page",
"SRC-0007/entity/cursor",
"SRC-0007/entity/anchor-state",
"SRC-0007/entity/thread-list-config",
"SRC-0007/entity/provider-matcher",
"SRC-0007/entity/session-index-entry",
"SRC-0007/entity/session-index",
"SRC-0007/entity/thread-metadata-row",
"SRC-0007/entity/backfill-state",
"SRC-0007/entity/backfill-stats",
"SRC-0007/entity/extraction-outcome",
"SRC-0007/entity/rollout-config",
"SRC-0007/entity/thread-store",
"SRC-0007/entity/thread-recorder",
"SRC-0007/entity/local-thread-store",
"SRC-0007/entity/stored-thread",
"SRC-0007/entity/stored-thread-history",
"SRC-0007/entity/thread-page",
"SRC-0007/entity/list-threads-params",
"SRC-0007/entity/create-thread-params",
"SRC-0007/entity/read-thread-params",
"SRC-0007/entity/archive-thread-params",
"SRC-0007/entity/update-thread-metadata-params",
"SRC-0007/entity/set-thread-name-params",
"SRC-0007/entity/thread-store-error",
"SRC-0007/entity/log-file-info",
"SRC-0007/uc.sub/record-rollout-items",
"SRC-0007/uc.sub/persist-session-meta",
"SRC-0007/uc.sub/sync-thread-state",
"SRC-0007/uc.sub/persist-rollout-recorder",
"SRC-0007/uc.user/list-threads",
"SRC-0007/uc.sub/scan-rollout-directory",
"SRC-0007/uc.sub/list-threads-db",
"SRC-0007/uc.user/read-thread",
"SRC-0007/uc.sub/locate-thread-path",
"SRC-0007/uc.sub/repair-rollout-path",
"SRC-0007/uc.sub/reconcile-rollout",
"SRC-0007/uc.user/archive-thread",
"SRC-0007/uc.user/unarchive-thread",
"SRC-0007/uc.user/resume-session",
"SRC-0007/uc.sub/backfill-sessions",
"SRC-0007/uc.sub/append-thread-name",
"SRC-0007/uc.sub/find-thread-by-name"
],
"SRC-0008": [
"SRC-0008/rule/agent-max-threads-limit",
"SRC-0008/rule/root-thread-not-counted",
"SRC-0008/rule/agent-max-depth-disables-spawn-features",
"SRC-0008/rule/thread-spawn-depth-increment",
"SRC-0008/rule/exceeds-thread-spawn-depth-limit",
"SRC-0008/rule/nickname-ordinal-suffix",
"SRC-0008/rule/nickname-pool-reset",
"SRC-0008/rule/agent-path-uniqueness",
"SRC-0008/rule/release-reserved-agent-path-only-if-placeholder",
"SRC-0008/rule/register-root-lazy-at-depth-1",
"SRC-0008/rule/register-session-root-only-for-root",
"SRC-0008/rule/fork-retain-filter",
"SRC-0008/rule/fork-requires-parent-call-id",
"SRC-0008/rule/fork-last-n-turns-truncation",
"SRC-0008/rule/is-final-non-final-statuses",
"SRC-0008/rule/agent-status-from-event-mapping",
"SRC-0008/rule/role-preservation-policy",
"SRC-0008/rule/role-layer-insert-order",
"SRC-0008/rule/role-empty-toml-no-op",
"SRC-0008/rule/role-error-returns-generic-message",
"SRC-0008/rule/resolve-role-config-user-precedence",
"SRC-0008/rule/spawn-tool-role-dedup",
"SRC-0008/rule/role-tool-locked-settings-note",
"SRC-0008/rule/mailbox-monotonic-sequence",
"SRC-0008/rule/mailbox-fifo-delivery",
"SRC-0008/rule/mailbox-trigger-turn-detection",
"SRC-0008/rule/agent-reference-resolution",
"SRC-0008/rule/agent-matches-prefix",
"SRC-0008/rule/list-agents-sort-order",
"SRC-0008/rule/handle-internal-agent-died-cleanup",
"SRC-0008/rule/shutdown-live-agent-idempotent-on-shutdown-status",
"SRC-0008/rule/shutdown-agent-tree-descendant-error-policy",
"SRC-0008/rule/inherited-exec-policy-condition",
"SRC-0008/rule/inherited-shell-snapshot-condition",
"SRC-0008/rule/subagent-analytics-only-with-feature",
"SRC-0008/rule/completion-watcher-feature-gated",
"SRC-0008/rule/completion-watcher-notify-parent-path",
"SRC-0008/rule/render-input-preview-format",
"SRC-0008/rule/default-role-name-fallback",
"SRC-0008/rule/register-spawned-thread-key",
"SRC-0008/entity/agent-registry",
"SRC-0008/entity/agent-metadata",
"SRC-0008/entity/spawn-reservation",
"SRC-0008/entity/agent-control",
"SRC-0008/entity/live-agent",
"SRC-0008/entity/listed-agent",
"SRC-0008/entity/mailbox",
"SRC-0008/entity/mailbox-receiver",
"SRC-0008/entity/agent-role",
"SRC-0008/entity/role-preservation-policy",
"SRC-0008/entity/thread-spawn-edge",
"SRC-0008/entity/agent-status",
"SRC-0008/entity/spawn-agent-options",
"SRC-0008/entity/thread-spawn-source",
"SRC-0008/entity/inter-agent-communication",
"SRC-0008/entity/agent-resolver",
"SRC-0008/entity/agent-nickname-pool",
"SRC-0008/entity/config-layer-stack",
"SRC-0008/uc.user/spawn-sub-agent",
"SRC-0008/uc.user/fork-agent-thread",
"SRC-0008/uc.user/resume-agent-tree",
"SRC-0008/uc.user/close-agent",
"SRC-0008/uc.user/list-available-agents",
"SRC-0008/uc.user/reference-agent-by-name",
"SRC-0008/uc.sub/resolve-agent-reference",
"SRC-0008/uc.sub/reserve-agent-identity",
"SRC-0008/uc.sub/apply-role-layer",
"SRC-0008/uc.sub/compute-role-preservation-policy",
"SRC-0008/uc.sub/notify-parent-on-completion",
"SRC-0008/uc.sub/route-inter-agent-mail",
"SRC-0008/uc.sub/derive-agent-status",
"SRC-0008/uc.sub/ensure-rollout-materialized",
"SRC-0008/uc.sub/send-input-to-agent"
],
"SRC-0009": [
"SRC-0009/rule/submission-channel-capacity",
"SRC-0009/rule/thread-created-channel-capacity",
"SRC-0009/rule/session-configured-first-event",
"SRC-0009/rule/steer-input-preconditions",
"SRC-0009/rule/steer-error-to-event-mapping",
"SRC-0009/rule/agent-identity-registration-timeout",
"SRC-0009/rule/agent-identity-binding-id-format",
"SRC-0009/rule/agent-identity-feature-gate",
"SRC-0009/rule/agent-identity-api-key-skip",
"SRC-0009/rule/agent-identity-cache-reuse",
"SRC-0009/rule/agent-identity-user-mismatch-invalidates-cache",
"SRC-0009/rule/agent-harness-id-by-session-source",
"SRC-0009/rule/agent-identity-running-location-format",
"SRC-0009/rule/agent-identity-registration-url-construction",
"SRC-0009/rule/agent-identity-human-biscuit-header",
"SRC-0009/rule/agent-identity-request-id-format",
"SRC-0009/rule/agent-identity-private-key-size",
"SRC-0009/rule/ssh-ed25519-public-key-wire-format",
"SRC-0009/rule/agent-identity-validate-key-material",
"SRC-0009/rule/agent-identity-workspace-match",
"SRC-0009/rule/agent-identity-matches-binding",
"SRC-0009/rule/subagent-depth-gate",
"SRC-0009/rule/subagent-models-refresh-offline",
"SRC-0009/rule/base-instructions-priority",
"SRC-0009/rule/guardian-reviewer-bypass-exec-policy",
"SRC-0009/rule/delegate-subagent-inheritance",
"SRC-0009/rule/delegate-event-filter",
"SRC-0009/rule/delegate-shutdown-drain-timeout",
"SRC-0009/rule/delegate-one-shot-closed-tx",
"SRC-0009/rule/fork-snapshot-from-usize",
"SRC-0009/rule/truncate-before-nth-user-message-rules",
"SRC-0009/rule/truncate-last-n-fork-turns-empty",
"SRC-0009/rule/thread-rolledback-truncation",
"SRC-0009/rule/trigger-turn-boundary",
"SRC-0009/rule/interrupted-boundary-append",
"SRC-0009/rule/snapshot-turn-state-midturn-detection",
"SRC-0009/rule/cancelled-approval-defaults",
"SRC-0009/rule/mcp-review-decision-mapping",
"SRC-0009/rule/out-of-band-elicitation-counter-bounds",
"SRC-0009/rule/managed-network-proxy-active",
"SRC-0009/rule/reasoning-effort-median-of-supported",
"SRC-0009/rule/auto-compact-trigger-midturn",
"SRC-0009/rule/auto-compact-pre-turn",
"SRC-0009/rule/previous-model-inline-compact",
"SRC-0009/rule/stop-hook-permission-mode",
"SRC-0009/rule/stop-hook-continuation",
"SRC-0009/rule/after-agent-hook-abort",
"SRC-0009/rule/invalid-image-recovery",
"SRC-0009/rule/sandbox-policy-change-network-derivation",
"SRC-0009/rule/cyber-safety-reroute-message",
"SRC-0009/rule/input-empty-no-pending-returns-none",
"SRC-0009/rule/inject-response-items-nonempty",
"SRC-0009/rule/thread-rollback-preconditions",
"SRC-0009/rule/set-thread-memory-mode-persistence",
"SRC-0009/rule/token-usage-trace-logging",
"SRC-0009/rule/subagent-analytics-requires-client-metadata",
"SRC-0009/rule/overwriting-pending-approval-warn",
"SRC-0009/rule/elicitation-resolve-content-policy",
"SRC-0009/rule/deprecated-type-aliases",
"SRC-0009/rule/stdout-stderr-forbidden",
"SRC-0009/entity/codex",
"SRC-0009/entity/codex-spawn-args",
"SRC-0009/entity/codex-spawn-ok",
"SRC-0009/entity/session",
"SRC-0009/entity/session-configuration",
"SRC-0009/entity/session-settings-update",
"SRC-0009/entity/turn-context",
"SRC-0009/entity/turn-skills-context",
"SRC-0009/entity/codex-thread",
"SRC-0009/entity/thread-config-snapshot",
"SRC-0009/entity/thread-manager",
"SRC-0009/entity/thread-manager-state",
"SRC-0009/entity/new-thread",
"SRC-0009/entity/fork-snapshot",
"SRC-0009/entity/thread-shutdown-report",
"SRC-0009/entity/active-turn",
"SRC-0009/entity/submission-loop",
"SRC-0009/entity/run-turn",
"SRC-0009/entity/sampling-request-result",
"SRC-0009/entity/steer-input-error",
"SRC-0009/entity/previous-turn-settings",
"SRC-0009/entity/agent-identity-manager",
"SRC-0009/entity/stored-agent-identity",
"SRC-0009/entity/agent-bill-of-materials",
"SRC-0009/entity/agent-identity-binding",
"SRC-0009/entity/generated-agent-key-material",
"SRC-0009/entity/register-agent-messages",
"SRC-0009/entity/codex-delegate-channels",
"SRC-0009/entity/rollout-truncation",
"SRC-0009/entity/snapshot-turn-state",
"SRC-0009/entity/lib-reexports",
"SRC-0009/uc.user/start-new-codex-thread",
"SRC-0009/uc.user/resume-thread-from-rollout",
"SRC-0009/uc.user/fork-thread",
"SRC-0009/uc.user/shutdown-all-threads",
"SRC-0009/uc.user/submit-op-and-receive-events",
"SRC-0009/uc.user/steer-active-turn",
"SRC-0009/uc.user/delegate-to-sub-codex-one-shot",
"SRC-0009/uc.user/register-agent-identity",
"SRC-0009/uc.user/run-model-turn",
"SRC-0009/uc.user/approval-request-through-delegate",
"SRC-0009/uc.user/override-turn-context",
"SRC-0009/uc.user/inject-message-without-turn",
"SRC-0009/uc.user/out-of-band-elicitation-pause",
"SRC-0009/uc.user/start-review-thread",
"SRC-0009/uc.user/shutdown-codex-session",
"SRC-0009/uc.sub/spawn-codex-session",
"SRC-0009/uc.sub/spawn-delegated-interactive-child",
"SRC-0009/uc.sub/forward-events-from-child",
"SRC-0009/uc.sub/forward-ops-to-child",
"SRC-0009/uc.sub/truncate-before-nth-user-message",
"SRC-0009/uc.sub/mint-human-biscuit",
"SRC-0009/uc.sub/generate-agent-key-material"
],
"SRC-0010": [
"SRC-0010/rule/responses-websocket-enabled",
"SRC-0010/rule/websocket-connect-timeout",
"SRC-0010/rule/request-compression-policy",
"SRC-0010/rule/service-tier-priority-mapping",
"SRC-0010/rule/reasoning-inclusion-rule",
"SRC-0010/rule/verbosity-support-gating",
"SRC-0010/rule/store-flag-azure-only",
"SRC-0010/rule/stream-always-true",
"SRC-0010/rule/tool-choice-auto",
"SRC-0010/rule/prompt-cache-key-conversation-id",
"SRC-0010/rule/window-id-format",
"SRC-0010/rule/shell-tool-recognition",
"SRC-0010/rule/apply-patch-tool-as-shell",
"SRC-0010/rule/structured-shell-output-trigger",
"SRC-0010/rule/structured-output-format",
"SRC-0010/rule/incremental-request-same-properties",
"SRC-0010/rule/incremental-request-input-is-extension",
"SRC-0010/rule/incremental-requires-response-id",
"SRC-0010/rule/fallback-on-upgrade-required",
"SRC-0010/rule/retry-once-after-unauthorized-recovery",
"SRC-0010/rule/recovery-permanent-vs-transient",
"SRC-0010/rule/recovery-reason-classification",
"SRC-0010/rule/beta-features-header-non-empty",
"SRC-0010/rule/websockets-v2-beta-header",
"SRC-0010/rule/timing-metrics-header-opt-in",
"SRC-0010/rule/subagent-header-value-mapping",
"SRC-0010/rule/parent-thread-id-thread-spawn-only",
"SRC-0010/rule/auth-mode-telemetry-label",
"SRC-0010/rule/mpsc-event-channel-buffer",
"SRC-0010/rule/last-response-single-take",
"SRC-0010/rule/sse-event-completed-failed-single-log",
"SRC-0010/rule/warmup-disables-generation",
"SRC-0010/rule/prewarm-idempotent",
"SRC-0010/rule/strip-total-output-header-format",
"SRC-0010/rule/responses-endpoint-routing",
"SRC-0010/rule/window-generation-invalidates-cache",
"SRC-0010/rule/connect-reused-false-on-new-connection",
"SRC-0010/rule/drop-restores-cached-session",