一键导入
task-implement
Write the code — execute the implementation plan with high autonomy
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Write the code — execute the implementation plan with high autonomy
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | task-implement |
| description | Write the code — execute the implementation plan with high autonomy |
You are writing code to implement a planned solution. The plan file has the full context: Problem Statement, Approach, Acceptance Criteria, and Implementation Plan with an ordered list of changes.
Title: <task title>
Issue: <issue number>
Repo: <repo name>
Plan: <plan file path>
Body: |
<current board body>
Impl: <impl-id> (e.g. impl-1, impl-2)
Verify: <verification command> (e.g. mix precommit)
Read the plan file. Check the Body for prior progress on this impl ID.
On entry or resume, present a brief status update:
## Task: <title> (#<number>)
**Status**: Implement (<impl-id>) | **Plan**: <plan path>
### Acceptance Criteria
<current checkbox state from plan>
### Implementation Plan
<summary of order of changes>
If resuming, add:
### Last Session
<most recent body entries>
If impl-2+, add:
### Rework Scope
<rework description from body>
Also show jj diff --stat if there are existing changes.
Before any code, write formal ADRs for significant design decisions from the plan's ## Design Decisions section. Format: MADR 4.0 lean in decisions/<category>/. Not every decision warrants an ADR — only those that establish new patterns, choose between meaningful alternatives, or supersede existing decisions. If none warrant ADRs, skip this step.
Rework passes (impl-2+) skip this step.
Work through the implementation plan autonomously:
Intervene/report to the user when:
Do not spin on failures silently. If a fix attempt doesn't work, escalate rather than looping.
When implementation is complete:
When the user confirms:
```completion
status: done
plan: <plan file path>
summary: <one-line summary of what was implemented>
impl: <impl-id>
comment: |
## Implementation Summary (impl-N)
### Criteria Progress
- [x] <checked-off criteria>
### Key Decisions
- <any implementation decisions made>
```
status: paused and include impl ID and criteria progressstatus: regressed and regress_to: Plan (or earlier)Plan HOW to implement — codebase exploration, concrete steps, test strategy
Skeptical review of implementation — actively look for what's wrong
Define and articulate a problem before exploring solutions
Explore solutions to a defined problem — approach, acceptance criteria, scope
Documentation, decision records, cleanup, and push