with one click
dot-ai-prd-start
Start working on a PRD implementation
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Start working on a PRD implementation
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Create changelog fragment for release notes. Invoke during /prd-done workflow during the first push to the PR.
Create a release tag based on accumulated changelog fragments, then prune merged worktrees and branches. Run when ready to cut a release.
Build and publish the mock-server Docker image to GitHub Container Registry. Use when mock server fixtures or code have changed and need to be published.
Analyze the blast radius of a proposed Kubernetes operation. Accepts free-text input: kubectl commands (e.g., "kubectl delete pvc data-postgres-0 -n production"), YAML manifests, or plain-English descriptions (e.g., "what happens if I delete the postgres database?"). Returns whether the operation is safe and a detailed dependency analysis with confidence levels.
Close a PRD that is already implemented or no longer needed
Create documentation-first PRDs that guide development through user-facing content
| name | dot-ai-prd-start |
| description | Start working on a PRD implementation |
| user-invocable | true |
You are helping initiate active implementation work on a specific Product Requirements Document (PRD). This command sets up the implementation context (validates readiness, creates branch, prepares environment) then hands off to /prd-next for task identification.
IMPORTANT: Do NOT include time estimates or effort estimates in your responses. Focus on setup and readiness without speculating on duration.
If prdNumber argument is provided ({{prdNumber}}):
If prdNumber argument is NOT provided:
Check if PRD context is already clear from recent conversation:
Skip detection if recent conversation shows:
/prd-update-progress, /prd-start with specific PRDIf context is clear:
If context is unclear:
Auto-detect the target PRD using these context clues (in priority order):
Git Branch Analysis - Check current branch name for PRD patterns:
feature/prd-12-* → PRD 12prd-13-* → PRD 13feature/prd-* → Extract PRD numberRecent Git Commits - Look at recent commit messages for PRD references:
Git Status Analysis - Check modified/staged files for PRD clues:
prds/12-*.md → PRD 12Available PRDs Discovery - List all PRDs in prds/ directory
Fallback to User Choice - Only if context detection fails, ask user to specify
Detection Logic:
feature/prd-12-documentation-testing)If context detection fails, ask the user:
## Which PRD would you like to start implementing?
Please provide the PRD number (e.g., "12", "PRD 12", or "36").
**Not sure which PRD to work on?**
Execute `dot-ai:prds-get` prompt to see all available PRDs organized by priority and readiness.
**Your choice**: [Wait for user input]
Once PRD is identified:
prds/[issue-id]-[feature-name].mdBefore starting implementation, validate that the PRD is ready:
For documentation-first PRDs:
## PRD Readiness Check
- [ ] All functional requirements defined
- [ ] Success criteria measurable
- [ ] Dependencies available
- [ ] Documentation complete
- [ ] Integration points clear
- [ ] Implementation approach decided
If PRD is not ready: Inform the user what's missing and suggest they complete PRD planning first.
⚠️ MANDATORY: Complete this step BEFORE proceeding to Step 4
Assign the GitHub issue to yourself to signal that work is in progress:
gh issue edit [issue-id] --add-assignee @me
This prevents others from picking up the same PRD and working on it in parallel.
git branch --show-currentmain or master: Create and switch to feature branch:
git checkout -b feature/prd-[issue-id]-[feature-name]
You MUST display this confirmation before proceeding to Step 4:
## Environment Setup ✅
- **Assignee**: @[username] ✅
- **Branch**: `[current-branch-name]` ✅
- **Status**: [Created new branch / Already on correct branch / Staying on main (reason)]
DO NOT proceed to Step 4 until branch setup is confirmed.
Once the implementation context is set up, present this message to the user:
## Ready for Implementation 🚀
**PRD**: [PRD Name] (#[PRD Number])
**Assignee**: @[username]
**Branch**: `[branch-name]`
**Status**: Ready for development
---
To identify and start working on your first task, run `/prd-next`.
⚠️ STOP HERE - DO NOT:
/prd-next handles all task identification and implementation guidance.
This command should:
/prd-next for task identification/prd-next handles all task identification, implementation guidance, and progress tracking