بنقرة واحدة
plan-phase
Plan the next PRD phase by drafting issues, creating GitHub issues, and bridging planning to building.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Plan the next PRD phase by drafting issues, creating GitHub issues, and bridging planning to building.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Create a pull request with auto-generated description, issue linking, ROADMAP updates, and PR-metadata validation.
Merge a pull request with status checks, squash merge, and branch cleanup. Handles worktree contexts.
Fan out a batch of autopilot-queued issues to parallel background worktree subagents — each runs /autopilot — with an Opus gating review on every Sonnet-built PR.
Detailed technical walkthrough covering architecture, test coverage, product tour, and key design decisions.
Pre-PR advisory check for deviations from the project spec. Read-only analysis.
Generate a hands-on QA testing guide as a self-contained HTML page — for Rails apps or static (Hugo) sites. --publish uploads the HTML to the project's configured QA host.
| 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.