소스 정보
- 저장소
- joelanford/orb
- 최근 소스 활동
- 2026년 8월 27일 21:01
- 감지된 SKILL.md 언어
- 영어
- 스타
- 4
- 포크
- 1
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/joelanford/orb --skill sdd-plan-next-phase명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
| name | sdd-plan-next-phase |
| description | Choose, create, or refine the next project work item. |
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 (a) make a new commit and proceed, (b) proceed on the current change anyway, or (c) abort.
specs/ matching YYYY-MM-DD-*/.README.md in each to get its title, status (from frontmatter), and summary.idea and ready items.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.