From codex-build
Executes an approved plan using Codex as the coder, performing one task per commit with test gates and producing a single PR. Supports effort levels and model selection.
How this command is triggered — by the user, by Claude, or both
Slash command
/codex-build:build <plan-file> [high|xhigh] [--model <name>]This command is limited to the following tools:
The summary Claude sees in its command listing — used to decide when to auto-load this command
Execute the approved plan at `$1` using the codex-build loop, following the procedure documented in [`skills/codex-build/SKILL.md`](../skills/codex-build/SKILL.md). Treat that skill as the source of truth — don't reimplement the loop here. Full argument string: `$ARGUMENTS` ## Defaults - Effort defaults to `high`; pass `xhigh` for hard/architectural work. - Model resolves from `--model`, else `$CODEX_BUILD_MODEL`, else your Codex config default. Announce the resolved model/effort before starting. ## Required behaviour 1. **No plan file provided** → ask the user which plan to execute. D...
Execute the approved plan at $1 using the codex-build loop, following the procedure documented in skills/codex-build/SKILL.md. Treat that skill as the source of truth — don't reimplement the loop here.
Full argument string: $ARGUMENTS
high; pass xhigh for hard/architectural work.--model, else $CODEX_BUILD_MODEL, else your Codex config default. Announce the resolved model/effort before starting.codex login; don't proceed.codex exec gets < /dev/null → otherwise a non-interactive run hangs on "Reading additional input from stdin…". This is a hard rail in the skill.Report progress per task (task, tests run, commit hash) and finish with the PR URL and anything deferred.
npx claudepluginhub cathrynlavery/codex-build --plugin codex-build/executeDelegates a concrete plan step to Codex for structured execution, with support for background tasks, model selection, and effort levels.
/implementSends an implementation plan to Codex MCP for autonomous execution. Accepts a plan file path or inline text, with optional --background or --wait modes.
/buildExecutes implementation plan from docs/plans/ using TDD (RED-GREEN-REFACTOR), parallel agents for independent tasks, and 2-stage code reviews. Produces code, tests, atomic git commits, and review reports.
/SKILLExecutes written implementation plans through phase-based orchestration with per-batch sub-agent coordinators, verification, and Git commits between batches.
/execute-planExecutes tasks from a PLAN.md file with per-task atomic commits, creates a SUMMARY.md, and updates project state. Supports autonomous, segmented, and decision-dependent execution strategies.
/startExecutes implementation plan from absolute file path (optional seed commitish): creates randomized git branch, implements via agent with reviews, commits changes, creates GitHub PR.