-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathskills.json
More file actions
5036 lines (5036 loc) · 179 KB
/
Copy pathskills.json
File metadata and controls
5036 lines (5036 loc) · 179 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
[
{
"slug": "additive-agent-tool-surface-construction",
"name": "Additive Agent Tool Surface Construction",
"summary": "Merge agent-specific tool sets (MCP clients + fetched tools) into the parent context without disrupting the parent\u2019s existing pool.",
"when_to_use": "Use this when bringing tools from newly connected MCP servers into the agent\u2019s tool pool while preserving the parent context.",
"category": "multi-agent",
"maturity": "core",
"tags": [
"multi-agent",
"agent-runtime",
"starter"
],
"bundles": [
"starter",
"multi-agent",
"agent-lifecycle"
],
"targets": [
"universal",
"codex-compatible",
"claude-code-compatible"
],
"paths": {
"universal": "skills/additive-agent-tool-surface-construction/SKILL.md",
"codex": "agents/codex/skills/additive-agent-tool-surface-construction/SKILL.md",
"claude_code": "agents/claude-code/skills/additive-agent-tool-surface-construction/SKILL.md"
},
"source": {
"type": "reviewed-implementation",
"pattern_family": "multi-agent",
"review_status": "curated"
}
},
{
"slug": "agent-specific-mcp-server-initialization",
"name": "Agent-Specific MCP Server Initialization",
"summary": "Connect each agent\u2019s frontmatter MCP servers safely and tear them down without leaking clients, while honoring plugin-only guards.",
"when_to_use": "Load this skill when an agent defines extra MCP servers in its frontmatter and those clients must be joined to the parent session.",
"category": "multi-agent",
"maturity": "recommended",
"tags": [
"multi-agent",
"agent-runtime"
],
"bundles": [
"multi-agent",
"agent-lifecycle"
],
"targets": [
"universal",
"codex-compatible",
"claude-code-compatible"
],
"paths": {
"universal": "skills/agent-specific-mcp-server-initialization/SKILL.md",
"codex": "agents/codex/skills/agent-specific-mcp-server-initialization/SKILL.md",
"claude_code": "agents/claude-code/skills/agent-specific-mcp-server-initialization/SKILL.md"
},
"source": {
"type": "reviewed-implementation",
"pattern_family": "multi-agent",
"review_status": "curated"
}
},
{
"slug": "aggregated-change-signal-return",
"name": "Aggregated Change Signal Return",
"summary": "Collapse multiple change sources into one caller-facing boolean so headless bootstraps know whether a downstream refresh is necessary.",
"when_to_use": "Apply when a headless setup flow can change state through several mechanisms but callers only need one final answer about whether they must refresh downstream registries.",
"category": "extensions-mcp",
"maturity": "recommended",
"tags": [
"extensions-mcp",
"extension-lifecycle",
"agent-runtime"
],
"bundles": [
"extensions-mcp",
"extension-sync"
],
"targets": [
"universal",
"codex-compatible",
"claude-code-compatible"
],
"paths": {
"universal": "skills/aggregated-change-signal-return/SKILL.md",
"codex": "agents/codex/skills/aggregated-change-signal-return/SKILL.md",
"claude_code": "agents/claude-code/skills/aggregated-change-signal-return/SKILL.md"
},
"source": {
"type": "reviewed-implementation",
"pattern_family": "extensions-mcp",
"review_status": "curated"
}
},
{
"slug": "ansi-safe-border-caption-embedding",
"name": "ANSI-Safe Border Caption Embedding",
"summary": "Embed captions into terminal borders while preserving alignment, clipping, and color/dim semantics.",
"when_to_use": "Apply when you must insert text into a border line (top or bottom) while preserving the border characters, colors, and alignment, even if the caption is wider than available space.",
"category": "terminal-ui",
"maturity": "core",
"tags": [
"terminal-ui",
"agent-runtime",
"starter"
],
"bundles": [
"starter",
"terminal-ui"
],
"targets": [
"universal",
"codex-compatible",
"claude-code-compatible"
],
"paths": {
"universal": "skills/ansi-safe-border-caption-embedding/SKILL.md",
"codex": "agents/codex/skills/ansi-safe-border-caption-embedding/SKILL.md",
"claude_code": "agents/claude-code/skills/ansi-safe-border-caption-embedding/SKILL.md"
},
"source": {
"type": "reviewed-implementation",
"pattern_family": "terminal-ui",
"review_status": "curated"
}
},
{
"slug": "api-round-message-grouping",
"name": "API Round Message Grouping",
"summary": "Split conversation history into API-round buckets so compaction retries cut only the chunks tied to the failed round.",
"when_to_use": "When compacting or retrying requests, use API-round boundaries instead of human-turn heuristics to determine what past messages belong together.",
"category": "context-management",
"maturity": "core",
"tags": [
"context-management",
"agent-runtime",
"starter"
],
"bundles": [
"starter",
"context-management",
"compaction-core"
],
"targets": [
"universal",
"codex-compatible",
"claude-code-compatible"
],
"paths": {
"universal": "skills/api-round-message-grouping/SKILL.md",
"codex": "agents/codex/skills/api-round-message-grouping/SKILL.md",
"claude_code": "agents/claude-code/skills/api-round-message-grouping/SKILL.md"
},
"source": {
"type": "reviewed-implementation",
"pattern_family": "context-management",
"review_status": "curated"
}
},
{
"slug": "api-round-ptl-retry-truncation",
"name": "API-Round PTL Retry Truncation",
"summary": "On prompt-too-long retries, drop the oldest API-round groups first and inject a synthetic user preamble when needed so the summarize request stays valid.",
"when_to_use": "Apply when the compaction request itself hits prompt-too-long and you need a last-resort retry path that removes old context without breaking API message validity.",
"category": "context-management",
"maturity": "recommended",
"tags": [
"context-management",
"agent-runtime"
],
"bundles": [
"context-management",
"compaction-core"
],
"targets": [
"universal",
"codex-compatible",
"claude-code-compatible"
],
"paths": {
"universal": "skills/api-round-ptl-retry-truncation/SKILL.md",
"codex": "agents/codex/skills/api-round-ptl-retry-truncation/SKILL.md",
"claude_code": "agents/claude-code/skills/api-round-ptl-retry-truncation/SKILL.md"
},
"source": {
"type": "reviewed-implementation",
"pattern_family": "context-management",
"review_status": "curated"
}
},
{
"slug": "append-only-sidechain-transcripts",
"name": "Append-Only Sidechain Transcripts",
"summary": "Persist subagent transcripts as an append-only ordered log so forks, resumes, and sidechain readers can replay history without duplication.",
"when_to_use": "Subagent transcript persistence must stay append-only so forked history can be resumed and sidechain readers see messages in strict chronological order.",
"category": "multi-agent",
"maturity": "recommended",
"tags": [
"multi-agent",
"agent-runtime"
],
"bundles": [
"multi-agent",
"agent-lifecycle"
],
"targets": [
"universal",
"codex-compatible",
"claude-code-compatible"
],
"paths": {
"universal": "skills/append-only-sidechain-transcripts/SKILL.md",
"codex": "agents/codex/skills/append-only-sidechain-transcripts/SKILL.md",
"claude_code": "agents/claude-code/skills/append-only-sidechain-transcripts/SKILL.md"
},
"source": {
"type": "reviewed-implementation",
"pattern_family": "multi-agent",
"review_status": "curated"
}
},
{
"slug": "atomic-post-await-state-commit",
"name": "Atomic Post-Await State Commit",
"summary": "After awaiting persistence work, update the shared budget state for each `tool_use_id` exactly once so no concurrent reader ever sees a half-committed decision.",
"when_to_use": "Use this pattern when concurrently persisting large tool results and mutating `ContentReplacementState` once the awaited work completes, such as the `freshReplacements` loop inside `enforceToolResultBudget`.",
"category": "tool-orchestration",
"maturity": "recommended",
"tags": [
"tool-orchestration",
"control-flow",
"agent-runtime"
],
"bundles": [
"tool-orchestration",
"output-budgeting"
],
"targets": [
"universal",
"codex-compatible",
"claude-code-compatible"
],
"paths": {
"universal": "skills/atomic-post-await-state-commit/SKILL.md",
"codex": "agents/codex/skills/atomic-post-await-state-commit/SKILL.md",
"claude_code": "agents/claude-code/skills/atomic-post-await-state-commit/SKILL.md"
},
"source": {
"type": "reviewed-implementation",
"pattern_family": "tool-orchestration",
"review_status": "curated"
}
},
{
"slug": "auto-memory-tool-permission-fencing",
"name": "Auto Memory Tool Permission Fencing",
"summary": "Gate every tool call in the auto-memory extract agent so only safe read-only actions and targeted writes execute.",
"when_to_use": "Apply whenever a background auto-memory agent must be limited to safe read-only commands and writes that target the memory directory.",
"category": "safety-worktrees",
"maturity": "recommended",
"tags": [
"safety-worktrees",
"agent-runtime"
],
"bundles": [
"safety-worktrees"
],
"targets": [
"universal",
"codex-compatible",
"claude-code-compatible"
],
"paths": {
"universal": "skills/auto-memory-tool-permission-fencing/SKILL.md",
"codex": "agents/codex/skills/auto-memory-tool-permission-fencing/SKILL.md",
"claude_code": "agents/claude-code/skills/auto-memory-tool-permission-fencing/SKILL.md"
},
"source": {
"type": "reviewed-implementation",
"pattern_family": "safety-worktrees",
"review_status": "curated"
}
},
{
"slug": "auto-refresh-after-new-plugin-sources",
"name": "Auto Refresh After New Plugin Sources",
"summary": "Clear source and plugin caches, then trigger a best-effort refresh whenever reconciliation installs new sources.",
"when_to_use": "Use when newly installed plugin sources should become live immediately and the runtime must attempt an automatic refresh before falling back to manual recovery.",
"category": "extensions-mcp",
"maturity": "core",
"tags": [
"extensions-mcp",
"cache-invalidation",
"agent-runtime"
],
"bundles": [
"extensions-mcp",
"extension-sync"
],
"targets": [
"universal",
"codex-compatible",
"claude-code-compatible"
],
"paths": {
"universal": "skills/auto-refresh-after-new-plugin-sources/SKILL.md",
"codex": "agents/codex/skills/auto-refresh-after-new-plugin-sources/SKILL.md",
"claude_code": "agents/claude-code/skills/auto-refresh-after-new-plugin-sources/SKILL.md"
},
"source": {
"type": "reviewed-implementation",
"pattern_family": "extensions-mcp",
"review_status": "curated"
}
},
{
"slug": "autocompact-circuit-breaker",
"name": "Autocompact Circuit Breaker",
"summary": "Break the autocompact retry loop after several consecutive failures to avoid hammering shared APIs.",
"when_to_use": "Apply when autocompact failures repeat and the service must stop retrying to avoid API storms.",
"category": "context-management",
"maturity": "core",
"tags": [
"context-management",
"agent-runtime",
"starter"
],
"bundles": [
"starter",
"context-management",
"compaction-core"
],
"targets": [
"universal",
"codex-compatible",
"claude-code-compatible"
],
"paths": {
"universal": "skills/autocompact-circuit-breaker/SKILL.md",
"codex": "agents/codex/skills/autocompact-circuit-breaker/SKILL.md",
"claude_code": "agents/claude-code/skills/autocompact-circuit-breaker/SKILL.md"
},
"source": {
"type": "reviewed-implementation",
"pattern_family": "context-management",
"review_status": "curated"
}
},
{
"slug": "autocompact-recursion-guards",
"name": "Autocompact Recursion Guards",
"summary": "Block autocompact from running in recursive contexts so forks and helpers don\u2019t deadlock.",
"when_to_use": "Apply when auto-compacting logic runs inside recursive agents (session memory, compact helpers, context collapse) and must avoid deadlocking by re-entering itself.",
"category": "context-management",
"maturity": "recommended",
"tags": [
"context-management",
"agent-runtime"
],
"bundles": [
"context-management",
"compaction-core"
],
"targets": [
"universal",
"codex-compatible",
"claude-code-compatible"
],
"paths": {
"universal": "skills/autocompact-recursion-guards/SKILL.md",
"codex": "agents/codex/skills/autocompact-recursion-guards/SKILL.md",
"claude_code": "agents/claude-code/skills/autocompact-recursion-guards/SKILL.md"
},
"source": {
"type": "reviewed-implementation",
"pattern_family": "context-management",
"review_status": "curated"
}
},
{
"slug": "background-marketplace-reconciliation",
"name": "Background Marketplace Reconciliation",
"summary": "Diff declared plugin marketplaces against local state, seed pending UI rows, and reconcile them in the background without blocking startup.",
"when_to_use": "Use when plugin sources or marketplaces may need install or update work at startup, but the main agent loop must stay responsive while the UI still shows per-source status.",
"category": "extensions-mcp",
"maturity": "core",
"tags": [
"extensions-mcp",
"plugin-lifecycle",
"agent-runtime"
],
"bundles": [
"extensions-mcp",
"extension-sync"
],
"targets": [
"universal",
"codex-compatible",
"claude-code-compatible"
],
"paths": {
"universal": "skills/background-marketplace-reconciliation/SKILL.md",
"codex": "agents/codex/skills/background-marketplace-reconciliation/SKILL.md",
"claude_code": "agents/claude-code/skills/background-marketplace-reconciliation/SKILL.md"
},
"source": {
"type": "reviewed-implementation",
"pattern_family": "extensions-mcp",
"review_status": "curated"
}
},
{
"slug": "bridge-origin-safe-slash-override",
"name": "Bridge Origin Safe Slash Override",
"summary": "Keep remote slash-command skipping enabled by default, then reopen it only for bridge-safe commands while denying unsafe local commands with a friendly local response.",
"when_to_use": "Apply when remotely delivered input should still default to plain-text slash handling, but a trusted bridge path needs to selectively re-enable only the slash commands that are safe to execute remotely.",
"category": "remote-bridge",
"maturity": "core",
"tags": [
"remote-bridge",
"agent-runtime",
"starter"
],
"bundles": [
"starter",
"remote-bridge",
"bridge-privacy"
],
"targets": [
"universal",
"codex-compatible",
"claude-code-compatible"
],
"paths": {
"universal": "skills/bridge-origin-safe-slash-override/SKILL.md",
"codex": "agents/codex/skills/bridge-origin-safe-slash-override/SKILL.md",
"claude_code": "agents/claude-code/skills/bridge-origin-safe-slash-override/SKILL.md"
},
"source": {
"type": "reviewed-implementation",
"pattern_family": "remote-bridge",
"review_status": "curated"
}
},
{
"slug": "bridge-safe-command-advertising",
"name": "Bridge Safe Command Advertising",
"summary": "Advertise only slash commands that a bridge client can actually invoke by filtering announcements with the same bridge-safety predicate used at execution time.",
"when_to_use": "Use when a bridged or remote client receives an announced slash-command list and that list must stay aligned with the commands the runtime will actually execute for bridge-originated input.",
"category": "remote-bridge",
"maturity": "recommended",
"tags": [
"remote-bridge",
"agent-runtime"
],
"bundles": [
"remote-bridge",
"bridge-privacy"
],
"targets": [
"universal",
"codex-compatible",
"claude-code-compatible"
],
"paths": {
"universal": "skills/bridge-safe-command-advertising/SKILL.md",
"codex": "agents/codex/skills/bridge-safe-command-advertising/SKILL.md",
"claude_code": "agents/claude-code/skills/bridge-safe-command-advertising/SKILL.md"
},
"source": {
"type": "reviewed-implementation",
"pattern_family": "remote-bridge",
"review_status": "curated"
}
},
{
"slug": "budget-aware-skill-listing-formatting",
"name": "Budget-Aware Skill Listing Formatting",
"summary": "Derive the active model context budget at runtime and format skill listings to fit it instead of emitting raw command sets.",
"when_to_use": "Apply when a skill or command listing must fit the active model's real context budget instead of assuming a fixed token allowance.",
"category": "command-surfaces",
"maturity": "recommended",
"tags": [
"command-surfaces",
"agent-runtime"
],
"bundles": [
"command-surfaces"
],
"targets": [
"universal",
"codex-compatible",
"claude-code-compatible"
],
"paths": {
"universal": "skills/budget-aware-skill-listing-formatting/SKILL.md",
"codex": "agents/codex/skills/budget-aware-skill-listing-formatting/SKILL.md",
"claude_code": "agents/claude-code/skills/budget-aware-skill-listing-formatting/SKILL.md"
},
"source": {
"type": "reviewed-implementation",
"pattern_family": "command-surfaces",
"review_status": "curated"
}
},
{
"slug": "budget-diminishing-continue",
"name": "Budget Diminishing Continue",
"summary": "Issue continuation nudges while the turn stays under budget, then halt once diminishing returns or the budget cap justify stopping.",
"when_to_use": "Apply when you have a task-level token budget and must decide between continuing and stopping while respecting diminishing returns.",
"category": "tool-orchestration",
"maturity": "recommended",
"tags": [
"tool-orchestration",
"control-flow",
"agent-runtime"
],
"bundles": [
"tool-orchestration",
"output-budgeting"
],
"targets": [
"universal",
"codex-compatible",
"claude-code-compatible"
],
"paths": {
"universal": "skills/budget-diminishing-continue/SKILL.md",
"codex": "agents/codex/skills/budget-diminishing-continue/SKILL.md",
"claude_code": "agents/claude-code/skills/budget-diminishing-continue/SKILL.md"
},
"source": {
"type": "reviewed-implementation",
"pattern_family": "tool-orchestration",
"review_status": "curated"
}
},
{
"slug": "built-in-agent-feature-gating",
"name": "Built-In Agent Feature Gating",
"summary": "Expose built-in agents according to entrypoint, mode, and feature flags so each runtime gets the right built-in surface.",
"when_to_use": "Use when built-in agent registration should differ across CLI, SDK, coordinator, or experiment-enabled entrypoints.",
"category": "multi-agent",
"maturity": "recommended",
"tags": [
"multi-agent",
"agent-runtime",
"feature-gating"
],
"bundles": [
"multi-agent"
],
"targets": [
"universal",
"codex-compatible",
"claude-code-compatible"
],
"paths": {
"universal": "skills/built-in-agent-feature-gating/SKILL.md",
"codex": "agents/codex/skills/built-in-agent-feature-gating/SKILL.md",
"claude_code": "agents/claude-code/skills/built-in-agent-feature-gating/SKILL.md"
},
"source": {
"type": "reviewed-implementation",
"pattern_family": "multi-agent",
"review_status": "curated"
}
},
{
"slug": "bundled-and-mcp-turn-zero-skill-filter",
"name": "Bundled-and-MCP Turn-Zero Skill Filter",
"summary": "Shrink first-turn skill listings to bundled and MCP-backed high-signal sources, with a deterministic bundled-only fallback if still too large.",
"when_to_use": "Use when turn-zero skill listings must stay inside a tight prompt budget without losing the most useful high-signal skills.",
"category": "command-surfaces",
"maturity": "core",
"tags": [
"command-surfaces",
"skill-listing",
"starter"
],
"bundles": [
"starter",
"command-surfaces",
"skill-discovery"
],
"targets": [
"universal",
"codex-compatible",
"claude-code-compatible"
],
"paths": {
"universal": "skills/bundled-and-mcp-turn-zero-skill-filter/SKILL.md",
"codex": "agents/codex/skills/bundled-and-mcp-turn-zero-skill-filter/SKILL.md",
"claude_code": "agents/claude-code/skills/bundled-and-mcp-turn-zero-skill-filter/SKILL.md"
},
"source": {
"type": "reviewed-implementation",
"pattern_family": "command-surfaces",
"review_status": "curated"
}
},
{
"slug": "bundled-skill-file-extraction",
"name": "Bundled Skill File Extraction",
"summary": "Lazily extract referenced files for bundled skills so large prompts stay offline until needed.",
"when_to_use": "Use whenever a bundled skill needs reference files extracted on demand while keeping startup fast.",
"category": "command-surfaces",
"maturity": "recommended",
"tags": [
"command-surfaces",
"skill-listing",
"agent-runtime"
],
"bundles": [
"command-surfaces",
"skill-discovery"
],
"targets": [
"universal",
"codex-compatible",
"claude-code-compatible"
],
"paths": {
"universal": "skills/bundled-skill-file-extraction/SKILL.md",
"codex": "agents/codex/skills/bundled-skill-file-extraction/SKILL.md",
"claude_code": "agents/claude-code/skills/bundled-skill-file-extraction/SKILL.md"
},
"source": {
"type": "reviewed-implementation",
"pattern_family": "command-surfaces",
"review_status": "curated"
}
},
{
"slug": "cache-edit-pin-and-replay",
"name": "Cache Edit Pin and Replay",
"summary": "Queue cache edits once, pin them to message positions, and replay them across turns instead of regenerating them on every retry.",
"when_to_use": "Use when cache-editing or microcompact flows must preserve deletion edits across retries, resumes, or later turns.",
"category": "context-management",
"maturity": "core",
"tags": [
"context-management",
"cache-editing",
"agent-runtime"
],
"bundles": [
"context-management",
"compaction-core"
],
"targets": [
"universal",
"codex-compatible",
"claude-code-compatible"
],
"paths": {
"universal": "skills/cache-edit-pin-and-replay/SKILL.md",
"codex": "agents/codex/skills/cache-edit-pin-and-replay/SKILL.md",
"claude_code": "agents/claude-code/skills/cache-edit-pin-and-replay/SKILL.md"
},
"source": {
"type": "reviewed-implementation",
"pattern_family": "context-management",
"review_status": "curated"
}
},
{
"slug": "cache-identical-fork-prefix-construction",
"name": "Cache Identical Fork Prefix Construction",
"summary": "Build forked conversation prefixes that stay identical across turns so prompt caching keeps working.",
"when_to_use": "Use this when a forked agent must reuse the parent prompt cache and needs byte-identical prefixes for each invocation.",
"category": "multi-agent",
"maturity": "recommended",
"tags": [
"multi-agent",
"agent-runtime"
],
"bundles": [
"multi-agent",
"fork-integrity"
],
"targets": [
"universal",
"codex-compatible",
"claude-code-compatible"
],
"paths": {
"universal": "skills/cache-identical-fork-prefix-construction/SKILL.md",
"codex": "agents/codex/skills/cache-identical-fork-prefix-construction/SKILL.md",
"claude_code": "agents/claude-code/skills/cache-identical-fork-prefix-construction/SKILL.md"
},
"source": {
"type": "reviewed-implementation",
"pattern_family": "multi-agent",
"review_status": "curated"
}
},
{
"slug": "cache-prefix-stability-for-subagents",
"name": "Cache Prefix Stability For Subagents",
"summary": "Preserve cache-critical request fields when a child agent must share the parent's prompt prefix for cache hits.",
"when_to_use": "Apply when a subagent should share the parent's cached prompt prefix instead of recomputing a divergent request shape.",
"category": "multi-agent",
"maturity": "recommended",
"tags": [
"multi-agent",
"agent-runtime"
],
"bundles": [
"multi-agent",
"fork-integrity"
],
"targets": [
"universal",
"codex-compatible",
"claude-code-compatible"
],
"paths": {
"universal": "skills/cache-prefix-stability-for-subagents/SKILL.md",
"codex": "agents/codex/skills/cache-prefix-stability-for-subagents/SKILL.md",
"claude_code": "agents/claude-code/skills/cache-prefix-stability-for-subagents/SKILL.md"
},
"source": {
"type": "reviewed-implementation",
"pattern_family": "multi-agent",
"review_status": "curated"
}
},
{
"slug": "cache-safe-stop-hook-snapshotting",
"name": "Cache-Safe Stop-Hook Snapshotting",
"summary": "Persist a cache-safe stop-hook context snapshot only for main session queries so later helpers can resume from stable state without fork pollution.",
"when_to_use": "Apply when end-of-turn hooks need to persist enough state for follow-up helpers, but background forks must not overwrite the main session snapshot.",
"category": "context-management",
"maturity": "recommended",
"tags": [
"context-management",
"memory-control",
"agent-runtime"
],
"bundles": [
"context-management",
"memory-signals"
],
"targets": [
"universal",
"codex-compatible",
"claude-code-compatible"
],
"paths": {
"universal": "skills/cache-safe-stop-hook-snapshotting/SKILL.md",
"codex": "agents/codex/skills/cache-safe-stop-hook-snapshotting/SKILL.md",
"claude_code": "agents/claude-code/skills/cache-safe-stop-hook-snapshotting/SKILL.md"
},
"source": {
"type": "reviewed-implementation",
"pattern_family": "context-management",
"review_status": "curated"
}
},
{
"slug": "cache-sweep-activation-fallback",
"name": "Cache Sweep Activation Fallback",
"summary": "Sweep stale extension caches before activation, then fall back to a sticky manual-refresh flag if the live refresh fails.",
"when_to_use": "Apply when newly materialized extension sources must be activated immediately, but the live refresh can fail and needs a recoverable fallback.",
"category": "extensions-mcp",
"maturity": "recommended",
"tags": [
"extensions-mcp",
"extension-lifecycle",
"agent-runtime"
],
"bundles": [
"extensions-mcp",
"extension-sync"
],
"targets": [
"universal",
"codex-compatible",
"claude-code-compatible"
],
"paths": {
"universal": "skills/cache-sweep-activation-fallback/SKILL.md",
"codex": "agents/codex/skills/cache-sweep-activation-fallback/SKILL.md",
"claude_code": "agents/claude-code/skills/cache-sweep-activation-fallback/SKILL.md"
},
"source": {
"type": "reviewed-implementation",
"pattern_family": "extensions-mcp",
"review_status": "curated"
}
},
{
"slug": "cache-warm-before-cache-only-fanout",
"name": "Cache Warm Before Cache-Only Fanout",
"summary": "Warm the authoritative cache path first, then fan out cache-only readers in parallel so derived loaders never race stale state.",
"when_to_use": "Apply when one authoritative load populates caches that several cheaper readers depend on, and parallel reads would race the warm path.",
"category": "extensions-mcp",
"maturity": "recommended",
"tags": [
"extensions-mcp",
"extension-lifecycle",
"agent-runtime"
],
"bundles": [
"extensions-mcp",
"extension-sync"
],
"targets": [
"universal",
"codex-compatible",
"claude-code-compatible"
],
"paths": {
"universal": "skills/cache-warm-before-cache-only-fanout/SKILL.md",
"codex": "agents/codex/skills/cache-warm-before-cache-only-fanout/SKILL.md",
"claude_code": "agents/claude-code/skills/cache-warm-before-cache-only-fanout/SKILL.md"
},
"source": {
"type": "reviewed-implementation",
"pattern_family": "extensions-mcp",
"review_status": "curated"
}
},
{
"slug": "canonical-root-marketplace-path-normalization",
"name": "Canonical-Root Marketplace Path Normalization",
"summary": "Normalize relative extension source paths against a canonical repo root so shared records stay stable across worktrees.",
"when_to_use": "Use when local extension paths are stored in a shared registry and multiple worktrees or checkouts might otherwise stamp conflicting absolute paths.",
"category": "extensions-mcp",
"maturity": "recommended",
"tags": [
"extensions-mcp",
"worktrees",
"agent-runtime"
],
"bundles": [
"extensions-mcp",
"safety-worktrees",
"extension-sync"
],
"targets": [
"universal",
"codex-compatible",
"claude-code-compatible"
],
"paths": {
"universal": "skills/canonical-root-marketplace-path-normalization/SKILL.md",
"codex": "agents/codex/skills/canonical-root-marketplace-path-normalization/SKILL.md",
"claude_code": "agents/claude-code/skills/canonical-root-marketplace-path-normalization/SKILL.md"
},
"source": {
"type": "reviewed-implementation",
"pattern_family": "extensions-mcp",
"review_status": "curated"
}
},
{
"slug": "canonical-worktree-path-normalization",
"name": "Canonical Worktree Path Normalization",
"summary": "Resolve repo-relative paths against the canonical checkout root so shared state stays stable across Git worktrees.",
"when_to_use": "Use when repo-relative paths are written into shared or user-global state and the same project may be opened from multiple worktrees.",
"category": "safety-worktrees",
"maturity": "recommended",
"tags": [
"safety-worktrees",
"agent-runtime"
],
"bundles": [
"safety-worktrees",
"workspace-safety"
],
"targets": [
"universal",
"codex-compatible",
"claude-code-compatible"
],
"paths": {
"universal": "skills/canonical-worktree-path-normalization/SKILL.md",
"codex": "agents/codex/skills/canonical-worktree-path-normalization/SKILL.md",
"claude_code": "agents/claude-code/skills/canonical-worktree-path-normalization/SKILL.md"
},
"source": {
"type": "reviewed-implementation",
"pattern_family": "safety-worktrees",
"review_status": "curated"
}
},
{
"slug": "capability-aware-offload-skipping",
"name": "Capability-Aware Offload Skipping",
"summary": "Skip generic output offload for tools whose own contracts already bound output or would become circular if wrapped again.",
"when_to_use": "Use when a generic persistence or preview wrapper covers many tools but some tools should bypass it because they already self-bound output or would recurse.",
"category": "tool-orchestration",
"maturity": "recommended",
"tags": [
"tool-orchestration",
"output-budgeting",
"agent-runtime"
],
"bundles": [
"tool-orchestration"
],
"targets": [
"universal",
"codex-compatible",
"claude-code-compatible"
],
"paths": {
"universal": "skills/capability-aware-offload-skipping/SKILL.md",
"codex": "agents/codex/skills/capability-aware-offload-skipping/SKILL.md",
"claude_code": "agents/claude-code/skills/capability-aware-offload-skipping/SKILL.md"
},
"source": {
"type": "reviewed-implementation",
"pattern_family": "tool-orchestration",
"review_status": "curated"
}
},
{
"slug": "capability-based-spinner-glyph-selection",
"name": "Capability Based Spinner Glyph Selection",
"summary": "Select spinner glyphs and colors dynamically based on terminal capability, motion preference, and stall state.",
"when_to_use": "Use when building a spinner glyph that must adapt to reduced-motion settings, theme colors, and stalled intensity while keeping the animation loop small.",
"category": "terminal-ui",
"maturity": "core",
"tags": [
"terminal-ui",
"agent-runtime",
"starter"
],
"bundles": [
"starter",
"terminal-ui"
],
"targets": [
"universal",
"codex-compatible",
"claude-code-compatible"
],
"paths": {
"universal": "skills/capability-based-spinner-glyph-selection/SKILL.md",
"codex": "agents/codex/skills/capability-based-spinner-glyph-selection/SKILL.md",
"claude_code": "agents/claude-code/skills/capability-based-spinner-glyph-selection/SKILL.md"
},
"source": {
"type": "reviewed-implementation",
"pattern_family": "terminal-ui",
"review_status": "curated"
}
},
{
"slug": "capability-pool-resolution",
"name": "Capability Pool Resolution",
"summary": "Resolve an agent\u2019s tool intent and disallowed lists into the actual pool the agent can use, honoring wildcard, async, and teammate allowances.",
"when_to_use": "Apply this pattern when an agent declares requested tools/disallowedTools and you must compute the exact capabilities available to that agent thread.",
"category": "tool-orchestration",
"maturity": "recommended",
"tags": [
"tool-orchestration",
"agent-runtime"
],
"bundles": [
"tool-orchestration"
],
"targets": [
"universal",
"codex-compatible",
"claude-code-compatible"
],
"paths": {
"universal": "skills/capability-pool-resolution/SKILL.md",
"codex": "agents/codex/skills/capability-pool-resolution/SKILL.md",
"claude_code": "agents/claude-code/skills/capability-pool-resolution/SKILL.md"
},
"source": {
"type": "reviewed-implementation",
"pattern_family": "tool-orchestration",
"review_status": "curated"
}
},
{
"slug": "case-normalized-sensitive-path-guards",
"name": "Case-Normalized Sensitive Path Guards",
"summary": "Normalize filesystem paths and reject matches that try to spoof sensitive directories with mixed case or alternate separators.",
"when_to_use": "Use this whenever user input targets `.claude`, dotfiles, or other dangerous locations on case-insensitive filesystems (Windows/macos).",
"category": "safety-worktrees",
"maturity": "recommended",
"tags": [
"safety-worktrees",
"agent-runtime"
],
"bundles": [
"safety-worktrees",
"workspace-safety"
],
"targets": [
"universal",