← ClaudeAtlas

buildlisted

Implement code incrementally with quality gates. Use when the user says 'build', 'implement', or when starting the implementation phase of an approved plan.
domengabrovsek/claude · ★ 12 · AI & Automation · score 69
Install: claude install-skill domengabrovsek/claude
Implement the approved plan incrementally: $ARGUMENTS Follow these disciplines: ## Before Starting **why-not-mechanizable:** skill workflow guidance; each step requires understanding the surrounding context (repo, task shape, prior state). - Verify an approved plan exists (in `.claude/state/plans/` or the current conversation) `(review-time: see section note)` - If no plan exists, stop and ask the user to run /plan first `(review-time: see section note)` - Read the plan and identify the task list `(review-time: see section note)` - Load relevant expert agents based on the plan's domain (see `rules/agent-routing.md`) - their guardrails apply to every increment `(review-time: see section note)` ## Increment Rules For each task in the plan: 1. **Ask**: "What is the simplest thing that could work?" `(review-time: see section note)` 2. **Scope**: touch only what the task requires - no drive-by refactors, no "while I'm here" changes `(review-time: see section note)` 3. **Follow `rules/engineering-principles.md`**: vertical slicing, change sizing (~100 lines per commit, max 300, split at 1000+), and anti-rationalization rules all apply `(review-time: see section note)` 4. **Compile continuously**: the project must build after every increment. Run typecheck after each file change. `(review-time: see section note)` 5. **Test alongside**: write tests as part of the increment, not as a separate step afterward `(review-time: see section note)` 6. **Checkpoint**: after completing e