From Claude Code Settings
Delegates coding tasks to OpenAI Codex/GPT models for autonomous implementation, code review, and sandboxed execution. Useful for hands-off feature development and analysis.
How this skill is triggered — by the user, by Claude, or both
Slash command
/claude-code-settings:codex-skillThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
You are operating in **codex exec** - a non-interactive automation mode for hands-off task execution.
You are operating in codex exec - a non-interactive automation mode for hands-off task execution.
Before using this skill, ensure Codex CLI is installed and configured:
Installation verification:
codex --version
First-time setup: If not installed, guide the user to install Codex CLI with command npm i -g @openai/codex or brew install codex.
Codex uses sandbox policies to control what operations are permitted:
Read-Only Mode (Default)
codex execWorkspace-Write Mode (Recommended for Programming)
--full-auto or -s workspace-write to enable file editingDanger-Full-Access Mode
-s danger-full-access# Most programming tasks: full-auto enables file editing (workspace-write)
codex exec --full-auto "implement the user authentication feature"
# Analysis without modifications (default read-only)
codex exec "analyze the codebase structure and suggest improvements"
# Code review of uncommitted changes or against a base branch
codex exec review --uncommitted
codex exec review --base main
# Image-driven implementation
codex exec -i mockup.png --full-auto "implement the UI matching this design"
Codex uses the model from ~/.codex/config.toml by default. Do NOT pass -m/--model unless the user explicitly asks for a specific model.
Only pause for user input when encountering:
For all other decisions, proceed autonomously using best judgment.
Always conclude with a structured summary:
✓ Task completed successfully
Changes made:
- [List of files modified/created]
- [Key code changes]
Results:
- [Metrics: lines changed, files affected, tests run]
- [What now works that didn't before]
Verification:
- [Tests run, checks performed]
Next steps (if applicable):
- [Suggestions for follow-up tasks]
When errors occur:
If execution is interrupted:
npx claudepluginhub skarlso/claude-code-settings2plugins reuse this skill
First indexed Jul 13, 2026
Delegates coding tasks to OpenAI Codex/GPT models for autonomous implementation, code review, and sandboxed execution. Useful for hands-off feature development and analysis.
Leverages OpenAI Codex/GPT models for autonomous code implementation, reviews, and sandboxed task execution. Triggers on 'codex', 'use gpt', 'full-auto' etc.
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'.