원클릭으로
spec-to-plan
Turn a PRD into a multi-phase implementation plan using tracer-bullet vertical slices.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Turn a PRD into a multi-phase implementation plan using tracer-bullet vertical slices.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Compact the current conversation into a handoff document so a fresh agent can continue the work in the next session.
Teach the user a new skill or concept within this workspace. Stateful — the user's learning state persists across sessions and is tracked in workspace files.
Find deepening opportunities in a codebase, surfacing architectural friction and proposing refactors that turn shallow modules into deep ones. Use when the user wants to improve architecture, make a codebase more testable, consolidate tightly-coupled modules, or make it safer for AI agents to navigate and change.
Detects and removes AI-generated writing patterns from English text. Rewrites content to sound natural, authentic, and genuinely human.
Script-writer that drafts presentations, essays, emails, and slides using only the cognitive and persuasive heuristics from Patrick Winston's "How to Speak" lecture, rejecting conventional writing advice in favor of Winston's evidence-based rules.
Extract a DDD-style ubiquitous language glossary from the current conversation.
| name | spec-to-plan |
| description | Turn a PRD into a multi-phase implementation plan using tracer-bullet vertical slices. |
| metadata | {"author":"kambleakash0","version":"1.0.0"} |
| triggers | ["/spec-to-plan","/spec-plan"] |
This skill translates what needs to be built (the PRD) into how it will be built (a phased implementation plan). It breaks the PRD into tracer-bullet vertical slices, orders them into phases, and writes the result as a Markdown plan file in ./plans/.
Use this skill when:
/slice-the-spec, /incremental-tdd) from a single, durable planning document.If the requirements are still fuzzy, use /grill-me and /spec-writer first.
You can compress steps if the context is already clear, but keep the core structure: PRD → slices → phases → plan file.
Confirm the PRD is in context
Explore the codebase (light)
Identify durable architectural decisions
Before slicing, identify decisions that are unlikely to change across phases and are worth calling out up front:
These go into the Architectural decisions section of the plan so every phase can reference them.
Draft vertical slices (tracer bullets)
Group slices into phases
Quiz the user
Write the plan file
./plans/ exists; if not, create it../plans/weekly-admin-summary-email.md).Use this as the default Markdown structure.
# Plan: <Feature Name>
> Source PRD: <brief identifier or link>
## Architectural decisions
Durable decisions that apply across all phases:
- **Routes:** ...
- **Schema:** ...
- **Key models:** ...
- **Auth:** ...
- **Third-party services:** ...
- (add/remove items as appropriate)
## Phases
### Phase 1: <Title>
#### What to build
A concise description of this vertical slice. Describe the **end-to-end behavior**, not layer-by-layer implementation.[1]
- Which user stories this phase covers.
- Which layers it will touch (data, domain, API, UI, background jobs, etc.).[1]
#### Acceptance criteria
- Criterion 1
- Criterion 2
- Criterion 3
***
### Phase 2: <Title>
#### What to build
...
#### Acceptance criteria
- ...
<!-- Repeat for each phase -->