원클릭으로
execute-implementation-plan
Instructions for executing implementation plans. Use when specifically requested.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Instructions for executing implementation plans. Use when specifically requested.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Publishes a clean normal feature or task branch and creates its pull request on explicit human request.
Instructions for writing good design plan artifacts. Use when specifically requested.
Instructions for writing good implementation plans artifacts. Use when specifically requested.
Instructions for executing a task from an implementation plans. Use when specifically requested.
Instructions for investigating a codebase to answer a specific question.
Reviews code changes directly against quality standards. Use when no implementation plan or journal exists.
| name | execute-implementation-plan |
| description | Instructions for executing implementation plans. Use when specifically requested. |
The executor runs focused tests during execution and reports objective verification facts. Final QA is run once by the orchestrator after execution, not repeatedly by this skill.
Read the provided implementation plan artifact and execute every task in it to completion. Record progress in an implementation journal.
Use this skill to execute an approved implementation plan end-to-end. It is the execution stage in multiple orchestrator workflows.
This skill is a sub-skill called by orchestrators:
run-feature — stage 3 (execute)run-bug-fix — execute stagerun-fix — execute stagerun-hotfix — execute stageDo not confuse with execute-implementation-task, which executes a single named task rather
than the full plan. Use this skill when the full plan must be completed in one pass.
Your prompt must include:
If not provided, ask before proceeding. Do not guess.
Write the journal to {project-dir}/implementation-journal.md, where {project-dir} is the
directory containing the implementation plan. Read .agents/artifacts/implementation-journal/description.md
for the canonical section definitions, and render .agents/artifacts/implementation-journal/template.md.j2
to produce the initial file. Replace all dummy content — every line drawn from the retro encabulator —
with real content for this project. The rendered file must contain no placeholder text when submitted.
Supply the path to your caller on completion.
The work is complete only when every task in the plan has been executed and all acceptance criteria are met. Do not stop partway through the plan to report progress. Do not stop because a batch of tasks feels like a natural checkpoint. The plan is the unit of work — finish it.
The only valid reasons to stop early are:
In either case, report the specific blocker clearly and stop. Otherwise, keep going.
Each listed task must be completed such that the acceptance criteria are fully met.
All code that is produced must have unit test coverage. If a section should not be tested (generic setup/boilerplate) or cannot be directly tested (external calls that would be onerous to mock), exclude it via inline exclusion markers for the coverage tool. 100% coverage for all new or modified code should be the goal.
You are writing code, not providing commentary on the plan artifact. If you have doubts about the plan, report that feedback to the caller before you start. Do NOT modify ANY planning documents.
Work through every task in order, from first to last, without stopping. For each task:
Do not pause between tasks. Do not batch tasks into groups and report partway through. Continue until every task is done.
Report back to the orchestrator after all tasks are complete. Summarize results and objective focused-test
verification facts, and note any challenges or surprises. Do not run project-wide QA or invoke make qa; the
orchestrator owns final QA after execution.