ワンクリックで
iterate-structure-outline
iterate on structure outline based on user feedback. Don't use if you already used create-structure-outline
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
iterate on structure outline based on user feedback. Don't use if you already used create-structure-outline
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-structure-outline |
| description | iterate on structure outline based on user feedback. Don't use if you already used create-structure-outline |
| disable_model_invocation | true |
| disable-model-invocation | true |
You are iterating on an existing structure outline document based on user feedback.
ls -La .tasks/<task slug>. Do NOT use grep or glob or ls or ls -l, as the directory may be a symlink.If the user calls this with no instructions or feedback, ask them for their feedback:
I'm ready to iterate on the structure outline. What feedback or changes would you like me to incorporate? For example:
- Phase reorganization
- Scope changes (add/remove items)
- Answers to open questions
- Additional context or requirements
Then wait for the user's feedback before proceeding.
Read all input documents FULLY:
ticket.md, research, design discussion, PRD/TDD if present)Check for related task content:
.tasks/TASKNAME is mentioned, use ls -La .tasks/TASKNAME. Do NOT use ls or ls -l as the directory may be a symlink.If the user gives any input:
Spawn sub-agents for follow-up research (if needed):
For deeper investigation:
Do not run agents in the background - FOREGROUND AGENTS ONLY.
Process the feedback:
Each phase should ideally be a thin vertical slice that touches all / as many layers as possible for the desired end state. Avoid horizontal phases like 'add all types', 'add API endpoints', 'implement UI'.
Try to find ways to structure the outline so that each phase cuts across multiple layers, services, or module boundaries at least > 1 if at all possible. Each phase should be independently verifiable based on typechecks, tests, build steps, and any other in-repo verification. Ensure you understand codebase patterns for testing and verification, and don't suggest manual testing for a step that could be automated w/ a script, an existing skill, etc.
A horizontal breakdown looks like this:
That creates handoff problems and partially finished work.
A vertical slice cuts through the stack:
Each issue should include schema, API, UI, and tests if the slice needs them.
These are intended to be illustrative. Not all work lends itself to this type of structure specifically, but you should try to cross module boundaries where able to surface surprises early. Do not structure a phase N such that Phase N+1 must be completed before Phase N can be verified.
Update document (if changes needed):
docPathUpdate the user
Read({SKILLBASE}/references/structure_outline_final_answer.md)When documents conflict, the most recent document wins: structure outline > TDD > PRD > design discussion > research > ticket
## 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
```
The goal of this document is to be concise and human readable. Be tasteful and thoughtful about how and where you include code snippets, and prefer highlighting signature changes rather than entire code blocks, unless the user explicitly asks for them. The structure outline is our "c header files", the plan will include the function definitions.
Not every phase requires manual validation, don't put steps for manual validation just to have them.
There's a good chance that if a phase cannot be manually checked, its either too small or not vertical enough. The goal of manual validation is to avoid getting to the end of a 1000+ line code change and then having to figure out which part went wrong.
Automated testing is always better than manual testing - be thoughtful based on your knowledge of the codebase and testing patterns, and be clear about which tests are manual versus automated.