-
Notifications
You must be signed in to change notification settings - Fork 207
Expand file tree
/
Copy pathplugins.json
More file actions
1563 lines (1563 loc) · 81.4 KB
/
Copy pathplugins.json
File metadata and controls
1563 lines (1563 loc) · 81.4 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-codex-plugins",
"version": "1.0.0",
"last_updated": "2026-07-08",
"total": 155,
"categories": [
"Development & Workflow",
"Tools & Integrations"
],
"plugins": [
{
"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-codex-plugins",
"install_url": "https://raw.githubusercontent.com/RBraga01/a-team/HEAD/.codex-plugin/plugin.json"
},
{
"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-codex-plugins",
"install_url": "https://raw.githubusercontent.com/GanyuanRan/Aegis/HEAD/.codex-plugin/plugin.json"
},
{
"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-codex-plugins",
"install_url": "https://raw.githubusercontent.com/JeongJaeSoon/agent-guard/HEAD/plugins/agent-guard/.codex-plugin/plugin.json"
},
{
"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-codex-plugins",
"install_url": "https://raw.githubusercontent.com/yfge/agent-harness-skills/HEAD/.codex-plugin/plugin.json"
},
{
"name": "Agent Workflow System",
"url": "https://github.com/1139030773-cmd/agent-workflow-system",
"owner": "1139030773-cmd",
"repo": "agent-workflow-system",
"description": "一套中文AI工作流系统:7个协作技能 + 行为规范宪法 + 会话恢复机制,模糊目标→可执行任务,全生命周期引导。Codex & Claude Code 双平台,新手友好。",
"category": "Development & Workflow",
"source": "awesome-codex-plugins",
"install_url": "https://raw.githubusercontent.com/1139030773-cmd/agent-workflow-system/HEAD/plugins/agent-workflow-system/.codex-plugin/plugin.json"
},
{
"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-codex-plugins",
"install_url": "https://raw.githubusercontent.com/Humiris/wwa-transform/HEAD/.codex-plugin/plugin.json"
},
{
"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-codex-plugins",
"install_url": "https://raw.githubusercontent.com/boshu2/agentops/HEAD/.codex-plugin/plugin.json"
},
{
"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-codex-plugins",
"install_url": "https://raw.githubusercontent.com/vishal2612200/agentpack/HEAD/.codex-plugin/plugin.json"
},
{
"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-codex-plugins",
"install_url": "https://raw.githubusercontent.com/fr33dr4g0n/agentry-public/HEAD/plugins/agentry/.codex-plugin/plugin.json"
},
{
"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-codex-plugins",
"install_url": "https://raw.githubusercontent.com/AgiFlow/ai-plugin/HEAD/.codex-plugin/plugin.json"
},
{
"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-codex-plugins",
"install_url": "https://raw.githubusercontent.com/gustavo-meilus/aiboarding/HEAD/.codex-plugin/plugin.json"
},
{
"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-codex-plugins",
"install_url": "https://raw.githubusercontent.com/epicsagas/alcove/HEAD/.codex-plugin/plugin.json"
},
{
"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-codex-plugins",
"install_url": "https://raw.githubusercontent.com/biefan/anchor/HEAD/.codex-plugin/plugin.json"
},
{
"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 — turns codebases into coherent agent workspaces.",
"category": "Development & Workflow",
"source": "awesome-codex-plugins",
"install_url": "https://raw.githubusercontent.com/study8677/antigravity-workspace-template/HEAD/.codex-plugin/plugin.json"
},
{
"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 — so new changes land where the project says they belong across Claude Code, Cursor, and Codex CLI.",
"category": "Development & Workflow",
"source": "awesome-codex-plugins",
"install_url": "https://raw.githubusercontent.com/archcore-ai/plugin/HEAD/plugins/archcore/.codex-plugin/plugin.json"
},
{
"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-codex-plugins",
"install_url": "https://raw.githubusercontent.com/armoriq/armorCodex/HEAD/plugins/armorcodex/.codex-plugin/plugin.json"
},
{
"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-codex-plugins",
"install_url": "https://raw.githubusercontent.com/GSkuza/BABOK_ANALYST/HEAD/.codex-plugin/plugin.json"
},
{
"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-codex-plugins",
"install_url": "https://raw.githubusercontent.com/BB-84C/bgs-modding-superpowers/HEAD/.codex-plugin/plugin.json"
},
{
"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-codex-plugins",
"install_url": "https://raw.githubusercontent.com/echoVic/boss-skill/HEAD/.codex-plugin/plugin.json"
},
{
"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-codex-plugins",
"install_url": "https://raw.githubusercontent.com/unitedideas/bringyour-mcp/HEAD/.codex-plugin/plugin.json"
},
{
"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 — 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-codex-plugins",
"install_url": "https://raw.githubusercontent.com/hyhmrright/brooks-lint/HEAD/.codex-plugin/plugin.json"
},
{
"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-codex-plugins",
"install_url": "https://raw.githubusercontent.com/x4cc3/casefile/HEAD/.codex-plugin/plugin.json"
},
{
"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-codex-plugins",
"install_url": "https://raw.githubusercontent.com/sendbird/cc-plugin-codex/HEAD/.codex-plugin/plugin.json"
},
{
"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-codex-plugins",
"install_url": "https://raw.githubusercontent.com/dadwadw233/claude-code-harness/HEAD/.codex-plugin/plugin.json"
},
{
"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 — engineering, marketing, product, compliance, and more.",
"category": "Development & Workflow",
"source": "awesome-codex-plugins",
"install_url": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/HEAD/.codex-plugin/plugin.json"
},
{
"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-codex-plugins",
"install_url": "https://raw.githubusercontent.com/nyldn/claude-octopus/HEAD/.codex-plugin/plugin.json"
},
{
"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-codex-plugins",
"install_url": "https://raw.githubusercontent.com/whit3rabbit/clean-room-skill/HEAD/.codex-plugin/plugin.json"
},
{
"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 — 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-codex-plugins",
"install_url": "https://raw.githubusercontent.com/yujiachen-y/codebase-recon-skill/HEAD/.codex-plugin/plugin.json"
},
{
"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-codex-plugins",
"install_url": "https://raw.githubusercontent.com/yimwoo/codex-agenteam/HEAD/.codex-plugin/plugin.json"
},
{
"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-codex-plugins",
"install_url": "https://raw.githubusercontent.com/ndycode/codex-multi-auth/HEAD/.codex-plugin/plugin.json"
},
{
"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-codex-plugins",
"install_url": "https://raw.githubusercontent.com/schuettc/codex-reviewer/HEAD/.codex-plugin/plugin.json"
},
{
"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-codex-plugins",
"install_url": "https://raw.githubusercontent.com/Rycen7822/codex-rg-guard/HEAD/.codex-plugin/plugin.json"
},
{
"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-codex-plugins",
"install_url": "https://raw.githubusercontent.com/bcanfield/agentic-tech-debt/HEAD/codex/.codex-plugin/plugin.json"
},
{
"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-codex-plugins",
"install_url": "https://raw.githubusercontent.com/Pythoughts-labs/designer-skill/HEAD/.codex-plugin/plugin.json"
},
{
"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-codex-plugins",
"install_url": "https://raw.githubusercontent.com/Jason-chen-coder/dev-skills/HEAD/.codex-plugin/plugin.json"
},
{
"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-codex-plugins",
"install_url": "https://raw.githubusercontent.com/reidemeister94/development-skills/HEAD/.codex-plugin/plugin.json"
},
{
"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-codex-plugins",
"install_url": "https://raw.githubusercontent.com/ejentum/ejentum-mcp/HEAD/.codex-plugin/plugin.json"
},
{
"name": "Epic Harness",
"url": "https://github.com/epicsagas/epic-harness",
"owner": "epicsagas",
"repo": "epic-harness",
"description": "Auto-trigger quality skills + self-evolving agent harness — orbit (spec-to-ship), evolve (skill mutation), team (multi-agent), TDD, check, ship, simplify, debug, perf, secure.",
"category": "Development & Workflow",
"source": "awesome-codex-plugins",
"install_url": "https://raw.githubusercontent.com/epicsagas/epic-harness/HEAD/.codex-plugin/plugin.json"
},
{
"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-codex-plugins",
"install_url": "https://raw.githubusercontent.com/mirkobozzetto/espresso/HEAD/.codex-plugin/plugin.json"
},
{
"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-codex-plugins",
"install_url": "https://raw.githubusercontent.com/Dkm0315/frappe-agent/HEAD/.codex-plugin/plugin.json"
},
{
"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-codex-plugins",
"install_url": "https://raw.githubusercontent.com/blackwell-systems/gcf-codex-plugin/HEAD/.codex-plugin/plugin.json"
},
{
"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-codex-plugins",
"install_url": "https://raw.githubusercontent.com/SamurAIGPT/Generative-Media-Skills/HEAD/.codex-plugin/plugin.json"
},
{
"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-codex-plugins",
"install_url": "https://raw.githubusercontent.com/ValkyrLabs/GrayMatter/HEAD/.codex-plugin/plugin.json"
},
{
"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-codex-plugins",
"install_url": "https://raw.githubusercontent.com/hashgraph-online/hol-guard-plugin/HEAD/.codex-plugin/plugin.json"
},
{
"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 — 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-codex-plugins",
"install_url": "https://raw.githubusercontent.com/plastic-labs/codex-honcho/HEAD/.codex-plugin/plugin.json"
},
{
"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-codex-plugins",
"install_url": "https://raw.githubusercontent.com/yimwoo/hotl-plugin/HEAD/.codex-plugin/plugin.json"
},
{
"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-codex-plugins",
"install_url": "https://raw.githubusercontent.com/jturntdev/krypton/HEAD/.codex-plugin/plugin.json"
},
{
"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-codex-plugins",
"install_url": "https://raw.githubusercontent.com/epicsagas/llm-transpile/HEAD/.codex-plugin/plugin.json"
},
{
"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-codex-plugins",
"install_url": "https://raw.githubusercontent.com/LVTD-LLC/skills/HEAD/.codex-plugin/plugin.json"
},
{
"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-codex-plugins",
"install_url": "https://raw.githubusercontent.com/mbanderas/maestro/HEAD/.codex-plugin/plugin.json"
},
{
"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 — Singapore PDPA, Thailand PDPA, Indonesia UU PDP, Malaysia PDPA (Act 709 + 2024 Amendments), Philippines DPA — 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-codex-plugins",
"install_url": "https://raw.githubusercontent.com/AltByteSG/personal-data-protection-skill/HEAD/.codex-plugin/plugin.json"
},
{
"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-codex-plugins",
"install_url": "https://raw.githubusercontent.com/ouonet/praxis/HEAD/.codex-plugin/plugin.json"
},
{
"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-codex-plugins",
"install_url": "https://raw.githubusercontent.com/AlexMi64/codex-project-autopilot/HEAD/.codex-plugin/plugin.json"
},
{
"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-codex-plugins",
"install_url": "https://raw.githubusercontent.com/mimfort/rag_for_git/HEAD/.codex-plugin/plugin.json"
},
{
"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-codex-plugins",
"install_url": "https://raw.githubusercontent.com/hashgraph-online/registry-broker-codex-plugin/HEAD/.codex-plugin/plugin.json"
},
{
"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-codex-plugins",
"install_url": "https://raw.githubusercontent.com/u-ichi/reviewable-html-workbench/HEAD/.codex-plugin/plugin.json"
},
{
"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-codex-plugins",
"install_url": "https://raw.githubusercontent.com/s977043/river-review/HEAD/.codex-plugin/plugin.json"
},
{
"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-codex-plugins",
"install_url": "https://raw.githubusercontent.com/PapiScholz/roadmapsmith/HEAD/.codex-plugin/plugin.json"
},
{
"name": "Runtype Skills",
"url": "https://github.com/runtypelabs/skills",
"owner": "runtypelabs",
"repo": "skills",
"description": "Supercharge your coding agent for AI product development — build, deploy, and operate agents, flows, tools, and surfaces on Runtype's managed edge runtime.",
"category": "Development & Workflow",
"source": "awesome-codex-plugins",
"install_url": "https://raw.githubusercontent.com/runtypelabs/skills/HEAD/.codex-plugin/plugin.json"
},
{
"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-codex-plugins",
"install_url": "https://raw.githubusercontent.com/labring/sealos-skills/HEAD/.codex-plugin/plugin.json"
},
{
"name": "Session Orchestrator",
"url": "https://github.com/Kanevry/session-orchestrator",
"owner": "Kanevry",
"repo": "session-orchestrator",
"description": "Session orchestration for Claude Code, Codex, and Cursor IDE — structured planning, wave-based execution, VCS integration (GitLab + GitHub), quality gates, and clean session close-out with issue tracking.",
"category": "Development & Workflow",
"source": "awesome-codex-plugins",
"install_url": "https://raw.githubusercontent.com/Kanevry/session-orchestrator/HEAD/.codex-plugin/plugin.json"
},
{
"name": "Simple Man",
"url": "https://github.com/Maksim-Burtsev/simple-man",
"owner": "Maksim-Burtsev",
"repo": "simple-man",
"description": "High-compression communication mode for Codex agents that removes filler while preserving search, validation, and implementation effort.",
"category": "Development & Workflow",
"source": "awesome-codex-plugins",
"install_url": "https://raw.githubusercontent.com/Maksim-Burtsev/simple-man/HEAD/plugins/simple-man/.codex-plugin/plugin.json"
},
{
"name": "Spec-Driven Development",
"url": "https://github.com/Habib0x0/spec-driven-plugin",
"owner": "Habib0x0",
"repo": "spec-driven-plugin",
"description": "Three-phase Requirements → Design → Tasks workflow for Claude Code and Codex — EARS notation acceptance criteria, autonomous execution loop, cross-spec dependencies, and post-implementation acceptance testing.",
"category": "Development & Workflow",
"source": "awesome-codex-plugins",
"install_url": "https://raw.githubusercontent.com/Habib0x0/spec-driven-plugin/HEAD/.codex-plugin/plugin.json"
},
{
"name": "Spellbook Skills",
"url": "https://github.com/yyykf/spellbook-skills",
"owner": "yyykf",
"repo": "spellbook-skills",
"description": "Practical Claude Code and Codex skills for worktrees, PR/MR automation, review cleanup, YApi lookup, and Java DDD guidance.",
"category": "Development & Workflow",
"source": "awesome-codex-plugins",
"install_url": "https://raw.githubusercontent.com/yyykf/spellbook-skills/HEAD/.codex-plugin/plugin.json"
},
{
"name": "Staff Engineer Mode",
"url": "https://github.com/sirmarkz/staff-engineer-mode",
"owner": "sirmarkz",
"repo": "staff-engineer-mode",
"description": "Routes engineering design, delivery, reliability, security, operations, and maintenance prompts to focused staff-level specialist guidance for AI coding agents.",
"category": "Development & Workflow",
"source": "awesome-codex-plugins",
"install_url": "https://raw.githubusercontent.com/sirmarkz/staff-engineer-mode/HEAD/.codex-plugin/plugin.json"
},
{
"name": "Stark",
"url": "https://github.com/f0d010c/stark",
"owner": "f0d010c",
"repo": "stark",
"description": "UI/UX design plugin for AI coding agents with product-flow routing, platform-native interface guidance, asset planning, and shipped-reference analysis before code.",
"category": "Development & Workflow",
"source": "awesome-codex-plugins",
"install_url": "https://raw.githubusercontent.com/f0d010c/stark/HEAD/.codex-plugin/plugin.json"
},
{
"name": "Superloopy",
"url": "https://github.com/beefiker/superloopy",
"owner": "beefiker",
"repo": "superloopy",
"description": "Evidence-gated Codex loop harness with specialist skills, including near-pixel authorized website cloning backed by screenshots, assets, build output, and visual QA.",
"category": "Development & Workflow",
"source": "awesome-codex-plugins",
"install_url": "https://raw.githubusercontent.com/beefiker/superloopy/HEAD/.codex-plugin/plugin.json"
},
{
"name": "Superpipelines",
"url": "https://github.com/gustavo-meilus/superpipelines",
"owner": "gustavo-meilus",
"repo": "superpipelines",
"description": "Design and run write/review-isolated multi-agent AI pipelines across Codex, Claude Code, OpenCode, Cursor, Windsurf, and Cline.",
"category": "Development & Workflow",
"source": "awesome-codex-plugins",
"install_url": "https://raw.githubusercontent.com/gustavo-meilus/superpipelines/HEAD/.codex-plugin/plugin.json"
},
{
"name": "tailtest",
"url": "https://github.com/avansaber/tailtest-codex",
"owner": "avansaber",
"repo": "tailtest-codex",
"description": "Hook-powered test generation -- detects files changed during an agent turn and instructs Codex to write and run tests automatically. Zero config, 8 languages.",
"category": "Development & Workflow",
"source": "awesome-codex-plugins",
"install_url": "https://raw.githubusercontent.com/avansaber/tailtest-codex/HEAD/.codex-plugin/plugin.json"
},
{
"name": "Tandem Workflow Architect",
"url": "https://github.com/frumu-ai/tandem-codex-plugin",
"owner": "frumu-ai",
"repo": "tandem-codex-plugin",
"description": "Plan Tandem workflows in Codex, then validate, preview, and run them through the governed Tandem engine.",
"category": "Development & Workflow",
"source": "awesome-codex-plugins",
"install_url": "https://raw.githubusercontent.com/frumu-ai/tandem-codex-plugin/HEAD/.codex-plugin/plugin.json"
},
{
"name": "Tartiner Labs",
"url": "https://github.com/tartinerlabs/skills",
"owner": "tartinerlabs",
"repo": "skills",
"description": "Agent skills for git workflows, GitHub automation, security audits, code refactoring, and project tooling.",
"category": "Development & Workflow",
"source": "awesome-codex-plugins",
"install_url": "https://raw.githubusercontent.com/tartinerlabs/skills/HEAD/.codex-plugin/plugin.json"
},
{
"name": "Team Skills Platform",
"url": "https://github.com/Colin4k1024/tsp",
"owner": "Colin4k1024",
"repo": "tsp",
"description": "Role-based team delivery framework — Tech Lead-orchestrated 8-role system with 195+ skills, 27 specialist agents, 80+ commands, hooks, and ECC harness for Claude Code, Codex, and OpenCode.",
"category": "Development & Workflow",
"source": "awesome-codex-plugins",
"install_url": "https://raw.githubusercontent.com/Colin4k1024/tsp/HEAD/.codex-plugin/plugin.json"
},
{
"name": "Tool Advisor",
"url": "https://github.com/dragon1086/claude-skills",
"owner": "dragon1086",
"repo": "claude-skills",
"description": "Read-only meta-skill that scans your MCP servers, skills, plugins, and CLI tools, then suggests up to three ranked approaches (Methodical / Fast / Deep) with a copy-paste Quick Action table.",
"category": "Development & Workflow",
"source": "awesome-codex-plugins",
"install_url": "https://raw.githubusercontent.com/dragon1086/claude-skills/HEAD/.codex-plugin/plugin.json"
},
{
"name": "Unity Agent Workflows",
"url": "https://github.com/AUN-PN/unity-agent-workflows",
"owner": "AUN-PN",
"repo": "unity-agent-workflows",
"description": "Codex plugin and skill for Unity 2D agents that enforces \"No proof, no edit\" workflows with runtime-owner proof, Teach structure maps, and validation gates.",
"category": "Development & Workflow",
"source": "awesome-codex-plugins",
"install_url": "https://raw.githubusercontent.com/AUN-PN/unity-agent-workflows/HEAD/.codex-plugin/plugin.json"
},
{
"name": "Universal Design Principles",
"url": "https://github.com/HDeibler/universal-design-principles",
"owner": "HDeibler",
"repo": "universal-design-principles",
"description": "Cross-agent UX and product-design marketplace with a root Codex collection plugin, five focused plugin bundles, and 137 Agent Skills for design review, accessibility, layout, interaction, cognition, and product polish.",
"category": "Development & Workflow",
"source": "awesome-codex-plugins",
"install_url": "https://raw.githubusercontent.com/HDeibler/universal-design-principles/HEAD/.codex-plugin/plugin.json"
},
{
"name": "Velith",
"url": "https://github.com/epicsagas/Velith",
"owner": "epicsagas",
"repo": "Velith",
"description": "AI-native publishing system with a 6-phase pipeline from ideation to EPUB/PDF across 8 genres.",
"category": "Development & Workflow",
"source": "awesome-codex-plugins",
"install_url": "https://raw.githubusercontent.com/epicsagas/Velith/HEAD/.codex-plugin/plugin.json"
},
{
"name": "VibePortrait",
"url": "https://github.com/dadwadw233/VibePortrait",
"owner": "dadwadw233",
"repo": "VibePortrait",
"description": "Developer personality portrait generator — analyzes AI conversation history to produce MBTI type (16 color themes), capability radar, developer rating, 3-dimension famous match, and a persona skill that lets any AI \"think like you\".",
"category": "Development & Workflow",
"source": "awesome-codex-plugins",
"install_url": "https://raw.githubusercontent.com/dadwadw233/VibePortrait/HEAD/.codex-plugin/plugin.json"
},
{
"name": "VillageSQL Skills",
"url": "https://github.com/villagesql/villagesql-skills",
"owner": "villagesql",
"repo": "villagesql-skills",
"description": "Skills for VillageSQL including building extensions from scratch and porting PostgreSQL extensions to VillageSQL.",
"category": "Development & Workflow",
"source": "awesome-codex-plugins",
"install_url": "https://raw.githubusercontent.com/villagesql/villagesql-skills/HEAD/.codex-plugin/plugin.json"
},
{
"name": "Waggle",
"url": "https://github.com/Abhigyan-Shekhar/Waggle-mcp",
"owner": "Abhigyan-Shekhar",
"repo": "Waggle-mcp",
"description": "Persistent graph-backed conversational memory for Codex that recalls project decisions, constraints, preferences, and outcomes across sessions.",
"category": "Development & Workflow",
"source": "awesome-codex-plugins",
"install_url": "https://raw.githubusercontent.com/Abhigyan-Shekhar/Waggle-mcp/HEAD/.codex-plugin/plugin.json"
},
{
"name": "Wingman",
"url": "https://github.com/lsshym/wingman.ai",
"owner": "lsshym",
"repo": "wingman.ai",
"description": "Cross-platform AI coding-agent plugin for repo-local project memory, data-contract checks, and project-map discovery before agents edit code.",
"category": "Development & Workflow",
"source": "awesome-codex-plugins",
"install_url": "https://raw.githubusercontent.com/lsshym/wingman.ai/HEAD/.codex-plugin/plugin.json"
},
{
"name": "Workflow Kit",
"url": "https://github.com/Le-Xuan-Thang/workflow-kit",
"owner": "Le-Xuan-Thang",
"repo": "workflow-kit",
"description": "Full product lifecycle plugin for Claude Code, Codex CLI, and OpenCode: define Vision/Mission/Core → generate workplan → execute with mandatory cross-provider reviewer agents → synthesize deliverables → maintain, with parallel task execution, crash recovery, and AgentOps metrics.",
"category": "Development & Workflow",
"source": "awesome-codex-plugins",
"install_url": "https://raw.githubusercontent.com/Le-Xuan-Thang/workflow-kit/HEAD/.codex-plugin/plugin.json"
},
{
"name": "Writer's Loop",
"url": "https://github.com/xxsang/writers-loop",
"owner": "xxsang",
"repo": "writers-loop",
"description": "Structured AI writing workflow for planning, critique, revision, translation, style distillation, and opt-in local preference learning.",
"category": "Development & Workflow",
"source": "awesome-codex-plugins",
"install_url": "https://raw.githubusercontent.com/xxsang/writers-loop/HEAD/.codex-plugin/plugin.json"
},
{
"name": "Zagrosi Forge",
"url": "https://github.com/zagrosi-code/zagrosi-forge",
"owner": "zagrosi-code",
"repo": "zagrosi-forge",
"description": "Decompose broad project briefs into researched plans and implement sectioned work with TDD, quality gates, and traceability.",
"category": "Development & Workflow",
"source": "awesome-codex-plugins",
"install_url": "https://raw.githubusercontent.com/zagrosi-code/zagrosi-forge/HEAD/.codex-plugin/plugin.json"
},
{
"name": "Agent Message Queue",
"url": "https://github.com/avivsinai/agent-message-queue",
"owner": "avivsinai",
"repo": "agent-message-queue",
"description": "File-based inter-agent messaging with co-op mode, cross-project federation, and orchestrator integrations.",
"category": "Tools & Integrations",
"source": "awesome-codex-plugins",
"install_url": "https://raw.githubusercontent.com/avivsinai/agent-message-queue/HEAD/.codex-plugin/plugin.json"
},
{
"name": "Agent Vision",
"url": "https://github.com/zfifteen/agent-vision",
"owner": "zfifteen",
"repo": "agent-vision",
"description": "macOS-only local camera plugin for explicit snapshots, streaming controls, and file-backed image input.",
"category": "Tools & Integrations",
"source": "awesome-codex-plugins",
"install_url": "https://raw.githubusercontent.com/zfifteen/agent-vision/HEAD/.codex-plugin/plugin.json"
},
{
"name": "Agentgram",
"url": "https://github.com/jerryfane/agentgram",
"owner": "jerryfane",
"repo": "agentgram",
"description": "Send explicit Telegram messages from Codex and local AI agents through a Telegram bot token and chat id.",
"category": "Tools & Integrations",
"source": "awesome-codex-plugins",
"install_url": "https://raw.githubusercontent.com/jerryfane/agentgram/HEAD/.codex-plugin/plugin.json"
},
{
"name": "AgentGuards",
"url": "https://github.com/alelaguard/agentguards-plugins",
"owner": "alelaguard",
"repo": "agentguards-plugins",
"description": "LLM security guardrails for Codex with enforcing hooks and MCP tools: jailbreak and prompt-injection detection, web-content scanning, data-exfiltration blocking, and destructive-command authorization.",
"category": "Tools & Integrations",
"source": "awesome-codex-plugins",
"install_url": "https://raw.githubusercontent.com/alelaguard/agentguards-plugins/HEAD/codex/.codex-plugin/plugin.json"
},
{
"name": "Aient",
"url": "https://github.com/aient-ai/aient-codex-plugin",
"owner": "aient-ai",
"repo": "aient-codex-plugin",
"description": "AI operations plugin for Codex that connects production telemetry, problem lifecycle context, and remediation workflows through Aient's MCP server.",
"category": "Tools & Integrations",
"source": "awesome-codex-plugins",
"install_url": "https://raw.githubusercontent.com/aient-ai/aient-codex-plugin/HEAD/.codex-plugin/plugin.json"
},
{
"name": "Antigravity 2.0",
"url": "https://github.com/comprono/antigravity-2-codex-plugin",
"owner": "comprono",
"repo": "antigravity-2-codex-plugin",
"description": "Local Codex bridge for Antigravity desktop with setup checks, model limit summaries, DevTools UI automation, and safe project/chat handoff.",
"category": "Tools & Integrations",
"source": "awesome-codex-plugins",
"install_url": "https://raw.githubusercontent.com/comprono/antigravity-2-codex-plugin/HEAD/.codex-plugin/plugin.json"
},
{
"name": "Apple Productivity",
"url": "https://github.com/matk0shub/apple-productivity-mcp",
"owner": "matk0shub",
"repo": "apple-productivity-mcp",
"description": "Local Apple Calendar and Reminders tooling for macOS with Codex plugin adapters.",
"category": "Tools & Integrations",
"source": "awesome-codex-plugins",
"install_url": "https://raw.githubusercontent.com/matk0shub/apple-productivity-mcp/HEAD/plugins/apple-calendar/.codex-plugin/plugin.json"
},
{
"name": "AutoCAD Tianzheng Tools",
"url": "https://github.com/summer521521/AutoCAD_Tianzheng_plugin",
"owner": "summer521521",
"repo": "AutoCAD_Tianzheng_plugin",
"description": "Connects Codex to AutoCAD and Tianzheng HVAC through a local MCP server for DWG-aware HVAC drawing inspection and workflow automation.",
"category": "Tools & Integrations",
"source": "awesome-codex-plugins",
"install_url": "https://raw.githubusercontent.com/summer521521/AutoCAD_Tianzheng_plugin/HEAD/.codex-plugin/plugin.json"
},
{
"name": "AxonFlow",
"url": "https://github.com/getaxonflow/axonflow-codex-plugin",
"owner": "getaxonflow",
"repo": "axonflow-codex-plugin",
"description": "Runtime governance for Codex with policy enforcement on terminal commands, advisory checks for non-terminal tools via skills, PII/secret detection, and compliance-grade audit trails. Self-hosted via Docker.",
"category": "Tools & Integrations",
"source": "awesome-codex-plugins",
"install_url": "https://raw.githubusercontent.com/getaxonflow/axonflow-codex-plugin/HEAD/.codex-plugin/plugin.json"
},
{
"name": "Bitbucket CLI",
"url": "https://github.com/avivsinai/bitbucket-cli",
"owner": "avivsinai",
"repo": "bitbucket-cli",
"description": "Manage Bitbucket repos, PRs, branches, issues, webhooks, and pipelines for Data Center and Cloud.",
"category": "Tools & Integrations",
"source": "awesome-codex-plugins",
"install_url": "https://raw.githubusercontent.com/avivsinai/bitbucket-cli/HEAD/.codex-plugin/plugin.json"
},
{
"name": "Call-E",
"url": "https://github.com/CALLE-AI/call-e-integrations",
"owner": "CALLE-AI",
"repo": "call-e-integrations",
"description": "Plan, run, and inspect Call-E phone call workflows from Codex through the calle CLI.",
"category": "Tools & Integrations",
"source": "awesome-codex-plugins",
"install_url": "https://raw.githubusercontent.com/CALLE-AI/call-e-integrations/HEAD/packages/codex-plugin/plugin/.codex-plugin/plugin.json"
},
{
"name": "Canvas Apps Plugin Codex",
"url": "https://github.com/Ratnam-Mishra/canvas-apps-plugin-codex",
"owner": "Ratnam-Mishra",
"repo": "canvas-apps-plugin-codex",
"description": "Build and edit Microsoft Power Apps Canvas Apps using natural language and Canvas Authoring MCP server.",
"category": "Tools & Integrations",
"source": "awesome-codex-plugins",
"install_url": "https://raw.githubusercontent.com/Ratnam-Mishra/canvas-apps-plugin-codex/HEAD/.codex-plugin/plugin.json"
},
{
"name": "CarsXE",
"url": "https://github.com/carsxe/carsxe-codex-plugin",
"owner": "carsxe",
"repo": "carsxe-codex-plugin",
"description": "Decode VINs, license plates, market value, vehicle history, recalls, liens, OBD codes, and more via the CarsXE API.",
"category": "Tools & Integrations",
"source": "awesome-codex-plugins",
"install_url": "https://raw.githubusercontent.com/carsxe/carsxe-codex-plugin/HEAD/plugins/carsxe/.codex-plugin/plugin.json"
},
{
"name": "Chrome DevTools",
"url": "https://github.com/win4r/chrome-devtools-codex-plugin",
"owner": "win4r",
"repo": "chrome-devtools-codex-plugin",
"description": "One-click Codex plugin wrapper for chrome-devtools-mcp.",
"category": "Tools & Integrations",
"source": "awesome-codex-plugins",
"install_url": "https://raw.githubusercontent.com/win4r/chrome-devtools-codex-plugin/HEAD/.codex-plugin/plugin.json"
},
{
"name": "Codex Be Serious",
"url": "https://github.com/lulucatdev/codex-be-serious",
"owner": "lulucatdev",
"repo": "codex-be-serious",
"description": "Enforce formal, textbook-grade written register across all agent output.",
"category": "Tools & Integrations",
"source": "awesome-codex-plugins",
"install_url": "https://raw.githubusercontent.com/lulucatdev/codex-be-serious/HEAD/.codex-plugin/plugin.json"
},
{
"name": "Codex Mem",
"url": "https://github.com/2kDarki/codex-mem",
"owner": "2kDarki",
"repo": "codex-mem",
"description": "Automatically capture, compress, and inject session context back into future Codex sessions.",
"category": "Tools & Integrations",
"source": "awesome-codex-plugins",
"install_url": "https://raw.githubusercontent.com/2kDarki/codex-mem/HEAD/.codex-plugin/plugin.json"