From agent-skills
Implements tasks incrementally using test-driven development — build, test, verify, commit per task. Supports auto mode to run the entire plan in one approved pass.
How this command is triggered — by the user, by Claude, or both
Slash command
/agent-skills:buildcommands/The summary Claude sees in its command listing — used to decide when to auto-load this command
Invoke the agent-skills:incremental-implementation skill alongside agent-skills:test-driven-development. ## Modes - **`/build`** — implement the *next* pending task, then stop (careful, one slice at a time). - **`/build auto`** — generate the plan if needed, get a single approval, then implement *every* task without stopping between them. `$ARGUMENTS` selects the mode. Treat `auto` (canonical) or `all` as autonomous mode; anything else (or empty) is the default single-task mode. Note: autonomous mode is not faster *per task* — it runs the same test-driven loop — it only removes the human...
Invoke the agent-skills:incremental-implementation skill alongside agent-skills:test-driven-development.
/build — implement the next pending task, then stop (careful, one slice at a time)./build auto — generate the plan if needed, get a single approval, then implement every task without stopping between them.$ARGUMENTS selects the mode. Treat auto (canonical) or all as autonomous mode; anything else (or empty) is the default single-task mode. Note: autonomous mode is not faster per task — it runs the same test-driven loop — it only removes the human stepping between tasks.
Pick the next pending task from the plan. Then:
/build auto)Use this once a spec exists and you want to collapse plan + build into one run. It removes the manual stepping between tasks — not the verification. Every task still earns a passing test and its own commit.
Require a spec. Look only for a spec at a known path: SPEC.md at the repo root, docs/SPEC.md, or a file under spec/. A README or arbitrary doc does not count. If none exists, stop and tell the user to run /spec first — do not invent requirements.
Establish a clean baseline. Run git status --porcelain. If there are uncommitted changes outside the expected planning artifacts (SPEC.md, docs/SPEC.md, spec/*, tasks/plan.md, tasks/todo.md), stop and ask the user to commit, stash, or confirm how to handle them. Autonomous per-task commits must not absorb unrelated local work, or the clean-rollback guarantee breaks.
Plan if needed. If there is no tasks/plan.md, invoke agent-skills:planning-and-task-breakdown to generate one.
Single checkpoint. Present the full plan and wait for an unambiguous affirmative (e.g. "approve", "go", "yes"). Treat hedged responses ("looks reasonable", "I guess") as not approved. This is the only human gate — after approval, run autonomously. If you generated tasks/plan.md, commit it as a single preparatory commit now so it doesn't bleed into the first task's commit.
Execute every task in dependency order. Use each task's declared dependencies; if they aren't explicit, execute in the order the plan lists them. For each task, run the full default loop above (RED → GREEN → regression → build → commit → mark complete). Stage only the files that task touched plus its task-status update — never git add -A blindly — and make one commit per task so any point is a clean rollback.
Stop and ask the user (do not push through) when:
git revert → follow agent-skills:doubt-driven-development and get explicit sign-off before continuingAfter the user resolves a blocker, they re-invoke /build auto — it resumes from the next pending task.
Summarize at the end: tasks completed, tests added, commits made, and anything skipped, flagged, or left for the user.
If any step fails, follow the agent-skills:debugging-and-error-recovery skill.
npx claudepluginhub amos09/agent-skills24plugins reuse this command
First indexed Jun 10, 2026
Showing the 6 earliest of 24 plugins
/buildImplements tasks incrementally using test-driven development — build, test, verify, commit per task. Supports auto mode to run the entire plan in one approved pass.
/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.
/buildExecutes an approved feature plan task by task using TDD with graduated quality gates, scenario coverage, and success criteria validation. Auto-chains to review and check stages.
/executeImplements tasks from a specified plan.md or tasks.md file using strict TDD workflow (RED test, GREEN code, REFACTOR, validate), reading context and ensuring feature branch safety.
/buildPlans and executes feature builds against a SPEC.md specification. Accepts task targets (§T.n), --all, or --next. Automatically verifies each task and triggers backpropagation on failure.
/buildExecutes all specs in specs/ end-to-end in dependency order, running tasks autonomously without pausing between specs, and stops only on terminal state or blockers.