
Claude Codex Plugin
- Updated March 25, 2026
- hirokazumiyaji/claude-codex-plugin
claude-codex-plugin is a Claude Code skill in the AI & Agent Building category. OpenAI Codex CLI integration for Claude Code — run Codex tasks directly from Claude
Key points
- claude-codex-plugin
- AI & Agent Building
- AI-coding skill
Claude Codex Plugin by the numbers
- Data as of Jul 7, 2026 (Skillselion catalog sync)
/plugin marketplace add hirokazumiyaji/claude-codex-plugin/plugin install claude-codex-plugin@claude-codex-plugin-marketplaceAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Last updated | March 25, 2026 |
|---|---|
| Repository | hirokazumiyaji/claude-codex-plugin ↗ |
What it does
OpenAI Codex CLI integration for Claude Code — run Codex tasks directly from Claude
README.md
Claude Codex Plugin
OpenAI Codex CLI integration for Claude Code.
Run Codex CLI tasks — code review, generation, refactoring, and more — directly from your Claude Code session.
Installation
1. Prerequisites
Install and authenticate the Codex CLI:
# Install via npm
npm install -g @openai/codex
# Install via Homebrew (macOS)
brew install --cask codex
Authenticate with one of:
# ChatGPT account (Plus / Pro / Team)
codex # select "Sign in with ChatGPT" in the interactive UI
# OpenAI API key
export OPENAI_API_KEY=sk-...
2. Install Plugin
Inside the Claude Code chat interface, run:
/plugin marketplace add hirokazumiyaji/claude-codex-plugin
/plugin marketplace update
/plugin install claude-codex-plugin@claude-codex-plugin-marketplace
Or via the Claude CLI:
claude plugin marketplace add hirokazumiyaji/claude-codex-plugin
claude plugin marketplace update
claude plugin install claude-codex-plugin@claude-codex-plugin-marketplace
If you manage marketplaces manually, you can also add this repository itself as a marketplace:
claude plugin marketplace add hirokazumiyaji/claude-codex-plugin
For full Claude Code plugin documentation, see the Claude Code plugin guide.
Usage
Run a Codex task
/codex <task description>
Examples:
/codex Review the current changes for bugs and security issues
/codex Write unit tests for src/auth/login.ts
/codex Refactor the `processOrder` function to reduce complexity
/codex Fix the failing test in tests/api.test.ts
Natural Language
You can also ask Claude naturally — the Codex agent will be used automatically:
- "Use Codex to review my changes"
- "Ask Codex to write tests for this module"
- "Run a Codex code review"
How It Works
- Claude receives your request
- The plugin checks that Codex CLI is installed and authenticated
- Claude invokes Codex CLI with a well-scoped prompt
- Codex runs in
full-automode (or a mode you specify) and applies or proposes changes - Claude presents the results grouped by type and severity
Skills
This plugin ships with cross-platform skills that work with Codex CLI and other supported agents:
| Skill | Description |
|---|---|
codex-code-review |
Review code changes for bugs, security issues, and quality problems |
Install skills directly to Codex CLI:
# Project-level
cp -r skills/codex-code-review .codex/skills/
# Global
cp -r skills/codex-code-review ~/.codex/skills/
Or use the skills package manager (if installed):
npx skills add hirokazumiyaji/claude-codex-plugin
Resources
License
MIT