Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/joelanford/library-olm --skill sdd-plan-next-phase명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
| name | sdd-plan-next-phase |
| description | Plan the next work item for the project. |
Plan the next work item for the project.
Ensure the working tree is on a fresh, empty change with no pending modifications. If there are pending changes, use AskUserQuestion to ask whether to proceed anyway or abort.
specs/ matching YYYY-MM-DD-*/.README.md in each to get its title, status (from frontmatter), and summary.idea, ready, in-progress, pr-submitted, done.If the user provided input via $ARGUMENTS, use that as a starting point.
Otherwise, use AskUserQuestion to help the user decide:
idea and ready items as candidatesspecs/mission.mdspecs/YYYY-MM-DD-<slug>/README.md with this structure:
---
status: idea
---
# <Title>
<One or two sentence description of the idea.>
idea item (or a new item the user wants to refine now):Use AskUserQuestion iteratively to gather requirements, implementation approach, and verification criteria. Reference specs/tech-stack.md for tech choices and specs/mission.md for design principles throughout.
When refined, update the spec directory to the full structure with four files:
README.md — high-level summary and overview:
---
status: ready
---
# <Title>
## Summary
<What this work item delivers and why it matters.>
## Design
<Key design decisions, type definitions, caller patterns, and how different
implementations map to the API. This is the heart of the spec — it should
be detailed enough that a reader understands the full shape of the work.>
requirements.md — functional requirements:
# Requirements
- <Requirement 1>
- <Requirement 2>
- ...
## Acceptance Criteria
- <Criterion 1>
- <Criterion 2>
- ...
plan.md — specific implementation plan:
# Implementation Plan
1. <Task group 1>
2. <Task group 2>
3. ...
verification.md — how to verify the implementation:
# Verification
## Implementation Correctness
- [ ] <Verification that the implementation plan was followed correctly>
- [ ] <Verification step 2>
- ...
## Project Conventions
- [ ] <Check against specs/conventions.md>
- [ ] <Check against specs/mission.md design principles>
- [ ] <Check against specs/tech-stack.md>
- ...
After writing, re-read all spec files and check:
specs/mission.md design principles?specs/tech-stack.md correctly?Fix straightforward issues directly. Use AskUserQuestion for anything with multiple valid options.