Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Create a Product Requirements Document through interview and codebase exploration.
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
SKILL.md
1---2name: to-prd3description: Turn the current conversation context into a PRD and submit it as a GitHub issue. Use when user wants to create a PRD from the current context.4---56This skill takes the current conversation context and codebase understanding and produces a PRD. Do NOT interview the user — just synthesize what you already know.78## Process9101. Explore the repo to understand the current state of the codebase, if you haven't already.11122. Sketch out the major modules you will need to build or modify to complete the implementation. Actively look for opportunities to extract deep modules that can be tested in isolation.1314A deep module (as opposed to a shallow module) is one which encapsulates a lot of functionality in a simple, testable interface which rarely changes.1516Check with the user that these modules match their expectations. Check with the user which modules they want tests written for.17183. Write the PRD using the template below and submit it as a GitHub issue.1920<prd-template>2122## Problem Statement2324The problem that the user is facing, from the user's perspective.2526## Solution2728The solution to the problem, from the user's perspective.2930## User Stories3132A LONG, numbered list of user stories. Each user story should be in the format of:33341. As an <actor>, I want a <feature>, so that <benefit>3536<user-story-example>371. As a mobile bank customer, I want to see balance on my accounts, so that I can make better informed decisions about my spending38</user-story-example>3940This list of user stories should be extremely extensive and cover all aspects of the feature.4142## Implementation Decisions4344A list of implementation decisions that were made. This can include:4546- The modules that will be built/modified47- The interfaces of those modules that will be modified48- Technical clarifications from the developer49- Architectural decisions50- Schema changes51- API contracts52- Specific interactions5354Do NOT include specific file paths or code snippets. They may end up being outdated very quickly.5556## Testing Decisions5758A list of testing decisions that were made. Include:5960- A description of what makes a good test (only test external behavior, not implementation details)61- Which modules will be tested62- Prior art for the tests (i.e. similar types of tests in the codebase)6364## Out of Scope6566A description of the things that are out of scope for this PRD.6768## Further Notes6970Any further notes about the feature.7172</prd-template>73