# Phase Implement

> Phase Implement

- Skill: `yaomeng1749/phase-implement` (Agent Skill)
- Install (CLI): `npx skillmds@latest add yaomeng1749/phase-implement`
- Raw SKILL.md: https://api.skillmd.com/api/skills/yaomeng1749/phase-implement/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: Yaomeng1749 (https://skillmd.com/u/yaomeng1749)
- Updated: 2026-09-22
- Page: https://skillmd.com/skills/yaomeng1749/phase-implement

---


# Phase Implement

Use this skill when the user asks for `/phase-implement`, implementation from a plan, TDD execution, or the coding stage of an automated software delivery flow.

## Purpose

Implement the approved plan with tests and tight feedback loops.

## Workflow

1. Load the latest relevant plan or ask for the target plan if none is obvious.
2. Split work into independently verifiable steps.
3. For each step:
   - write or update a failing test when practical
   - implement the smallest change
   - run the nearest verification
   - refactor only after behavior is protected
4. Use the project’s existing style, helpers, and architecture.
5. Use language-specific skills or reviewers when the project stack is clear.
6. If build or tests fail:
   - diagnose the first meaningful failure
   - fix incrementally
   - retry up to 3 times per distinct failure mode
7. Mark blocked work explicitly instead of hiding failures.

## Output

Include:

- implemented steps
- changed files
- tests or checks run
- failures fixed
- any blocked or deferred items

End with `PHASE_IMPLEMENT_DONE` when implementation is complete, or `PHASE_IMPLEMENT_BLOCKED` when it cannot safely continue.

