Best for
- Use when starting a new feature, documenting requirements, creating specs before implementation, or needing clarity on scope and success criteria.
kensaurus/cursor-kenji/skills/design-prd/SKILL.md
Generate Product Requirements Documents through structured conversation for any project. Use when starting a new feature, documenting requirements, creating specs before implementation, or needing clarity on scope and success criteria.
Decision brief
Degree of freedom: MIXED. Clarifying questions, scope, and requirements [HIGH freedom]; stack/feature/schema detection [LOW freedom — run exactly].
Compatibility matrix
| Platform | Status | Evidence | What to check |
|---|---|---|---|
| Codex | Not declared | No explicit evidence | Portability before use |
| Claude Code | Not declared | No explicit evidence | Portability before use |
| Cursor | Not declared | No explicit evidence | Portability before use |
| Gemini CLI | Not declared | No explicit evidence | Portability before use |
Installation
The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.
npx skills add https://github.com/kensaurus/cursor-kenji --skill "skills/design-prd"Inspect the Agent Skill "design-prd" from https://github.com/kensaurus/cursor-kenji/blob/28a0bd8403c950f58ed063d47a858ee3493b0038/skills/design-prd/SKILL.md at commit 28a0bd8403c950f58ed063d47a858ee3493b0038. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.
Workflow
1. Discover — stack, features, schema, existing PRDs 2. Clarify — 3–5 numbered questions with lettered options 3. Scope — P0/P1/P2 plus explicit non-goals 4. Specify — testable requirements, not implementation
Before writing any PRD, understand the project from its source code.
When the user describes a feature, research how others have solved it:
When the user describes a feature, DO NOT start writing immediately.
1. Limit to 3-5 questions — only ask what is truly unclear 2. Number all questions (1, 2, 3...) 3. Provide lettered options (A, B, C, D) for easy response 4. Make responding easy — user can reply "1A, 2C, 3B"
Permission review
No configured static risk pattern was detected
This is not proof of safety. Runtime behavior, indirect dependencies, and hidden external systems are outside the static scan.
Evidence record
| Signal | Value | Evidence type | Meaning |
|---|---|---|---|
| Quality score | 92/100 | Computed | Documentation, specificity, maintenance, and trust rules |
| Repository stars | 9 | Source | Repository attention, not individual Skill quality |
| Compatibility | 0 platforms | Source | Declared in the catalog source record |
| Usage guide | automated source guide | Editorial | Generated or reviewed according to the visible evidence level |
Pinned source
Degree of freedom: MIXED. Clarifying questions, scope, and requirements
[HIGH freedom]; stack/feature/schema detection [LOW freedom — run exactly].
Create detailed, actionable Product Requirements Documents through structured conversation, informed by codebase analysis and competitive research.
Discover: Next.js + Supabase;
notificationstable missing; noprd-*.md. Clarify: in-app vs email vs push? (user: 1A in-app only). MVP vs polish? (2A MVP). Scope: P0 in-app bell + read state; non-goal: email/push (design-email/mobile-capacitor-platform). Specify: FR-1 "unread count on the header within 2s of insert" — not "feel realtime".
workflow-build-feature; UI from scratch → design-frontend; RLS matrix → plan-rls-auditBefore writing any PRD, understand the project from its source code.
Read package.json (or equivalent) to extract:
Glob: **/app/**/page.tsx → Next.js routes (features)
Glob: **/features/*/ → Feature directories
Glob: **/src/routes/**/*.tsx → Route-based features
Grep: pattern "export default" glob "**/page.tsx" output_mode "files_with_matches"
Read feature READMEs if they exist:
Glob: **/*README*.md → Feature docs
Glob: **/docs/*.md → Documentation
Glob: **/supabase/migrations/*.sql → SQL migrations
Glob: **/prisma/schema.prisma → Prisma schema
Glob: **/drizzle/schema.ts → Drizzle schema
Glob: **/types/*.ts → TypeScript type definitions
Glob: **/tasks/prd-*.md → Existing PRDs
Glob: **/docs/prd-*.md → Existing PRDs (alt location)
Glob: **/specs/*.md → Spec documents
PROJECT CONTEXT:
- Framework: [name + version]
- Database: [type + ORM]
- Existing features: [list of routes/feature dirs]
- Existing PRDs: [list or none]
- Data entities: [list from schema]
- Auth system: [provider]
When the user describes a feature, research how others have solved it:
firecrawl:firecrawl_search
{
"query": "<FEATURE_TYPE> UX patterns best practices [current year]",
"limit": 5,
"sources": [{ "type": "web" }]
}
Additional searches based on feature type:
| Feature Type | Search Query |
|---|---|
| CRUD / data management | <domain> management app UX best practices |
| Dashboard / analytics | dashboard design patterns data visualization best practices |
| Authentication / onboarding | user onboarding flow best practices [current year] |
| E-commerce / payments | e-commerce checkout UX optimization [current year] |
| Social / community | social features community engagement UX patterns |
| Content / CMS | content management UX editing experience best practices |
| Search / filtering | search and filter UX patterns faceted search |
| Settings / preferences | settings page UX patterns user preferences |
Scrape the most relevant result for detailed patterns:
firecrawl:firecrawl_scrape
{
"url": "<BEST_RESULT_URL>",
"formats": ["markdown"],
"onlyMainContent": true
}
Check if the framework supports what the feature needs:
context7:resolve-library-id
{
"libraryName": "<FRAMEWORK>",
"query": "<FEATURE_CAPABILITY> support"
}
context7:query-docs
{
"libraryId": "<RESOLVED_ID>",
"query": "<FEATURE_CAPABILITY> implementation guide"
}
If the feature involves data, check the existing schema:
supabase:list_tables
{
"project_id": "<PROJECT_ID>",
"schemas": ["public"],
"verbose": true
}
Or for specific tables:
supabase:execute_sql
{
"project_id": "<PROJECT_ID>",
"query": "SELECT column_name, data_type, is_nullable FROM information_schema.columns WHERE table_name = '<RELEVANT_TABLE>' ORDER BY ordinal_position"
}
Determine:
When the user describes a feature, DO NOT start writing immediately.
Identify what is clear vs unclear:
SemanticSearch: "How does the app currently handle <FEATURE_AREA>?" target: []
Grep: pattern "<FEATURE_KEYWORDS>" glob "*.{ts,tsx,js,jsx}"
If similar functionality already exists, the PRD should extend it rather than duplicate.
| Category | Ask When... |
|---|---|
| Problem / Goal | The "why" is unclear |
| Core Functionality | The "what" is vague |
| Scope Boundaries | Request is broad |
| Target User | Multiple user types possible |
| Success Criteria | No clear definition of "done" |
Before I write the PRD, a few questions:
1. What is the primary goal?
A. Improve UX for existing workflow
B. Add net-new capability
C. Fix a pain point
D. Performance improvement
2. Who is the target user?
A. Power users (daily use)
B. New users (onboarding)
C. All users equally
D. Internal / admin users
3. What is the expected scope?
A. MVP (ship fast, iterate later)
B. Complete feature with polish
C. Foundation for larger system
Reply with selections (e.g., "1B, 2A, 3B")
# PRD: [Feature Name]
> **Status:** Draft
> **Created:** [Date]
> **Author:** [User] + AI co-author
---
## 1. Overview
[2-3 sentences: what this does and why it matters]
### Problem Statement
[Pain point or opportunity being addressed]
### Proposed Solution
[High-level description]
---
## 2. Goals
| Goal | Success Metric |
|------|----------------|
| [Goal 1] | [Measurable outcome] |
| [Goal 2] | [Measurable outcome] |
---
## 3. User Stories
### Primary Stories
1. As a [user], I want to [action] so that [benefit]
2. As a [user], I want to [action] so that [benefit]
### Edge Case Stories
3. As a [user], when [unusual condition], I expect [graceful behavior]
---
## 4. Functional Requirements
### Must Have (P0)
- [ ] FR-1: [Requirement]
- [ ] FR-2: [Requirement]
### Should Have (P1)
- [ ] FR-3: [Requirement]
### Nice to Have (P2)
- [ ] FR-4: [Requirement]
---
## 5. Non-Goals (Out of Scope)
- [Thing NOT doing and why]
- [Another thing NOT doing and why]
---
## 6. Technical Feasibility
### Existing Infrastructure
- **Framework:** [detected — supports feature because...]
- **Database:** [existing tables that support this: ...]
- **Auth:** [current auth supports required permissions: YES/NO]
### New Infrastructure Needed
- **Database changes:** [new tables, columns, or migrations]
- **API endpoints:** [new routes needed]
- **New dependencies:** [libraries to add, if any]
### Complexity Assessment
| Component | Complexity | Estimate | Notes |
|-----------|-----------|----------|-------|
| Frontend UI | [Low/Med/High] | [days] | [notes] |
| API layer | [Low/Med/High] | [days] | [notes] |
| Database | [Low/Med/High] | [days] | [notes] |
| Auth/permissions | [Low/Med/High] | [days] | [notes] |
---
## 7. Competitive Analysis
### How Others Solve This
[Summary from Firecrawl research]
| Product | Approach | Strength | Weakness |
|---------|----------|----------|----------|
| [Competitor A] | [how they do it] | [what works] | [what doesn't] |
| [Competitor B] | [how they do it] | [what works] | [what doesn't] |
### Our Differentiation
[What we will do differently and why]
---
## 8. UI/UX Considerations
### Key Screens
1. [Screen name] — [purpose]
2. [Screen name] — [purpose]
### UX Patterns Borrowed
- [Pattern from research] — adapted for [our context]
### Accessibility Requirements
- Keyboard navigable
- Screen reader compatible
- Color contrast WCAG AA
---
## 9. Data Model
### Existing Tables Used
| Table | Columns Used | Purpose |
|-------|-------------|---------|
| [table] | [columns] | [why needed] |
### New Tables / Changes
```sql
-- New table or ALTER TABLE
CREATE TABLE IF NOT EXISTS [table_name] (
id uuid PRIMARY KEY DEFAULT gen_random_uuid(),
[columns...],
created_at timestamptz NOT NULL DEFAULT now(),
updated_at timestamptz NOT NULL DEFAULT now()
);
---
## Step 5: Iterate [HIGH freedom]
After presenting the PRD:
1. Ask: "Does this capture what you had in mind?"
2. Incorporate edits
3. Resolve open questions
4. Confirm: "Is this PRD ready to save?"
---
## Step 6: Save [LOW freedom — run exactly]
**Location:** `tasks/prd-[feature-name].md`
**Naming:**
- All lowercase
- Use hyphens for spaces
- Examples: `prd-dark-mode.md`, `prd-export-csv.md`, `prd-user-onboarding.md`
---
## Writing Guidelines
Target audience: a **junior developer** should understand this.
- Clear, simple language
- Define acronyms on first use
- Be explicit — no implied knowledge
- Every requirement is testable ("fast" is vague; "loads in under 200ms" is testable)
- Use tables for structured comparisons
- Include "Not doing" section to prevent scope creep
---
## Anti-Patterns
- Starting to code before asking questions
- Asking 10+ questions (keep to 3-5)
- Writing implementation details (PRD = WHAT/WHY, not HOW)
- Vague requirements ("should be fast" -> "response time under 200ms")
- Skipping competitive research (leads to reinventing the wheel)
- Skipping technical feasibility (leads to impossible requirements)
- Not checking existing codebase (leads to duplicate features)
Frequently asked questions
Degree of freedom: MIXED. Clarifying questions, scope, and requirements [HIGH freedom]; stack/feature/schema detection [LOW freedom — run exactly].
The source record exposes this install command: npx skills add https://github.com/kensaurus/cursor-kenji --skill "skills/design-prd". Inspect the command and pinned source before running it.
Alternatives
coreyhaines31/marketingskills
When the user wants to plan, design, or implement an A/B test or experiment, or build a growth experimentation program. Also use when the user mentions "A/B test," "split test," "experiment," "test this change," "variant copy," "multivariate test," "hypothesis," "should I test this," "which version is better," "test two versions," "statistical significance," "how long should I run this test," "growth experiments," "experiment velocity," "experiment backlog," "ICE score," "experimentation program
coreyhaines31/marketingskills
When the user wants to reduce churn, build cancellation flows, set up save offers, recover failed payments, or implement retention strategies. Also use when the user mentions 'churn,' 'cancel flow,' 'offboarding,' 'save offer,' 'dunning,' 'failed payment recovery,' 'win-back,' 'retention,' 'exit survey,' 'pause subscription,' 'involuntary churn,' 'people keep canceling,' 'churn rate is too high,' 'how do I keep users,' or 'customers are leaving.' Use this whenever someone is losing subscribers o
prowler-cloud/prowler
PostgreSQL indexing best practices for Prowler: index design, partial indexes, partitioned table indexing, EXPLAIN ANALYZE validation, concurrent operations, monitoring, and maintenance. Trigger: When creating or modifying PostgreSQL indexes, analyzing query performance with EXPLAIN, debugging slow queries, reviewing index usage statistics, reindexing, dropping indexes, or working with partitioned table indexes. Also trigger when discussing index strategies, partial indexes, or index maintenance
narrative-io/narrative-skills-marketplace
Translate a fuzzy analytical question into a rigorous investigation plan. Interrogates the ask, grounds the plan in the available data dictionary, applies analytical best practices, and produces a structured brief of query specifications for a downstream query-writing skill. Plans, does not write SQL. Use when: "why did X drop", "is there a relationship between A and B", "who are our highest-value customers", "what's driving the change in Y", "investigate this trend", "design an analysis for", "