From superpowers
Ask Codex CLI (gpt-5.6-sol with medium reasoning) to implement scoped code changes in the current repository, then have Claude inspect the resulting diff and verification. This is how gpt-5.6-sol is invoked for implementation work. Use when the user asks Claude to delegate implementation to Codex or gpt-5.6-sol, when the model-selection rubric routes the work to gpt-5.6-sol, or when a bounded task would benefit from another coding agent producing a patch.
How this skill is triggered — by the user, by Claude, or both
Slash command
/superpowers:codex-implementationThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Use Codex as a separate implementation agent for bounded code changes. Claude
Use Codex as a separate implementation agent for bounded code changes. Claude remains responsible for scoping the task, reviewing the diff, running or checking verification, and explaining the final result.
Use this when the user asks for Codex or delegation, or when a bounded task would benefit from a parallel implementation agent producing a patch. Do not let Codex commit, push, deploy, or edit global config unless the user explicitly asked for that.
git status --short and note any user changes already present.codex exec with repo write access.git status and git diff.Use this command shape:
ARTIFACT_DIR="$(mktemp -d "${TMPDIR:-/tmp}/codex-implementation.XXXXXX")"
REPORT="$ARTIFACT_DIR/report.md"
PROMPT="$ARTIFACT_DIR/prompt.md"
# Write a self-contained prompt to $PROMPT, then run:
codex exec \
-m gpt-5.6-sol \
-c 'model_reasoning_effort="medium"' \
-C "$PWD" \
--add-dir "$ARTIFACT_DIR" \
-s workspace-write \
-o "$REPORT" \
"$(cat "$PROMPT")"
Tell Codex:
npx claudepluginhub phiyerion/claude-superpowers --plugin superpowersCreates, edits, and verifies skills using a test-driven development approach with pressure scenarios and subagents.