The complete guide to finding, installing, and managing codex plugins for OpenAI Codex
Getting Started
Codex plugins extend OpenAI Codex with integrations for GitHub, Slack, Figma, and more. Install any plugin with a single npx command. Browse plugins, skills, and hooks on this site, then copy the install command and run it in your terminal.
Installing a Plugin
Plugins add full integrations to Codex. Find a plugin on the Plugins page, copy the install command, and run it in your project directory.
npx codex-marketplace add openai/plugins/plugins/github --plugin
Installing a Skill
Skills are standalone agent instructions that Codex can invoke for specialized tasks. Browse the Skills page and copy the install command.
npx codex-marketplace add Dimillian/Skills/github --skill
Installing a Hook
Hooks automate Codex lifecycle events — notifications, linting, git workflows, security scans, and more. Browse the Hooks page and copy the install command.
npx codex-marketplace add am-will/codex-skills/hooks/aitmpl-codex/automation/discord-notifications --hook
CLI Reference
The install CLI manages plugins, skills, and hooks. Use --plugin, --skill, or --hook flags to specify the item type. The add command downloads and configures the item in your Codex environment.
# Install a plugin
npx codex-marketplace add <owner/repo/path> --plugin
# Install a skill
npx codex-marketplace add <owner/repo/path> --skill
# Install a hook
npx codex-marketplace add <owner/repo/path> --hook
Requirements
You need Node.js 18+ and the OpenAI Codex CLI installed. Sign in with your ChatGPT account. Some plugins require additional API keys or environment variables — check each plugin's description for setup instructions.