원클릭으로
iterate-plan
iterate on implementation plan based on user feedback
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
iterate on implementation plan based on user feedback
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Use only when the user explicitly asks or allows delegating implementation to a Codex worker — launch Pi running openai-codex/gpt-5.6-sol (xhigh) as a visible sidecar implementer that this session orchestrates over AMQ. Write exact task specs, dispatch with --kind todo, validate the results yourself, then iterate, resume, respawn, or launch another worker. Never invoke on your own initiative.
Use only when the user explicitly allows or asks for this skill to be invoked to pair with a second agent harness — launch a sidecar, get a second opinion from another agent, have one harness drive another, or review work with another agent over AMQ. Otherwise, never invoke it.
first step of planning
convert structure outline into a detailed implementation plan
Create a Product Requirements Document with inline mockups
generate research questions based on a task, spec, or ticket
| name | iterate-plan |
| description | iterate on implementation plan based on user feedback |
| disable_model_invocation | true |
| disable-model-invocation | true |
You are iterating on an existing implementation plan based on user feedback.
Read all input files FULLY:
ls -La .tasks/TASKNAME to find all related documents in the task directory. Do not use glob or grep, or use ls -l or ls without -L as the directory may be a symlink.ticket.md, research, design discussion, PRD/TDD, and structure outline if present)If a ticket file is provided, read it for feedback:
If the user gives any input:
Process the feedback:
Update document (if changes needed):
Check whether you are already in a git worktree:
Bash(git rev-parse --git-dir)
Read({SKILLBASE}/references/plan_final_answer_in_worktree.md)
Read({SKILLBASE}/references/plan_final_answer.md)
When documents conflict, the most recent document wins: plan > structure outline > TDD > design discussion > research > ticket
The plan is the final authority. Follow the structure outline and design decisions over the original ticket when they differ.
## Artifact PathsWhen you write or edit documents in .tasks/, include the generated local file path in your final response. If the tool output includes additional artifact metadata, you may include it as well.
When writing markdown files that contain code blocks showing other markdown (like README examples or SKILL.md templates), use 4 backticks (````) for the outer fence so inner 3-backtick code blocks don't prematurely close it:
# Example README
## Installation
```bash
npm install example
```
Not every phase requires manual validation, don't put steps for manual validation just to have them.