用 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.