Run a Codex review that challenges the implementation approach and design choices
Cancel an active background Codex job in this repository
Execute a Claude Code plan using Codex
Show Codex model aliases or set the workspace default model
Delegate investigation, an explicit fix request, or follow-up rescue work to the Codex rescue subagent
Internal helper contract for calling the codex-companion runtime from Claude Code
Internal guidance for presenting Codex helper output back to the user
Internal guidance for composing Codex and GPT-5.4 prompts for coding, review, diagnosis, and research tasks inside the Codex Claude Code plugin
Uses power tools
Uses Bash, Write, or Edit tools
No model invocation
Executes directly as bash, bypassing the AI model
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
Runs pre-commands
Contains inline bash commands via ! syntax
Runs pre-commands
Contains inline bash commands via ! syntax
A unified marketplace for Claude Code that brings together multiple AI coding agents. Currently includes:
cursor-agent login)codex login)In Claude Code, run the following commands:
/plugin marketplace add yangtau/claude-agents-plugins
/plugin install cursor@claude-agents
/plugin install codex@claude-agents
/reload-plugins
Verify with:
/cursor:setup
/codex:setup
| Command | Description |
|---|---|
/cursor:setup | Check cursor-agent availability and auth status |
/cursor:rescue <prompt> | Delegate investigation, fixes, or follow-up rescue work to Cursor Agent |
/cursor:review [focus] | Run a code review using Cursor Agent |
/cursor:model | List models, or set the workspace default model (/cursor:model <id>; --clear to reset) |
/cursor:status [job-id] | Show active and recent jobs |
/cursor:result [job-id] | Show output of a completed job |
/cursor:cancel [job-id] | Cancel a running background job |
/cursor:execute-plan [path] | Execute a Claude Code plan using Cursor Agent |
# Basic rescue request
/cursor:rescue "refactor the auth module to use JWT"
# With a specific model (overrides workspace default for this run only)
/cursor:rescue --model grok-4-20 "add error handling to the API layer"
# Set default model for this workspace (then omit --model on rescue runs)
/cursor:model grok-4-20
# Continue the previous rescue thread
/cursor:rescue --resume "continue the previous task"
# Run in background
/cursor:rescue --background "migrate the database schema"
# Execute a Claude Code plan (auto-detects latest plan in ~/.claude/plans/)
/cursor:execute-plan
# Or specify a plan file explicitly
/cursor:execute-plan ~/.claude/plans/my-plan.md
| Command | Description |
|---|---|
/codex:setup | Check Codex availability and auth status |
/codex:rescue <prompt> | Delegate investigation, fixes, or follow-up rescue work to the Codex rescue subagent |
/codex:review | Run a code review using Codex |
/codex:adversarial-review [focus] | Run an adversarial code review using Codex |
/codex:model | List models, or set the workspace default model (/codex:model <id>; --clear to reset) |
/codex:status [job-id] | Show active and recent jobs |
/codex:result [job-id] | Show output of a completed job |
/codex:cancel [job-id] | Cancel a running background job |
/codex:execute-plan [path] | Execute a Claude Code plan using Codex |
# Basic rescue request
/codex:rescue "refactor the auth module to use JWT"
# With a specific model (overrides workspace default for this run only)
/codex:rescue --model gpt-5.3-codex-spark "optimize the database queries"
# Set default model for this workspace (then omit --model on rescue runs)
/codex:model spark
# With reasoning effort level
/codex:rescue --effort high "design a new caching layer"
# Run in background
/codex:rescue --background "migrate the database schema"
# Resume last conversation
/codex:rescue --resume "continue the previous task"
# Run code review
/codex:review
# Execute a Claude Code plan (auto-detects latest plan in ~/.claude/plans/)
/codex:execute-plan
# Or specify a plan file explicitly
/codex:execute-plan ~/.claude/plans/my-plan.md
.claude-plugin/marketplace.json Marketplace registry
plugins/
cursor/ Cursor Agent plugin
.claude-plugin/plugin.json Plugin manifest
commands/ 8 slash commands
agents/cursor-rescue.md Auto-delegation subagent
skills/ Internal skills
scripts/ Companion scripts
codex/ Codex plugin (OpenAI)
.claude-plugin/plugin.json Plugin manifest
commands/ 9 slash commands (including execute-plan)
agents/codex-rescue.md Auto-delegation subagent
skills/ GPT-5.4 prompting, result handling
scripts/ Codex companion scripts
All commands invoke the respective CLI tools in headless mode under the hood:
cursor-agent -p --trustcodex --approval-mode full-auto (or similar)npx claudepluginhub yangtau/claude-agents-plugins --plugin codexUse Cursor Agent from Claude Code to delegate coding tasks and reviews.
Use Codex from Claude Code to review code or delegate tasks.
Cross-agent review workflow: Claude implements, Codex reviews
Use Copilot from Claude Code to review code or delegate tasks.
Use the Pi coding agent from Claude Code to review code or delegate tasks.
Delegate coding, planning, and debugging to Cursor CLI via ACP. Part of cc-multi-cli-plugin. Requires the `multi` plugin.
Give Claude Code a second opinion using OpenAI Codex - automatic plan review via hooks