Skip to content

hashgraph-online/awesome-codex-plugins


Awesome

Awesome Codex Plugins

A curated list of awesome OpenAI Codex plugins, skills, and resources.

PRs Welcome License Browse Registry

OpenAI launched plugins for Codex on March 26, 2026, packaging skills, MCP servers, and app integrations into shareable, installable bundles across the Codex app, CLI, and IDE extensions.


Contents


Official Plugins

Curated by OpenAI — available in the built-in Codex Plugin Directory
  • Box - Access and manage files.
  • Cloudflare - Manage Workers, Pages, DNS, and infrastructure.
  • Figma - Inspect designs, extract specs, and document components.
  • GitHub - Review changes, manage issues, and interact with repositories.
  • Gmail - Read, search, and compose emails.
  • Google Drive - Edit and manage files in Google Drive.
  • Hugging Face - Browse models, datasets, and spaces.
  • Linear - Create and manage issues, projects, and workflows.
  • Notion - Create and edit pages, databases, and content.
  • Sentry - Monitor errors, triage issues, and track performance.
  • Slack - Send messages, search channels, manage conversations.
  • Vercel - Deploy, preview, and manage Vercel projects.

Community Plugins

Third-party plugins built by the community. PRs welcome!

Development & Workflow

  • Registry Broker - Delegate tasks to specialist AI agents via the HOL Registry, plan, find, summon, and recover sessions.
  • AgentOps - DevOps layer for coding agents with flow, feedback, and memory that compounds between sessions.
  • Claude Code Skills - 223 production-ready skills, 23 agents, and 298 Python tools across 9 domains — engineering, marketing, product, compliance, and more.
  • Claude Octopus - Multi-LLM orchestration dispatching to 8 providers (Codex, Gemini, Copilot, Qwen, Perplexity, OpenRouter, Ollama, OpenCode) with Double Diamond workflows, adversarial review, and safety gates.
  • Codex Agenteam - Specialist AI agents (researcher, PM, architect, developer, QA, reviewer) orchestrated as a configurable team pipeline.
  • Codex Multi Auth - Multi-account OAuth manager for the official Codex CLI with switching, health checks, and recovery tools.
  • Codex Reviewer - Second-pass review of Claude-driven plans and implementations.
  • HOTL Plugin - Human-on-the-Loop AI coding workflow plugin for Codex, Claude Code, and Cline with structured planning, review, and verification guardrails.
  • Project Autopilot - Turn an idea into a structured project workflow with planning, execution, verification, and handoff.

Tools & Integrations

  • Agent Message Queue - File-based inter-agent messaging with co-op mode, cross-project federation, and orchestrator integrations.
  • Apple Productivity - Local Apple Calendar and Reminders tooling for macOS with Codex plugin adapters.
  • Bitbucket CLI - Manage Bitbucket repos, PRs, branches, issues, webhooks, and pipelines for Data Center and Cloud.
  • Chrome DevTools - One-click Codex plugin wrapper for chrome-devtools-mcp.
  • Codex Be Serious - Enforce formal, textbook-grade written register across all agent output.
  • Codex Mem - Automatically capture, compress, and inject session context back into future Codex sessions.
  • Context Pack - Generate compact first-pass repository briefings for coding agents before deeper exploration.
  • Jenkins CLI - GitHub CLI-style interface for Jenkins controllers with jobs, pipelines, runs, logs, artifacts, credentials, and nodes.
  • KiCad Happy - KiCad EDA skills for schematic analysis, PCB layout review, component sourcing, BOM management, and manufacturing preparation.
  • Langfuse Observability - Query traces, debug exceptions, analyze sessions, and manage prompts via MCP tools.
  • Launch Fast - Official Launch Fast plugin adapter for rapid SaaS deployment.
  • OC ChatGPT Multi Auth - Codex setup skill and OpenCode plugin for ChatGPT Plus/Pro OAuth, GPT-5/Codex presets, and multi-account failover.
  • OpenProject - Team collaboration via OpenProject integration.
  • OrgX - MCP access and initiative-aware skills for organizational workflows.
  • PANews Agent Toolkit - Crypto and blockchain news discovery, authenticated creator publishing workflows, and page-to-Markdown reading.
  • PapersFlow - Paper discovery, citation verification, graph exploration, and DeepScan analysis.
  • ru-text - Russian text quality — ~1,040 rules for typography, info-style, editorial, UX writing, and business correspondence.
  • Yandex Direct - GitHub-ready Codex plugin bundle for Yandex Direct, Wordstat, Metrika, and Roistat.

Plugin Development

Getting Started

Plugin Anatomy

my-plugin/
├── .codex-plugin/
│   └── plugin.json          # Required: name, version, description, skills path
├── skills/
│   └── my-skill/
│       ├── SKILL.md          # Required: skill instructions + metadata
│       ├── scripts/          # Optional: executable scripts
│       └── references/       # Optional: docs and templates
├── apps/                     # Optional: app integrations
└── mcp.json                  # Optional: MCP server configuration

Plugin Creator

Use the built-in skill to scaffold a new plugin:

$plugin-creator

Publishing

Currently no self-serve marketplace submission. Plugins are distributed via local marketplaces (~/.agents/plugins/marketplace.json), repo marketplaces ($REPO_ROOT/.agents/plugins/marketplace.json), or GitHub repos by pointing a marketplace source at a repo. OpenAI has stated third-party marketplace submissions are coming soon.

Scan Your Plugin

Before submitting a plugin, run the codex-plugin-scanner to check for security issues and best practices. It scores your plugin from 0-100 and generates actionable findings.

Quick Check

pip install codex-plugin-scanner
codex-plugin-scanner ./my-plugin

CI Integration

Add to your plugin's GitHub Actions as a PR gate:

- uses: hashgraph-online/codex-plugin-scanner/action@v1.1.0
  with:
    plugin_dir: "."
    min_score: 70
    fail_on_severity: high

Pre-commit Hook

Catch issues before they reach CI:

# .pre-commit-config.yaml
repos:
  - repo: https://github.com/hashgraph-online/codex-plugin-scanner
    rev: v1.1.0
    hooks:
      - id: codex-plugin-scanner

What It Checks

Category Max Points
Manifest Validation 25
Security 20
Best Practices 15
Marketplace 15
Skill Security 15
Code Quality 10

Plugins scoring 80+ get a "Verified by Scanner" badge in this list.

Guides & Articles

Related Projects

Plugin Trust Scores

Every plugin in this list is automatically ingested by the HOL Plugin Registry, which runs each through the codex-plugin-scanner to produce a trust score and security analysis.

Each plugin gets a detailed breakdown across six factors:

  • Installability - Can the plugin be installed and run without errors?
  • Maintenance - Is the repo actively maintained with clear documentation?
  • MCP Posture - How securely are MCP servers configured?
  • Plugin Security - Does the manifest follow security best practices?
  • Provenance - Can the publisher's identity be verified?
  • Publisher Quality - Does the publisher have a track record of quality releases?

You can embed a trust badge in your plugin's README:

[![Plugin Name on HOL Registry (Trust Score)](https://img.shields.io/endpoint?url=https%3A%2F%2Fhol.org%2Fapi%2Fregistry%2Fbadges%2Fplugin%3Fslug%3DOWNER%252FREPO%26metric%3Dtrust%26style%3Dfor-the-badge%26label%3DPlugin+Name)](https://hol.org/registry/plugins/OWNER%2FREPO)

Replace OWNER%2FREPO with your plugin's GitHub owner and repo name (URL-encoded slash). Metrics available: trust, security. Styles: flat, flat-square, plastic, for-the-badge, social.

Contributing

Contributions welcome! Please read the contribution guidelines first.

To add a plugin:

  1. Fork this repo
  2. Add your entry to the appropriate section following the existing format
  3. Submit a PR

Requirements:

  • Plugin must have a public GitHub repository
  • Must include .codex-plugin/plugin.json
  • Must be functional and well-documented

About

A curated list of awesome OpenAI Codex plugins, skills, and resources. See live plugins at: https://hol.org/registry/plugins

Topics

Resources

License

Code of conduct

Contributing

Security policy

Stars

Watchers

Forks

Releases

No releases published

Packages