TopGit
GitHub Repo Review

OpenAI Plugins: Example Codex Plugin Collection

openai/plugins

OpenAI Plugins is a repository of example plugins for OpenAI Codex, the company's coding agent. It's not a single tool you install and run; it's a curated set of worked examples plus the marketplace files that let Codex discover them. Each plugin lives under `plugins/<name>/` with a required manifest and optional extra surfaces like skills, MCP servers, agents, commands, and hooks.

OOpenAI Plugins: Example Codex Plugin Collection — open-source GitHub repository preview
Quick verdict

Reach for this repo if you're building a Codex plugin and want a real, working reference for the manifest layout and how skills, MCP servers, and hooks fit together in one bundle. Skip it if you're not on OpenAI Codex, or you expected a maintained framework - these are examples you copy and adapt, and the README is short on step-by-step setup.

Stars
★ 0
Forks
⑂ 0
Language
License
See repository
Topic
Updated
Jul 2026
Homepage
GitHub

The problem it solves

OpenAI Plugins exists because a Codex plugin has a specific shape - a `.codex-plugin/plugin.json` manifest, plus optional folders for skills, MCP configs, agents, commands, and hooks - and reading a spec doesn't tell you how those pieces combine in practice. Developers building their first plugin need concrete, working examples to copy from, and a marketplace file that shows Codex where to find them. This repo supplies both.

What is it?

OpenAI Plugins is OpenAI's official collection of example plugins for Codex. Per the README, each plugin sits under `plugins/<name>/` with a required `.codex-plugin/plugin.json` manifest and optional companion surfaces: a `skills/` folder, `.app.json`, `.mcp.json`, plugin-level `agents/`, `commands/`, a `hooks.json`, and `assets/`. A default marketplace at `.agents/plugins/marketplace.json` points at the `plugins/` directory, and API-key login users get a separate marketplace at `.agents/plugins/api_marketplace.json`.

Why it's getting attention

It's an official OpenAI repository - roughly 4,300 stars and 640 forks at the time of writing - which matters because it defines, by example, what a valid Codex plugin looks like. As Codex's plugin and marketplace model takes shape, the repo doubles as documentation-by-example: the README calls out richer bundles for Figma, Notion, iOS and macOS app building, web apps, and Expo, so developers can see full plugins rather than a bare manifest.

How this repository's GitHub stars have grown over time. Source: star-history.com.View the star history

Key features

  • Each plugin lives under `plugins/<name>/` with a required `.codex-plugin/plugin.json` manifest
  • Optional companion surfaces per plugin: `skills/`, `.app.json`, `.mcp.json`, `agents/`, `commands/`, `hooks.json`, and `assets/`
  • A default marketplace at `.agents/plugins/marketplace.json` that points Codex at the `plugins/` directory
  • A separate `api_marketplace.json` for API-key login users
  • Richer worked examples the README highlights: figma, notion, build-ios-apps, build-macos-apps, build-web-apps, and expo
  • Additional skill- and MCP-backed bundles for netlify, remotion, and google-slides

Best use cases

  • Learning the required `plugin.json` manifest layout before writing your own Codex plugin
  • Copying a working example - figma, notion, or expo - as a starting scaffold
  • Seeing how skills, MCP servers, agents, commands, and hooks combine inside one plugin
  • Setting up a plugin marketplace file so Codex can discover a team's plugins

How to install / try

The README doesn't spell out install commands. In practice you browse or clone the repo, and the marketplace file at `.agents/plugins/marketplace.json` is what points Codex at the `plugins/` directory. A separate `api_marketplace.json` covers API-key login users. Exact step-by-step setup - how you register the marketplace with Codex - is not clearly documented in the README, so check the Codex docs for the current flow.

How to use

You open `plugins/<name>/`, read its `.codex-plugin/plugin.json` manifest, and adapt the example to your own plugin - reusing the same folder structure for skills, MCP configs, agents, commands, and hooks. The README points to the Figma, Notion, and Expo plugins as the fuller examples to study first. Beyond the directory layout and marketplace files, the README does not document a detailed run-through, so treat the repo as a reference to copy from.

Strengths

  • It's the official OpenAI reference, so the manifest format matches what Codex actually expects
  • Concrete, varied examples rather than a bare spec - you can copy a real plugin and edit it
  • Shows the full plugin surface (skills, MCP, agents, commands, hooks) in one place
  • The marketplace files give you a working discovery setup to copy instead of guessing the format

Limitations & risks

  • The license isn't stated in the metadata provided, so reuse and redistribution terms are unclear - confirm on the repo before copying code into your own project
  • The README is short and doesn't give step-by-step install or usage instructions
  • It's only useful inside the OpenAI Codex ecosystem - the plugin format doesn't port to other agents
  • These are examples, not a maintained framework or library; you adapt them yourself and own the upkeep
View on GitHub

Alternatives

Anthropic Agent Skills - Anthropic's official system for adding pluggable capabilities to Claudesuperpowers - a community collection of skills for Claude Codecontinue - an open-source AI coding assistant with its own extensible model and tool setup

Who should try it — and who should skip

Developers building or evaluating a Codex plugin, and teams that want a working marketplace file to standardize how their plugins are discovered. If you're not using OpenAI Codex, or you wanted an installable, maintained tool rather than a set of examples to copy and adapt, this repo won't fit.

Frequently asked questions

What is OpenAI Plugins?

OpenAI Plugins is OpenAI's official repository of example plugins for Codex, its coding agent. Each plugin sits under `plugins/<name>/` with a required `.codex-plugin/plugin.json` manifest and optional folders for skills, MCP configs, agents, commands, and hooks.

Is this a tool or a collection of examples?

It's a collection. The repo is a curated set of example Codex plugins plus the marketplace files that let Codex find them - not a single application you install and run.

How do I install these plugins?

The README doesn't give explicit install commands. The marketplace file at `.agents/plugins/marketplace.json` points Codex at the `plugins/` directory, with a separate `api_marketplace.json` for API-key login users. The exact registration flow with Codex is not clearly documented here - check the Codex docs.

What's inside each plugin?

A required `.codex-plugin/plugin.json` manifest, and optionally a `skills/` folder, `.app.json`, `.mcp.json`, plugin-level `agents/` and `commands/`, a `hooks.json`, and `assets/`.

Which examples are the most complete?

The README highlights figma, notion, build-ios-apps, build-macos-apps, build-web-apps, and expo as the richer examples, plus netlify, remotion, and google-slides as additional skill- and MCP-backed bundles.

Source & attribution

Based on the official openai/plugins GitHub repository, including its README and project metadata.

Back to TopGit