用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/joshukraine/dotfiles --skill plan-phase命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | plan-phase |
| description | Plan the next PRD phase by drafting issues, creating GitHub issues, and bridging planning to building. |
| disable-model-invocation | true |
Plan the next phase of development from the PRD, create GitHub issues, and prepare for implementation. This skill bridges planning and building — it creates the structure but writes no application code.
Work through the steps below in order. Each step has a hard stop — do not proceed past a CHECKPOINT without explicit user approval.
Tip for the user: You can activate Claude Code's plan mode (shift+tab) during Steps 1-2 for an extra guardrail against premature code changes. Toggle out of plan mode before Step 3 so that Claude Code can run
gh issue createcommands.
docs/prd/ROADMAP.md to identify the current phase and what comes nextdocs/prd/*-overview.md) for project contextCLAUDE.mdPresent a clear, concise plan for the next phase:
02-auth-and-onboarding.md")feat: ... or fix: ... or chore: ...Keep the number of issues manageable — typically 3-7 per phase. If the phase is larger, break it into sub-phases.
CHECKPOINT 1: Present the plan and wait for user approval. The user may adjust scope, reorder issues, split or combine items, or request changes. Do not proceed until the user explicitly approves.
After plan approval, create each issue on GitHub using the gh CLI:
gh issue create --title "feat: [title]" --body "[description]"
Each issue body should include:
02-auth-and-onboarding.md")Create the issues in implementation order. Record each issue number as it is created.
After all issues are created, present a summary:
Phase: [name]
Issues created:
#41 - feat: Add User model with Devise authentication (medium)
#42 - feat: Add Pundit authorization policies (small)
#43 - feat: Add admin dashboard with user management (large)
Recommended starting point:
/resolve-issue 41
CHECKPOINT 2: Present this summary and wait for user approval before any implementation begins. Do not write application code, create branches, or modify any files beyond GitHub issues.
When the user is ready to begin, suggest the /resolve-issue command for the first issue in sequence.