description: Create a pure PM PRD through user interviews and requirement refinement. The primary output is a PRD file for downstream PM stages; a GitHub issue is optional only if explicitly requested.
3. Interview the user relentlessly about every aspect of the problem until you reach a shared understanding. Walk down each branch of the product decision tree, resolving scope, behavior, and acceptance expectations one-by-one.
If a research brief exists, use it to inform problem framing, success metrics, functional requirements, non functional requirements, and risks. Do not copy competitor solutions mechanically.
**Optional secondary output:** If and only if the user explicitly requests it, the PRD may also be submitted as a GitHub issue after the file has been written.
Summarize relevant market, competitor, user, or regulatory insights when they materially influence the PRD. Omit this section if no research was needed.
## Problem
From the user's perspective, the problem they are currently facing and why it matters now.
## Goals
Specific outcomes this feature must achieve for the user and the business.
## Non Goals
Explicitly list what this PRD does not attempt to solve.
## Scope
Describe the in-scope behaviors, flows, and boundaries for this release.
## Success Metrics
List measurable outcomes that can be evaluated after delivery.
Define user-visible behavior and contractual product behavior only.
- Focus on what the system must do from the user's or consumer's perspective
- Do not include architecture, module design, schema design, API path design, or implementation details
- Tailor requirements to the feature context instead of using a fixed boilerplate list
## Acceptance Criteria
For each user story or feature, define the specific, testable conditions that must be met for the feature to be considered complete and working correctly.
- Every criterion must be measurable, testable, and rejectable
- Every criterion must be implementation independent
- Always use `Given / When / Then`
- Focus on observable behavior rather than implementation details
## Edge Cases
List meaningful product edge cases based on context, such as empty input, invalid input, duplicates, retries, timeouts, concurrency, partial completion, permission conflicts, and large payloads when relevant.
## Non Functional Requirements
List only the NFRs that matter for this feature and explain them in measurable product terms when possible.
- Examples may include performance, availability, scalability, security, privacy, auditability, accessibility, retention, or compliance
- Do not force irrelevant NFR categories into the PRD
## Risks
List product, operational, compliance, or adoption risks that could affect delivery or outcome.
## Assumptions
List assumptions this PRD depends on being true.
## Dependencies
List dependencies on teams, systems, policies, vendors, or external events.
## Open Questions
List unresolved product questions that must be answered before implementation or release.
</prd-template>
## Guardrails
This is a pure PM skill.
Do:
- Define the problem, value, scope, user-visible behavior, and release boundaries
- Define measurable success metrics
- Define context-appropriate functional requirements and non functional requirements
- Define acceptance criteria in `Given / When / Then`
Do not:
- Design architecture
- Design modules or internal system boundaries
- Design API paths, handlers, schemas, or databases