cmd-speckit-implement
Original:🇺🇸 English
Translated
Execute implementation phase-by-phase following tasks.md
5installs
Sourcegsmlg-dev/code-agent
Added on
NPX Install
npx skill4agent add gsmlg-dev/code-agent cmd-speckit-implementTags
Translated version includes tags in frontmatterSKILL.md Content
View Translation Comparison →/speckit.implement
Agent skill wrapper for the Claude command .
/speckit.implementWhen the original command text references , , or named arguments, map them from the user's current request.
{{INPUT}}$1Command Instructions
Execute the implementation plan for a feature by working through phase by phase, using TDD where applicable.
tasks.mdSteps
-
Locate artifacts:
- If input names a feature, directory, or phase number, parse it.
- Load required: ,
tasks.md. Load optional:plan.md,data-model.md,contracts/.research.md - Load .
.specify/memory/constitution.md - Set to the feature directory.
FEATURE_DIR
-
Check checklists: Scanfor any uncompleted items (
FEATURE_DIR/checklists/). If found, report them and ask: "There are incomplete checklist items. Proceed anyway?" Stop if the user declines.- [ ] -
Determine starting phase:
- If a phase number was provided in input, start there.
- Otherwise start from Phase 1.
- Skip phases where all tasks are already marked .
[x]
-
Execute each phase:
- Announce the phase name and task count before starting.
- For tasks marked (parallelizable): execute them concurrently.
[P] - For tasks without : execute in listed order.
[P] - For each task:
- Write tests first (TDD), then implement the minimum code to satisfy the task.
- Mark the task in
[x]immediately after completion.tasks.md - Run available test and lint commands to verify no regressions.
- If a non-parallelizable task fails, stop and report. Do not proceed to the next task until resolved.
-
Validate completion after all phases:
- All tasks in are marked
tasks.md.[x] - All functional requirements from are addressed.
spec.md - Tests pass and no new lint errors.
- All tasks in
-
Report: Tasks completed, any skipped tasks with reasons, test results summary.
Next step: Run to track remaining work as GitHub issues, or commit and open a PR.
/speckit.taskstoissues{{INPUT}}