-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathplugins.json
More file actions
2422 lines (2422 loc) · 103 KB
/
Copy pathplugins.json
File metadata and controls
2422 lines (2422 loc) · 103 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": "https://json-schema.org/draft/2020-12/schema",
"name": "awesome-ai-plugins",
"version": "1.0.0",
"last_updated": "2026-07-18",
"total": 172,
"platforms": [
"codex",
"grok"
],
"plugins": [
{
"name": "Registry Broker",
"url": "https://github.com/hashgraph-online/registry-broker-codex-plugin",
"owner": "hashgraph-online",
"repo": "registry-broker-codex-plugin",
"description": "Delegate tasks to specialist AI agents via the HOL Registry, plan, find, summon, and recover sessions.",
"category": "Development & Workflow",
"source": "awesome-ai-plugins",
"install_url": "https://raw.githubusercontent.com/hashgraph-online/registry-broker-codex-plugin/HEAD/.codex-plugin/plugin.json",
"platform": "codex",
"ecosystems": [
"codex"
],
"featured": true
},
{
"name": "A Team",
"url": "https://github.com/RBraga01/a-team",
"owner": "RBraga01",
"repo": "a-team",
"description": "Universal multi-agent infrastructure with 25 specialist agents, 16 enforced workflow skills, and a lead orchestrator for Claude Code, Codex CLI, Cursor, and OpenCode.",
"category": "Development & Workflow",
"source": "awesome-ai-plugins",
"install_url": "https://raw.githubusercontent.com/RBraga01/a-team/HEAD/.codex-plugin/plugin.json",
"platform": "codex",
"ecosystems": [
"codex"
]
},
{
"name": "Aegis",
"url": "https://github.com/GanyuanRan/Aegis",
"owner": "GanyuanRan",
"repo": "Aegis",
"description": "An agentic skills framework & software development methodology that works: planning, TDD, debugging, and collaboration workflows.",
"category": "Development & Workflow",
"source": "awesome-ai-plugins",
"install_url": "https://raw.githubusercontent.com/GanyuanRan/Aegis/HEAD/.codex-plugin/plugin.json",
"platform": "codex",
"ecosystems": [
"codex"
]
},
{
"name": "Agent Guard",
"url": "https://github.com/JeongJaeSoon/agent-guard",
"owner": "JeongJaeSoon",
"repo": "agent-guard",
"description": "Real-time secret-leak guardrails for AI coding agents (Claude Code, Codex), Git hooks, and CI.",
"category": "Development & Workflow",
"source": "awesome-ai-plugins",
"install_url": "https://raw.githubusercontent.com/JeongJaeSoon/agent-guard/HEAD/plugins/agent-guard/.codex-plugin/plugin.json",
"platform": "codex",
"ecosystems": [
"codex"
]
},
{
"name": "Agent Harness Skills",
"url": "https://github.com/yfge/agent-harness-skills",
"owner": "yfge",
"repo": "agent-harness-skills",
"description": "Designs agent-ready repository harnesses with entrypoints, validation surfaces, runtime evidence, delivery records, and atomic commit guidance.",
"category": "Development & Workflow",
"source": "awesome-ai-plugins",
"install_url": "https://raw.githubusercontent.com/yfge/agent-harness-skills/HEAD/.codex-plugin/plugin.json",
"platform": "codex",
"ecosystems": [
"codex"
]
},
{
"name": "Agent Workflow System",
"url": "https://github.com/1139030773-cmd/agent-workflow-system",
"owner": "1139030773-cmd",
"repo": "agent-workflow-system",
"description": "\u4e00\u5957\u4e2d\u6587AI\u5de5\u4f5c\u6d41\u7cfb\u7edf\uff1a7\u4e2a\u534f\u4f5c\u6280\u80fd + \u884c\u4e3a\u89c4\u8303\u5baa\u6cd5 + \u4f1a\u8bdd\u6062\u590d\u673a\u5236\uff0c\u6a21\u7cca\u76ee\u6807\u2192\u53ef\u6267\u884c\u4efb\u52a1\uff0c\u5168\u751f\u547d\u5468\u671f\u5f15\u5bfc\u3002Codex & Claude Code \u53cc\u5e73\u53f0\uff0c\u65b0\u624b\u53cb\u597d\u3002",
"category": "Development & Workflow",
"source": "awesome-ai-plugins",
"install_url": "https://raw.githubusercontent.com/1139030773-cmd/agent-workflow-system/HEAD/plugins/agent-workflow-system/.codex-plugin/plugin.json",
"platform": "codex",
"ecosystems": [
"codex"
]
},
{
"name": "Agentizer",
"url": "https://github.com/Humiris/wwa-transform",
"owner": "Humiris",
"repo": "wwa-transform",
"description": "Turn any website into an AI-powered agentfront with split-pane",
"category": "Development & Workflow",
"source": "awesome-ai-plugins",
"install_url": "https://raw.githubusercontent.com/Humiris/wwa-transform/HEAD/.codex-plugin/plugin.json",
"platform": "codex",
"ecosystems": [
"codex"
]
},
{
"name": "AgentOps",
"url": "https://github.com/boshu2/agentops",
"owner": "boshu2",
"repo": "agentops",
"description": "DevOps layer for coding agents with flow, feedback, and memory that compounds between sessions.",
"category": "Development & Workflow",
"source": "awesome-ai-plugins",
"install_url": "https://raw.githubusercontent.com/boshu2/agentops/HEAD/.codex-plugin/plugin.json",
"platform": "codex",
"ecosystems": [
"codex"
]
},
{
"name": "AgentPack",
"url": "https://github.com/vishal2612200/agentpack",
"owner": "vishal2612200",
"repo": "agentpack",
"description": "Ranks repo context for Codex with likely files, skill recommendations, agent rules, commands, warnings, and compact task-focused packs before editing.",
"category": "Development & Workflow",
"source": "awesome-ai-plugins",
"install_url": "https://raw.githubusercontent.com/vishal2612200/agentpack/HEAD/.codex-plugin/plugin.json",
"platform": "codex",
"ecosystems": [
"codex"
]
},
{
"name": "Agentry Observability",
"url": "https://github.com/fr33dr4g0n/agentry-public",
"owner": "fr33dr4g0n",
"repo": "agentry-public",
"description": "Agent-native product analytics, error logging, and deploy attribution for coding agents through one HTTP API.",
"category": "Development & Workflow",
"source": "awesome-ai-plugins",
"install_url": "https://raw.githubusercontent.com/fr33dr4g0n/agentry-public/HEAD/plugins/agentry/.codex-plugin/plugin.json",
"platform": "codex",
"ecosystems": [
"codex"
]
},
{
"name": "AgiFlow",
"url": "https://github.com/AgiFlow/ai-plugin",
"owner": "AgiFlow",
"repo": "ai-plugin",
"description": "Project management workflows for AI coding agents with planning, grooming, task execution, review, and AgiFlow MCP integration.",
"category": "Development & Workflow",
"source": "awesome-ai-plugins",
"install_url": "https://raw.githubusercontent.com/AgiFlow/ai-plugin/HEAD/.codex-plugin/plugin.json",
"platform": "codex",
"ecosystems": [
"codex"
]
},
{
"name": "AIBoarding",
"url": "https://github.com/gustavo-meilus/aiboarding",
"owner": "gustavo-meilus",
"repo": "aiboarding",
"description": "Generate, maintain, compress, and audit standard AI-agent onboarding files with AGENTS.md, CLAUDE.md, drift tracking, and lifecycle hooks.",
"category": "Development & Workflow",
"source": "awesome-ai-plugins",
"install_url": "https://raw.githubusercontent.com/gustavo-meilus/aiboarding/HEAD/.codex-plugin/plugin.json",
"platform": "codex",
"ecosystems": [
"codex"
]
},
{
"name": "Alcove",
"url": "https://github.com/epicsagas/alcove",
"owner": "epicsagas",
"repo": "alcove",
"description": "Local-first MCP server for private project docs with hybrid BM25+vector search, tree-sitter code indexing, and automated linting for team-wide documentation standards.",
"category": "Development & Workflow",
"source": "awesome-ai-plugins",
"install_url": "https://raw.githubusercontent.com/epicsagas/alcove/HEAD/.codex-plugin/plugin.json",
"platform": "codex",
"ecosystems": [
"codex"
]
},
{
"name": "Anchor",
"url": "https://github.com/biefan/anchor",
"owner": "biefan",
"repo": "anchor",
"description": "Engineering discipline pack for Claude Code & Codex CLI with task-scope locking, anti-drift braking, condition-based codex review, project-CLAUDE.md pitfall writeback, and PreToolUse hooks that block irreversible bash patterns.",
"category": "Development & Workflow",
"source": "awesome-ai-plugins",
"install_url": "https://raw.githubusercontent.com/biefan/anchor/HEAD/.codex-plugin/plugin.json",
"platform": "codex",
"ecosystems": [
"codex"
]
},
{
"name": "Antigravity Workspace Template",
"url": "https://github.com/study8677/antigravity-workspace-template",
"owner": "study8677",
"repo": "antigravity-workspace-template",
"description": "Multi-agent codebase knowledge graph generator with context-aware planning and automatic scope management \u2014 turns codebases into coherent agent workspaces.",
"category": "Development & Workflow",
"source": "awesome-ai-plugins",
"install_url": "https://raw.githubusercontent.com/study8677/antigravity-workspace-template/HEAD/.codex-plugin/plugin.json",
"platform": "codex",
"ecosystems": [
"codex"
]
},
{
"name": "Archcore",
"url": "https://github.com/archcore-ai/plugin",
"owner": "archcore-ai",
"repo": "plugin",
"description": "Gives coding agents the architecture, rules, and prior decisions of the repo via skills, hooks, and MCP \u2014 so new changes land where the project says they belong across Claude Code, Cursor, and Codex CLI.",
"category": "Development & Workflow",
"source": "awesome-ai-plugins",
"install_url": "https://raw.githubusercontent.com/archcore-ai/plugin/HEAD/plugins/archcore/.codex-plugin/plugin.json",
"platform": "codex",
"ecosystems": [
"codex"
]
},
{
"name": "ArmorCodex",
"url": "https://github.com/armoriq/armorCodex",
"owner": "armoriq",
"repo": "armorCodex",
"description": "Intent-based security for Codex with MCP plan registration, policy gating, CSRG cryptographic proofs, and audit logging on `bash` and `apply_patch`.",
"category": "Development & Workflow",
"source": "awesome-ai-plugins",
"install_url": "https://raw.githubusercontent.com/armoriq/armorCodex/HEAD/plugins/armorcodex/.codex-plugin/plugin.json",
"platform": "codex",
"ecosystems": [
"codex"
]
},
{
"name": "BABOK Analyst",
"url": "https://github.com/GSkuza/BABOK_ANALYST",
"owner": "GSkuza",
"repo": "BABOK_ANALYST",
"description": "BABOK v3 business analysis agent with 16 MCP tools, a 9-stage pipeline, and human-in-the-loop approval gates.",
"category": "Development & Workflow",
"source": "awesome-ai-plugins",
"install_url": "https://raw.githubusercontent.com/GSkuza/BABOK_ANALYST/HEAD/.codex-plugin/plugin.json",
"platform": "codex",
"ecosystems": [
"codex"
]
},
{
"name": "BGS Modding Superpowers",
"url": "https://github.com/BB-84C/bgs-modding-superpowers",
"owner": "BB-84C",
"repo": "bgs-modding-superpowers",
"description": "Agentic Bethesda Game Studio modpack curation toolkit with MCP-driven xEdit conflict audit, MO2 control plane, BA2/BSA and Papyrus tooling, and skills for setup, dev-log, and release-changelog workflows.",
"category": "Development & Workflow",
"source": "awesome-ai-plugins",
"install_url": "https://raw.githubusercontent.com/BB-84C/bgs-modding-superpowers/HEAD/.codex-plugin/plugin.json",
"platform": "codex",
"ecosystems": [
"codex"
]
},
{
"name": "Boss",
"url": "https://github.com/echoVic/boss-skill",
"owner": "echoVic",
"repo": "boss-skill",
"description": "BMAD pipeline plugin that orchestrates a full requirements-to-deploy workflow across nine specialist agents with an auditable runtime DAG and quality gates, for Claude Code, Codex, OpenClaw, and Antigravity.",
"category": "Development & Workflow",
"source": "awesome-ai-plugins",
"install_url": "https://raw.githubusercontent.com/echoVic/boss-skill/HEAD/.codex-plugin/plugin.json",
"platform": "codex",
"ecosystems": [
"codex"
]
},
{
"name": "Bring Your AI Migration Auditor",
"url": "https://github.com/unitedideas/bringyour-mcp",
"owner": "unitedideas",
"repo": "bringyour-mcp",
"description": "Read-only Codex plugin for auditing Claude Code to Codex migrations before Codex edits code. Checks AGENTS.md/CLAUDE.md scope, hooks, MCP config, skills, secret references, and validation notes.",
"category": "Development & Workflow",
"source": "awesome-ai-plugins",
"install_url": "https://raw.githubusercontent.com/unitedideas/bringyour-mcp/HEAD/.codex-plugin/plugin.json",
"platform": "codex",
"ecosystems": [
"codex"
]
},
{
"name": "Brooks Lint",
"url": "https://github.com/hyhmrright/brooks-lint",
"owner": "hyhmrright",
"repo": "brooks-lint",
"description": "AI code reviews grounded in six classic engineering books \u2014 decay risk diagnostics with book citations, severity labels, and four analysis modes (PR review, architecture audit, tech debt, test quality).",
"category": "Development & Workflow",
"source": "awesome-ai-plugins",
"install_url": "https://raw.githubusercontent.com/hyhmrright/brooks-lint/HEAD/.codex-plugin/plugin.json",
"platform": "codex",
"ecosystems": [
"codex"
]
},
{
"name": "Casefile",
"url": "https://github.com/x4cc3/casefile",
"owner": "x4cc3",
"repo": "casefile",
"description": "Persistent security case tracking for bug bounties, CTFs, and security audits.",
"category": "Development & Workflow",
"source": "awesome-ai-plugins",
"install_url": "https://raw.githubusercontent.com/x4cc3/casefile/HEAD/.codex-plugin/plugin.json",
"platform": "codex",
"ecosystems": [
"codex"
]
},
{
"name": "Claude Code Codex Plugin",
"url": "https://github.com/davidq888/claude-code-codex-plugin",
"owner": "davidq888",
"repo": "claude-code-codex-plugin",
"description": "Security-focused Codex plugin that connects to the local Claude Code CLI through MCP with login, status checks, safe-mode prompts, and no credential storage.",
"category": "Development & Workflow",
"source": "awesome-ai-plugins",
"install_url": "https://raw.githubusercontent.com/davidq888/claude-code-codex-plugin/HEAD/plugins/claude-code/.codex-plugin/plugin.json",
"platform": "codex",
"ecosystems": [
"codex"
]
},
{
"name": "Claude Code for Codex",
"url": "https://github.com/sendbird/cc-plugin-codex",
"owner": "sendbird",
"repo": "cc-plugin-codex",
"description": "Reverse of OpenAI's official Claude-hosted plugin: use Claude Code from Codex for reviews, rescue tasks, tracked background jobs, and hook-powered review gates.",
"category": "Development & Workflow",
"source": "awesome-ai-plugins",
"install_url": "https://raw.githubusercontent.com/sendbird/cc-plugin-codex/HEAD/.codex-plugin/plugin.json",
"platform": "codex",
"ecosystems": [
"codex"
]
},
{
"name": "Claude Code Harness",
"url": "https://github.com/dadwadw233/claude-code-harness",
"owner": "dadwadw233",
"repo": "claude-code-harness",
"description": "Harness blueprint skill for turning vague agent ideas into concrete designs for request assembly, control loops, memory, permissions, recovery, and extension planes.",
"category": "Development & Workflow",
"source": "awesome-ai-plugins",
"install_url": "https://raw.githubusercontent.com/dadwadw233/claude-code-harness/HEAD/.codex-plugin/plugin.json",
"platform": "codex",
"ecosystems": [
"codex"
]
},
{
"name": "Claude Code Skills",
"url": "https://github.com/alirezarezvani/claude-skills",
"owner": "alirezarezvani",
"repo": "claude-skills",
"description": "223 production-ready skills, 23 agents, and 298 Python tools across 9 domains \u2014 engineering, marketing, product, compliance, and more.",
"category": "Development & Workflow",
"source": "awesome-ai-plugins",
"install_url": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/HEAD/.codex-plugin/plugin.json",
"platform": "codex",
"ecosystems": [
"codex"
]
},
{
"name": "Claude Octopus",
"url": "https://github.com/nyldn/claude-octopus",
"owner": "nyldn",
"repo": "claude-octopus",
"description": "Multi-LLM orchestration dispatching to 8 providers (Codex, Gemini, Copilot, Qwen, Perplexity, OpenRouter, Ollama, OpenCode) with Double Diamond workflows, adversarial review, and safety gates.",
"category": "Development & Workflow",
"source": "awesome-ai-plugins",
"install_url": "https://raw.githubusercontent.com/nyldn/claude-octopus/HEAD/.codex-plugin/plugin.json",
"platform": "codex",
"ecosystems": [
"codex"
]
},
{
"name": "Clean Room",
"url": "https://github.com/whit3rabbit/clean-room-skill",
"owner": "whit3rabbit",
"repo": "clean-room-skill",
"description": "Spec-first clean-room workflow for authorized source analysis, behavioral specs, role separation, and verification without replacement code.",
"category": "Development & Workflow",
"source": "awesome-ai-plugins",
"install_url": "https://raw.githubusercontent.com/whit3rabbit/clean-room-skill/HEAD/.codex-plugin/plugin.json",
"platform": "codex",
"ecosystems": [
"codex"
]
},
{
"name": "Codebase Recon",
"url": "https://github.com/yujiachen-y/codebase-recon-skill",
"owner": "yujiachen-y",
"repo": "codebase-recon-skill",
"description": "Analyze git history to understand a codebase before reading any code \u2014 auto-scales by repo size and cross-references hotspots with bug magnets to surface high-risk files, bus factor, and team momentum.",
"category": "Development & Workflow",
"source": "awesome-ai-plugins",
"install_url": "https://raw.githubusercontent.com/yujiachen-y/codebase-recon-skill/HEAD/.codex-plugin/plugin.json",
"platform": "codex",
"ecosystems": [
"codex"
]
},
{
"name": "CodeTruss",
"url": "https://github.com/DeliriumPulse/codetruss-plugins",
"owner": "DeliriumPulse",
"repo": "codetruss-plugins",
"description": "Local-first acceptance gate that checks coding-agent scope, sensitive surfaces, deterministic analyzers, and repository verification from immutable Git snapshots, then writes signed receipts before the PR.",
"category": "Development & Workflow",
"source": "awesome-ai-plugins",
"install_url": "https://raw.githubusercontent.com/DeliriumPulse/codetruss-plugins/HEAD/.codex-plugin/plugin.json",
"platform": "codex",
"ecosystems": [
"codex"
]
},
{
"name": "Codex Agenteam",
"url": "https://github.com/yimwoo/codex-agenteam",
"owner": "yimwoo",
"repo": "codex-agenteam",
"description": "Specialist AI agents (researcher, PM, architect, developer, QA, reviewer) orchestrated as a configurable team pipeline.",
"category": "Development & Workflow",
"source": "awesome-ai-plugins",
"install_url": "https://raw.githubusercontent.com/yimwoo/codex-agenteam/HEAD/.codex-plugin/plugin.json",
"platform": "codex",
"ecosystems": [
"codex"
]
},
{
"name": "Codex Multi Auth",
"url": "https://github.com/ndycode/codex-multi-auth",
"owner": "ndycode",
"repo": "codex-multi-auth",
"description": "Multi-account OAuth manager for the official Codex CLI with switching, health checks, and recovery tools.",
"category": "Development & Workflow",
"source": "awesome-ai-plugins",
"install_url": "https://raw.githubusercontent.com/ndycode/codex-multi-auth/HEAD/.codex-plugin/plugin.json",
"platform": "codex",
"ecosystems": [
"codex"
]
},
{
"name": "Codex Reviewer",
"url": "https://github.com/schuettc/codex-reviewer",
"owner": "schuettc",
"repo": "codex-reviewer",
"description": "Second-pass review of Claude-driven plans and implementations.",
"category": "Development & Workflow",
"source": "awesome-ai-plugins",
"install_url": "https://raw.githubusercontent.com/schuettc/codex-reviewer/HEAD/.codex-plugin/plugin.json",
"platform": "codex",
"ecosystems": [
"codex"
]
},
{
"name": "Codex rg Guard",
"url": "https://github.com/Rycen7822/codex-rg-guard",
"owner": "Rycen7822",
"repo": "codex-rg-guard",
"description": "Budgeted `rg`/`grep` replacement for Codex that narrows broad searches before they waste model context.",
"category": "Development & Workflow",
"source": "awesome-ai-plugins",
"install_url": "https://raw.githubusercontent.com/Rycen7822/codex-rg-guard/HEAD/.codex-plugin/plugin.json",
"platform": "codex",
"ecosystems": [
"codex"
]
},
{
"name": "Codex TUI Proof",
"url": "https://github.com/bnc4vk/codex-tui-proof",
"owner": "bnc4vk",
"repo": "codex-tui-proof",
"description": "Visually validate real local terminal UIs in Codex's in-app browser with screenshots and session evidence.",
"category": "Development & Workflow",
"source": "awesome-ai-plugins",
"install_url": "https://raw.githubusercontent.com/bnc4vk/codex-tui-proof/HEAD/.codex-plugin/plugin.json",
"platform": "codex",
"ecosystems": [
"codex"
]
},
{
"name": "debt-ops",
"url": "https://github.com/bcanfield/agentic-tech-debt",
"owner": "bcanfield",
"repo": "agentic-tech-debt",
"description": "Catches AI-introduced tech debt at write-time: hooks log every deferral to a registry in your repo and a review skill ranks paydown by file churn.",
"category": "Development & Workflow",
"source": "awesome-ai-plugins",
"install_url": "https://raw.githubusercontent.com/bcanfield/agentic-tech-debt/HEAD/codex/.codex-plugin/plugin.json",
"platform": "codex",
"ecosystems": [
"codex"
]
},
{
"name": "Designer Skill",
"url": "https://github.com/Pythoughts-labs/designer-skill",
"owner": "Pythoughts-labs",
"repo": "designer-skill",
"description": "Plug-and-play MCP that gives your agent UI superpowers. One install: design skill + MCP server, zero config.",
"category": "Development & Workflow",
"source": "awesome-ai-plugins",
"install_url": "https://raw.githubusercontent.com/Pythoughts-labs/designer-skill/HEAD/.codex-plugin/plugin.json",
"platform": "codex",
"ecosystems": [
"codex"
]
},
{
"name": "Dev Skills",
"url": "https://github.com/Jason-chen-coder/dev-skills",
"owner": "Jason-chen-coder",
"repo": "dev-skills",
"description": "Team workflow skills for specs, plans, TDD, debugging, verification, review, branch finishing, and design context.",
"category": "Development & Workflow",
"source": "awesome-ai-plugins",
"install_url": "https://raw.githubusercontent.com/Jason-chen-coder/dev-skills/HEAD/.codex-plugin/plugin.json",
"platform": "codex",
"ecosystems": [
"codex"
]
},
{
"name": "Development Skills",
"url": "https://github.com/reidemeister94/development-skills",
"owner": "reidemeister94",
"repo": "development-skills",
"description": "Three-tier triage (PASS_THROUGH / LIGHT / FULL 4-phase) development workflow for Codex and Claude Code with language auto-detection (Python, Java, TypeScript, Swift, frontend) and a staff-reviewer subagent for fresh-eyes review on every change.",
"category": "Development & Workflow",
"source": "awesome-ai-plugins",
"install_url": "https://raw.githubusercontent.com/reidemeister94/development-skills/HEAD/.codex-plugin/plugin.json",
"platform": "codex",
"ecosystems": [
"codex"
]
},
{
"name": "Ditto",
"url": "https://github.com/ohad6k/ditto",
"owner": "ohad6k",
"repo": "ditto",
"description": "Mines selected evidence from local coding-agent sessions into private work, design, and writing profiles for Codex, Claude Code, and GitHub Copilot.",
"category": "Development & Workflow",
"source": "awesome-ai-plugins",
"install_url": "https://raw.githubusercontent.com/ohad6k/ditto/HEAD/.codex-plugin/plugin.json",
"platform": "codex",
"ecosystems": [
"codex"
]
},
{
"name": "Docflow",
"url": "https://github.com/MedAdemBHA/docflow",
"owner": "MedAdemBHA",
"repo": "docflow",
"description": "Lightweight documentation memory for AI coding agents that scaffolds a 7-category docs tree, runs readiness checks, validates docs before finishing, and keeps a monthly changelog across Claude Code and Codex.",
"category": "Development & Workflow",
"source": "awesome-ai-plugins",
"install_url": "https://raw.githubusercontent.com/MedAdemBHA/docflow/HEAD/.codex-plugin/plugin.json",
"platform": "codex",
"ecosystems": [
"codex"
]
},
{
"name": "ejentum-mcp",
"url": "https://github.com/ejentum/ejentum-mcp",
"owner": "ejentum",
"repo": "ejentum-mcp",
"description": "MCP server exposing reasoning, code, anti-deception, and memory harness tools for Codex.",
"category": "Development & Workflow",
"source": "awesome-ai-plugins",
"install_url": "https://raw.githubusercontent.com/ejentum/ejentum-mcp/HEAD/.codex-plugin/plugin.json",
"platform": "codex",
"ecosystems": [
"codex"
]
},
{
"name": "Epic Harness",
"url": "https://github.com/epicsagas/epic-harness",
"owner": "epicsagas",
"repo": "epic-harness",
"description": "Auto-trigger quality skills + self-evolving agent harness \u2014 orbit (spec-to-ship), evolve (skill mutation), team (multi-agent), TDD, check, ship, simplify, debug, perf, secure.",
"category": "Development & Workflow",
"source": "awesome-ai-plugins",
"install_url": "https://raw.githubusercontent.com/epicsagas/epic-harness/HEAD/.codex-plugin/plugin.json",
"platform": "codex",
"ecosystems": [
"codex"
]
},
{
"name": "Espresso",
"url": "https://github.com/mirkobozzetto/espresso",
"owner": "mirkobozzetto",
"repo": "espresso",
"description": "Full token-saving stack in one plugin - output compression, global rules, RTK hook, Caveman ultra, GitNexus config. Detects existing setup, installs only what's missing. Works on Claude Code and Codex.",
"category": "Development & Workflow",
"source": "awesome-ai-plugins",
"install_url": "https://raw.githubusercontent.com/mirkobozzetto/espresso/HEAD/.codex-plugin/plugin.json",
"platform": "codex",
"ecosystems": [
"codex"
]
},
{
"name": "Frappe Agent",
"url": "https://github.com/Dkm0315/frappe-agent",
"owner": "Dkm0315",
"repo": "frappe-agent",
"description": "Frappe and ERPNext coding, customization, bench, and review intelligence for Codex.",
"category": "Development & Workflow",
"source": "awesome-ai-plugins",
"install_url": "https://raw.githubusercontent.com/Dkm0315/frappe-agent/HEAD/.codex-plugin/plugin.json",
"platform": "codex",
"ecosystems": [
"codex"
]
},
{
"name": "GCF Proxy",
"url": "https://github.com/blackwell-systems/gcf-codex-plugin",
"owner": "blackwell-systems",
"repo": "gcf-codex-plugin",
"description": "Save 71% on MCP tool call tokens by wrapping any server with GCF encoding, with session stats hook and setup skill.",
"category": "Development & Workflow",
"source": "awesome-ai-plugins",
"install_url": "https://raw.githubusercontent.com/blackwell-systems/gcf-codex-plugin/HEAD/.codex-plugin/plugin.json",
"platform": "codex",
"ecosystems": [
"codex"
]
},
{
"name": "Generative Media Skills",
"url": "https://github.com/SamurAIGPT/Generative-Media-Skills",
"owner": "SamurAIGPT",
"repo": "Generative-Media-Skills",
"description": "13 skills for image, video, and audio generation using 100+ models - FLUX, Midjourney v7, Veo3, Kling 3.0, Suno, and HunyuanVideo via muapi.ai.",
"category": "Development & Workflow",
"source": "awesome-ai-plugins",
"install_url": "https://raw.githubusercontent.com/SamurAIGPT/Generative-Media-Skills/HEAD/.codex-plugin/plugin.json",
"platform": "codex",
"ecosystems": [
"codex"
]
},
{
"name": "GrayMatter",
"url": "https://github.com/ValkyrLabs/GrayMatter",
"owner": "ValkyrLabs",
"repo": "GrayMatter",
"description": "Durable memory and shared graph state for Codex and OpenClaw agents, with live ValkyrAI schema awareness.",
"category": "Development & Workflow",
"source": "awesome-ai-plugins",
"install_url": "https://raw.githubusercontent.com/ValkyrLabs/GrayMatter/HEAD/.codex-plugin/plugin.json",
"platform": "codex",
"ecosystems": [
"codex"
]
},
{
"name": "Hera Agent Godot",
"url": "https://github.com/NotNull92/hera-agent-godot",
"owner": "NotNull92",
"repo": "hera-agent-godot",
"description": "Drives a live Godot 4.x editor through the low-token Hera CLI \u2014 scene, node, and signal edits, play control, and runtime QA with verifiable compact JSON output, with the companion addon published on the official Godot Asset Store.",
"category": "Development & Workflow",
"source": "awesome-ai-plugins",
"install_url": "https://raw.githubusercontent.com/NotNull92/hera-agent-godot/HEAD/plugins/hera-godot/.codex-plugin/plugin.json",
"platform": "codex",
"ecosystems": [
"codex"
]
},
{
"name": "HOL Guard Plugin",
"url": "https://github.com/hashgraph-online/hol-guard-plugin",
"owner": "hashgraph-online",
"repo": "hol-guard-plugin",
"description": "AI antivirus workflow for Codex, Claude Code, Cursor, Gemini, OpenCode, MCP servers, skills, and plugin release checks with local approvals and receipts.",
"category": "Development & Workflow",
"source": "awesome-ai-plugins",
"install_url": "https://raw.githubusercontent.com/hashgraph-online/hol-guard-plugin/HEAD/.codex-plugin/plugin.json",
"platform": "codex",
"ecosystems": [
"codex"
]
},
{
"name": "Honcho",
"url": "https://github.com/plastic-labs/codex-honcho",
"owner": "plastic-labs",
"repo": "codex-honcho",
"description": "Persistent cross-session memory for Codex powered by Honcho \u2014 lifecycle hooks capture each session and inject relevant context back at session start, so Codex remembers your preferences, projects, and decisions across restarts.",
"category": "Development & Workflow",
"source": "awesome-ai-plugins",
"install_url": "https://raw.githubusercontent.com/plastic-labs/codex-honcho/HEAD/.codex-plugin/plugin.json",
"platform": "codex",
"ecosystems": [
"codex"
]
},
{
"name": "HOTL Plugin",
"url": "https://github.com/yimwoo/hotl-plugin",
"owner": "yimwoo",
"repo": "hotl-plugin",
"description": "Human-on-the-Loop AI coding workflow plugin for Codex, Claude Code, and Cline with structured planning, review, and verification guardrails.",
"category": "Development & Workflow",
"source": "awesome-ai-plugins",
"install_url": "https://raw.githubusercontent.com/yimwoo/hotl-plugin/HEAD/.codex-plugin/plugin.json",
"platform": "codex",
"ecosystems": [
"codex"
]
},
{
"name": "Krypton",
"url": "https://github.com/jturntdev/krypton",
"owner": "jturntdev",
"repo": "krypton",
"description": "Goal-based planning and proof gate for Codex and Claude Code that turns requests into ownership, cutover, review-gate, and acceptance-evidence plans.",
"category": "Development & Workflow",
"source": "awesome-ai-plugins",
"install_url": "https://raw.githubusercontent.com/jturntdev/krypton/HEAD/.codex-plugin/plugin.json",
"platform": "codex",
"ecosystems": [
"codex"
]
},
{
"name": "LLM Transpile",
"url": "https://github.com/epicsagas/llm-transpile",
"owner": "epicsagas",
"repo": "llm-transpile",
"description": "Auto-compress .md, .html, and .txt files via PostToolUse hook, cutting context usage by up to 40% with zero workflow change.",
"category": "Development & Workflow",
"source": "awesome-ai-plugins",
"install_url": "https://raw.githubusercontent.com/epicsagas/llm-transpile/HEAD/.codex-plugin/plugin.json",
"platform": "codex",
"ecosystems": [
"codex"
]
},
{
"name": "LVTD Skills",
"url": "https://github.com/LVTD-LLC/skills",
"owner": "LVTD-LLC",
"repo": "skills",
"description": "Reusable Agent Skills for Codex, Claude Code, and compatible clients, covering Django, Rust, Cookiecutter, SEO, traction, product marketing, and nonfiction publishing workflows.",
"category": "Development & Workflow",
"source": "awesome-ai-plugins",
"install_url": "https://raw.githubusercontent.com/LVTD-LLC/skills/HEAD/.codex-plugin/plugin.json",
"platform": "codex",
"ecosystems": [
"codex"
]
},
{
"name": "Maestro",
"url": "https://github.com/mbanderas/maestro",
"owner": "mbanderas",
"repo": "maestro",
"description": "Opt-in local multi-CLI fusion engine and orchestration doctrine that fans a prompt across model CLIs, then judges and synthesizes one grounded answer.",
"category": "Development & Workflow",
"source": "awesome-ai-plugins",
"install_url": "https://raw.githubusercontent.com/mbanderas/maestro/HEAD/.codex-plugin/plugin.json",
"platform": "codex",
"ecosystems": [
"codex"
]
},
{
"name": "MailAgent",
"url": "https://github.com/Alex0nder/MailAgent",
"owner": "Alex0nder",
"repo": "MailAgent",
"description": "Temporary inboxes for Codex \u2014 OTP, magic links, signup QA, simulate-first autotests (23 MCP tools).",
"category": "Development & Workflow",
"source": "awesome-ai-plugins",
"install_url": "https://raw.githubusercontent.com/Alex0nder/MailAgent/HEAD/examples/codex/plugin/.codex-plugin/plugin.json",
"platform": "codex",
"ecosystems": [
"codex"
]
},
{
"name": "memi",
"url": "https://github.com/sarveshsea/memi",
"owner": "sarveshsea",
"repo": "memi",
"description": "Interface understanding and design-system memory for Codex, Claude Code, Cursor, and MCP agents with UI audits, Tailwind token extraction, shadcn registry workflows, and a bundled Codex plugin.",
"category": "Development & Workflow",
"source": "awesome-ai-plugins",
"install_url": "https://raw.githubusercontent.com/sarveshsea/memi/HEAD/plugins/memoire/.codex-plugin/plugin.json",
"platform": "codex",
"ecosystems": [
"codex"
]
},
{
"name": "Ontoly",
"url": "https://github.com/0xsarwagya/ontoly-codex-plugin",
"owner": "0xsarwagya",
"repo": "ontoly-codex-plugin",
"description": "Deterministic Software Graph workflows for Codex: architecture review, dependency analysis, request tracing, configuration analysis, and impact analysis.",
"category": "Development & Workflow",
"source": "awesome-ai-plugins",
"install_url": "https://raw.githubusercontent.com/0xsarwagya/ontoly-codex-plugin/HEAD/.codex-plugin/plugin.json",
"platform": "codex",
"ecosystems": [
"codex"
]
},
{
"name": "Open Dynamic Workflows",
"url": "https://github.com/Suraj1235/open-dynamic-workflows",
"owner": "Suraj1235",
"repo": "open-dynamic-workflows",
"description": "Local-first MIT dynamic multi-agent workflows for Codex, OpenCode, Antigravity, Cursor, and VS Code with a daemon, MCP bridge, Codex skills, OpenCode plugin, and bring-your-own-model support.",
"category": "Development & Workflow",
"source": "awesome-ai-plugins",
"install_url": "https://raw.githubusercontent.com/Suraj1235/open-dynamic-workflows/HEAD/packages/codex-adapter/.codex-plugin/plugin.json",
"platform": "codex",
"ecosystems": [
"codex"
]
},
{
"name": "Personal Data Protection",
"url": "https://github.com/AltByteSG/personal-data-protection-skill",
"owner": "AltByteSG",
"repo": "personal-data-protection-skill",
"description": "Engineer-facing personal-data-protection compliance reference \u2014 Singapore PDPA, Thailand PDPA, Indonesia UU PDP, Malaysia PDPA (Act 709 + 2024 Amendments), Philippines DPA \u2014 organised by where in the stack each obligation lands, with checklists, breach-response runbook, and a developer-view divergence table across all five.",
"category": "Development & Workflow",
"source": "awesome-ai-plugins",
"install_url": "https://raw.githubusercontent.com/AltByteSG/personal-data-protection-skill/HEAD/.codex-plugin/plugin.json",
"platform": "codex",
"ecosystems": [
"codex"
]
},
{
"name": "Praxis",
"url": "https://github.com/ouonet/praxis",
"owner": "ouonet",
"repo": "praxis",
"description": "Intent-driven workflow skills for coding agents: describe what done looks like, not the steps. Triage-first design keeps token costs low across design, TDD, debug, review, and release.",
"category": "Development & Workflow",
"source": "awesome-ai-plugins",
"install_url": "https://raw.githubusercontent.com/ouonet/praxis/HEAD/.codex-plugin/plugin.json",
"platform": "codex",
"ecosystems": [
"codex"
]
},
{
"name": "Project Autopilot",
"url": "https://github.com/AlexMi64/codex-project-autopilot",
"owner": "AlexMi64",
"repo": "codex-project-autopilot",
"description": "Turn an idea into a structured project workflow with planning, execution, verification, and handoff.",
"category": "Development & Workflow",
"source": "awesome-ai-plugins",
"install_url": "https://raw.githubusercontent.com/AlexMi64/codex-project-autopilot/HEAD/.codex-plugin/plugin.json",
"platform": "codex",
"ecosystems": [
"codex"
]
},
{
"name": "Quality Engineering Skills",
"url": "https://github.com/RBraga01/Quality-Engineering-Skills",
"owner": "RBraga01",
"repo": "Quality-Engineering-Skills",
"description": "22 structured quality engineering skills for automotive and manufacturing: ISO 9001, IATF 16949, AIAG-VDA FMEA, VDA 6.3, PPAP, APQP, SPC, MSA.",
"category": "Development & Workflow",
"source": "awesome-ai-plugins",
"install_url": "https://raw.githubusercontent.com/RBraga01/Quality-Engineering-Skills/HEAD/.codex-plugin/plugin.json",
"platform": "codex",
"ecosystems": [
"codex"
]
},
{
"name": "RAG Reviewer",
"url": "https://github.com/mimfort/rag_for_git",
"owner": "mimfort",
"repo": "rag_for_git",
"description": "Agentic PR review: hybrid RAG + code graph via MCP, review skills for Codex.",
"category": "Development & Workflow",
"source": "awesome-ai-plugins",
"install_url": "https://raw.githubusercontent.com/mimfort/rag_for_git/HEAD/.codex-plugin/plugin.json",
"platform": "codex",
"ecosystems": [
"codex"
]
},
{
"name": "Reviewable HTML Workbench",
"url": "https://github.com/u-ichi/reviewable-html-workbench",
"owner": "u-ichi",
"repo": "reviewable-html-workbench",
"description": "Generate reviewable HTML documents, serve previews, collect inline review comments, and feed review outcomes back into agent workflows.",
"category": "Development & Workflow",
"source": "awesome-ai-plugins",
"install_url": "https://raw.githubusercontent.com/u-ichi/reviewable-html-workbench/HEAD/.codex-plugin/plugin.json",
"platform": "codex",
"ecosystems": [
"codex"
]
},
{
"name": "River Review",
"url": "https://github.com/s977043/river-review",
"owner": "s977043",
"repo": "river-review",
"description": "Versioned Skill Registry of code-review skills driven by a perspective-based review agent (code, security, performance, architecture, testing, adversarial) that verifies findings against the diff.",
"category": "Development & Workflow",
"source": "awesome-ai-plugins",
"install_url": "https://raw.githubusercontent.com/s977043/river-review/HEAD/.codex-plugin/plugin.json",
"platform": "codex",
"ecosystems": [
"codex"
]
},
{
"name": "RoadmapSmith",
"url": "https://github.com/PapiScholz/roadmapsmith",
"owner": "PapiScholz",
"repo": "roadmapsmith",
"description": "Evidence-backed ROADMAP.md workflows for AI coding agents with validation, sync, and roadmap generation across any tech stack.",
"category": "Development & Workflow",
"source": "awesome-ai-plugins",
"install_url": "https://raw.githubusercontent.com/PapiScholz/roadmapsmith/HEAD/.codex-plugin/plugin.json",
"platform": "codex",
"ecosystems": [
"codex"
]
},
{
"name": "Runtype Skills",
"url": "https://github.com/runtypelabs/skills",
"owner": "runtypelabs",
"repo": "skills",
"description": "Supercharge your coding agent for AI product development \u2014 build, deploy, and operate agents, flows, tools, and surfaces on Runtype's managed edge runtime.",
"category": "Development & Workflow",
"source": "awesome-ai-plugins",
"install_url": "https://raw.githubusercontent.com/runtypelabs/skills/HEAD/.codex-plugin/plugin.json",
"platform": "codex",
"ecosystems": [
"codex"
]
},
{
"name": "Sealos",
"url": "https://github.com/labring/sealos-skills",
"owner": "labring",
"repo": "sealos-skills",
"description": "Deploy apps to Sealos Cloud from Codex with readiness checks, Dockerfile generation, Compose conversion, image builds, and rollout updates.",
"category": "Development & Workflow",
"source": "awesome-ai-plugins",