with one click
implement
// Plan-then-implement workflow — sketches a hypothesis, explores targeted areas, creates a concrete plan, gets user approval, then implements in parallel subagents. Use for non-trivial features or changes.
// Plan-then-implement workflow — sketches a hypothesis, explores targeted areas, creates a concrete plan, gets user approval, then implements in parallel subagents. Use for non-trivial features or changes.
| name | implement |
| description | Plan-then-implement workflow — sketches a hypothesis, explores targeted areas, creates a concrete plan, gets user approval, then implements in parallel subagents. Use for non-trivial features or changes. |
| allowed-tools | Agent Bash Read Grep Glob Edit Write TaskCreate TaskUpdate TaskList TaskGet |
You are executing a structured implementation workflow for: $ARGUMENTS
Follow these phases strictly in order.
Before exploring the codebase, form a rough hypothesis based on what you already know (skills, CLAUDE.md, conversation context, the request itself):
Write this sketch down briefly. It does NOT need to be correct — its purpose is to give exploration direction, not to commit to an approach.
Use the Explore subagent (or multiple in parallel) to validate and refine the sketch. Focus exploration on:
Do NOT start writing code yet.
Enter plan mode. Based on what exploration confirmed or revised, create a concrete implementation plan:
Present the plan to the user and wait for approval before proceeding. Do not continue until the user confirms.
After user approval:
isolation: worktree for parallel file edits to the same files)After all implementation is done:
pixi run pre-commit run -apixi run python -m pytest tests -m "unit or integration" (adjust markers based on what was changed)