How this skill is triggered — by the user, by Claude, or both
Slash command
/sc-codex:codex-agentThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Use this skill to run Codex tasks via the ai_cli runner. This is intended for Claude
Use this skill to run Codex tasks via the ai_cli runner. This is intended for Claude to delegate work to Codex when appropriate, including long-running background tasks that can be monitored while other work continues.
Call the runner script (installed path in projects is .claude/scripts):
python3 .claude/scripts/sc_codex_task.py --json '{...}'
Use sc_codex_task.py only (do not call other runner script names).
Do not invent flags like --run_in_background, --description, --prompt, or --subagent_type.
Provide Task Tool input JSON with:
descriptionpromptsubagent_type (defaults to sc-codex if not provided by the caller)--model codex (default: gpt-5.2-codex)--model codex-max or --model max (maps to gpt-5.1-codex-max)--model codex-mini or --model mini (maps to gpt-5.1-codex-mini)--model gpt-5 (maps to gpt-5.2)--no-background is provided.--background to force background explicitly.--no-background to force blocking mode.output_file (JSONL transcript path) and agentId.output_file via a short Python loop (avoid tail -f and avoid timeout, which may be missing on macOS).--background) returns { "output", "agentId" }..claude/state/logs/<package-name>/.npx claudepluginhub randlee/synaptic-canvas --plugin sc-codexSends a question or task to an independent Codex instance and returns its response. Useful for parallel review, second opinions, or delegating subtasks.
Runs Codex CLI tasks with configurable model, reasoning effort, and sandbox mode. Handles session resume and stdin redirection to prevent hangs.
Delegates code generation, test writing, refactoring, and bulk edits to Codex CLI for optimal latency and token efficiency. Use when implementing features or making batch code changes.