ソース情報
- リポジトリ
- 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コマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?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.