ソース情報
- リポジトリ
- 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-implementコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SKILL.md を表示中
| name | sdd-implement |
| description | Implement a work item from its spec. |
Implement a work item from its spec.
If the user provided input via $ARGUMENTS, use that to find the spec directory.
Otherwise, list specs/YYYY-MM-DD-*/ directories with status: ready or status: in-progress in their README.md frontmatter. Use AskUserQuestion to ask which one to implement.
Read all files in the work item's spec directory:
README.md — summary and designrequirements.md — functional requirements and acceptance criteriaplan.md — implementation planverification.md — verification criteriaIf the spec is incomplete (still an idea or missing files), stop and tell the user to run /sdd-plan-next-phase to refine it first.
Set the frontmatter status: in-progress in the work item's README.md.
Follow the implementation plan in plan.md task groups in order. For each task group:
specs/mission.md for design principles and specs/tech-stack.md for technical guidance.make test to verify nothing is broken.specs/conventions.md. Each commit should be minimal — containing only the changes necessary for its logical unit of work — and must pass all tests independently.After implementation is complete:
verification.md and confirm it passes.requirements.md and confirm it is met.make test, make lint, and make verify one final time.Review whether anything learned during implementation should be reflected in global SDD documents (specs/mission.md, specs/tech-stack.md, specs/conventions.md, CLAUDE.md, or any other top-level specs). If updates are needed, make them in a dedicated commit separate from the implementation commits.
Suggest the user run /sdd-review to review the changes for correctness and consistency before shipping.