How this skill is triggered — by the user, by Claude, or both
Slash command
/claude-codex-bridge:codexThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Send a task to OpenAI Codex CLI and bring back the result.
Send a task to OpenAI Codex CLI and bring back the result.
Three steps: build prompt → dispatch → verify.
Turn the user's request into a self-contained prompt for Codex:
codex exec --full-auto --sandbox read-only \
-C "<working-directory>" \
"<self-contained-prompt>" 2>/dev/null
Sandbox levels (pick one):
read-only — can read files, no writes (research, review)network-only — can write files, no network (coding)full — full access (when needed)Capture the session ID from stdout — it enables resume.
Check that Codex produced what was asked:
git log --oneline -1If something is missing, resume the same session:
echo "<what's missing>" | codex exec resume <session-id> 2>/dev/null
Report to the user:
npx claudepluginhub zongmin-yu/claude-codex-bridgeDelegates coding tasks (debug, implement, refactor) to OpenAI Codex CLI via codex exec, skipping the Node companion runtime for faster execution. Codex writes code; Claude verifies.
Delegates coding tasks to OpenAI Codex/GPT models for autonomous implementation, code review, and sandboxed execution. Useful for hands-off feature development and analysis.
Delegates complex code generation, refactoring, architectural analysis, and review tasks to OpenAI's Codex CLI (GPT-5.3-codex models) via safe workflows with sandboxing and approvals. Activates on explicit triggers like 'use codex' or 'codex exec'.