Auto-discovered marketplace from hirokazumiyaji/claude-codex-plugin
npx claudepluginhub hirokazumiyaji/claude-codex-pluginOpenAI Codex CLI integration for Claude Code — run Codex tasks directly from Claude
OpenAI Codex CLI integration for Claude Code.
Run Codex CLI tasks — code review, generation, refactoring, and more — directly from your Claude Code session.
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-...
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.
/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
You can also ask Claude naturally — the Codex agent will be used automatically:
full-auto mode (or a mode you specify) and applies or proposes changesThis 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
MIT