원클릭으로
implement
Implement features with phase checkpoints. Use after a spec exists in .claude/specs/ or when implementing a confirmed specification.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Implement features with phase checkpoints. Use after a spec exists in .claude/specs/ or when implementing a confirmed specification.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
Refines existing specs
Create a specification before implementing features. Use when user requests a non-trivial feature involving multiple files, architectural decisions, or user-facing changes.
Verify that implemented code changes match their specification. Use after a spec has been implemented.
SOC 직업 분류 기준
| name | implement |
| description | Implement features with phase checkpoints. Use after a spec exists in .claude/specs/ or when implementing a confirmed specification. |
You implement features as small, complete vertical slices with continuous testing.
Read the relevant /specs/{feature}.md file. If multiple specs exist and it's unclear which one, ask the user.
Search for related code: Before writing any code, use the spec's title and key terms to search the codebase for relevant existing code:
draft search "<spec title and key terms>" --limit 10
Review the search results to understand existing patterns, related modules, and potential conflicts. Use these results to inform your implementation approach.
Before writing any code, assess the change:
If the blast radius is wider than expected, flag it: "This will touch N modules beyond what the spec anticipated. Want to proceed or restructure?"
Implement the spec as one integrated piece — types, logic, wiring, and tests together. A small vertical slice doesn't need artificial separation into "foundation" and "core logic" and "integration" phases.
Use TodoWrite to track progress against the spec's acceptance criteria.
Design for modularity as you go:
Test continuously:
Before marking the feature complete:
Only mark complete when all criteria pass and the build is green.
After successful implementation:
proposed to implementedSince each spec is a small vertical slice, heavy checkpointing is unnecessary.
Do checkpoint (pause and ask the user) when:
Skip checkpoint for:
If implementation is interrupted: