What it does
/implement executes your implementation plan task by task, using test-driven development with confidence checks and code review gates between each task. It orchestrates several skills to enforce quality at every step.
When to use
Use/implement after you have both an approved design and a written implementation plan. This is Step 3 in the core workflow.
Prerequisites
- Approved design doc at
docs/plans/*-design.md— if not present, run/brainstormfirst - Implementation plan at
docs/plans/*-plan.md— if not present, run/planfirst - You must be on a feature branch, not
mainormaster
Conversation mode
Fast Mode — required.What happens
Load the plan
Antigravity reads the plan file at
docs/plans/*-plan.md. A confidence check that doesn’t reference the plan’s specific tasks and file paths is invalid and will not proceed.Confidence check
The
confidence-check skill runs. A score of 27/30 or higher is required to proceed. If below 27, Antigravity announces the specific gap (dimension, score, unknown) and attempts to fill it by reading files or running research. If the gap cannot be filled within 2 iterations, it asks you directly and waits.RED phase — write failing test
The
test-driven-development skill runs the RED phase: a failing test is written for the current task’s behavior before any implementation.Minimal implementation
The minimum code required to make the failing test pass is written — nothing more.
GREEN phase — make it pass
The
test-driven-development skill runs the GREEN phase: the test passes. A commit is made immediately with message format test: [what behavior is now tested].Code review
The
requesting-code-review skill runs a review of the task against the plan. Issues are addressed before moving to the next task.Verification before completion
The
verification-before-completion skill runs a final check across all tasks.Skills invoked
confidence-check— verifies readiness before each implementation tasktest-driven-development— RED-GREEN-REFACTOR cyclesystematic-debugging— loaded automatically on test failure; no retrying without diagnosisrequesting-code-review— review gate between tasksverification-before-completion— final check before declaring donefinishing-a-development-branch— merge and PR decision
Example
Commit cadence is strict: one commit per GREEN test. Never accumulate more than one passing test before committing. If a commit fails, stop immediately and diagnose — do not run another test.
Related commands
/plan
Step 2 — writes the plan that /implement executes.
/review
Step 4 — validate the full implementation against the plan.
/test
Run tests independently outside of the /implement workflow.
/troubleshoot
When /implement hits a bug it can’t resolve, use systematic debugging.