Requirement Summarizer
Overview
Extract and organize the essential information from requirement documents into a structured markdown summary that highlights core features, constraints, and priorities.
Workflow
Follow these steps to summarize requirement documents:
1. Read and Understand the Document
First, read the entire requirement document to understand its structure and content:
- Identify document type (PRD, RFC, user story, business requirement, etc.)
- Note any existing structure (sections, headers, numbering)
- Understand the context and scope of the requirements
2. Extract Key Information
Systematically identify and extract:
Core Features:
- Main functionality being proposed or required
- User-facing capabilities
- System behaviors and interactions
- Integration points with other systems
Constraints:
- Technical limitations or requirements
- Business constraints (budget, timeline, resources)
- Regulatory or compliance requirements
- Compatibility or platform constraints
- Security or privacy requirements
- Performance requirements (latency, throughput, scalability)
Priorities:
- Explicit priority labels (P0, P1, P2, Critical, High, Medium, Low)
- MoSCoW categorization (Must have, Should have, Could have, Won't have)
- MVP vs future phases
- Required vs optional features
- Blocking vs non-blocking items
3. Generate Structured Summary
Create a markdown report with the following structure:
# Requirements Summary: [Document Name]
## Document Metadata
- **Source**: [Document title/filename]
- **Type**: [PRD/RFC/User Story/Business Requirement/etc.]
- **Date Analyzed**: [Current date]
## Executive Summary
[2-3 sentence overview of what this requirement document defines]
## Core Features
### [Feature Category 1]
- **[Feature Name]**: [Brief description]
- Priority: [P0/P1/P2 or Must/Should/Could]
- Notes: [Any relevant context]
### [Feature Category 2]
...
## Constraints
### Technical Constraints
- [Constraint description]
- [Constraint description]
### Business Constraints
- [Constraint description]
- [Constraint description]
### Compliance/Regulatory Constraints
- [Constraint description]
### Performance Constraints
- [Constraint description]
## Priority Breakdown
### Critical/Must-Have (P0)
1. [Feature/requirement]
2. [Feature/requirement]
### High Priority/Should-Have (P1)
1. [Feature/requirement]
2. [Feature/requirement]
### Medium Priority/Could-Have (P2)
1. [Feature/requirement]
2. [Feature/requirement]
### Future/Won't-Have (P3)
1. [Feature/requirement]
## Key Decisions & Open Questions
- **Decision**: [What needs to be decided]
- Options: [If applicable]
- Impact: [Why this matters]
- **Open Question**: [Unclear requirement or missing information]
## Success Criteria
[How will we know this is successful? Metrics, acceptance criteria, or outcomes]
## Dependencies
- [External dependencies or prerequisites]
- [Related systems or teams]
## Timeline & Milestones
- [Key dates if mentioned in requirements]
- [Phase breakdown if applicable]
4. Quality Checks
Before presenting the summary, verify:
- Completeness: All major features, constraints, and priorities captured
- Clarity: Each item is clearly described without ambiguity
- Accuracy: Information faithfully represents the source document
- Organization: Related items grouped logically
- Priorities: Priority levels are consistently applied
- Actionability: Summary provides clear understanding of what needs to be built
5. Handle Edge Cases
Multiple conflicting priorities:
- Note conflicts in "Key Decisions & Open Questions"
- Flag for stakeholder clarification
Implicit vs explicit priorities:
- If priorities aren't explicitly stated, infer from context (deadline pressure, business value, user impact)
- Mark inferred priorities with "(inferred)" notation
Vague or ambiguous requirements:
- Capture them in "Open Questions"
- Suggest clarifying questions
Missing information:
- Note gaps in "Open Questions"
- Highlight critical missing details
Best Practices
Be concise but comprehensive:
- Capture essential details without copying entire paragraphs
- Use bullet points for scanability
- Link back to specific sections of source document if helpful
Maintain objectivity:
- Extract what's written, not what should be written
- Flag concerns or gaps but don't rewrite requirements
Prioritize based on evidence:
- Use explicit priority markers from the document
- When inferring, base on business value, user impact, dependencies, and timeline
Adapt to document type:
- PRDs/RFCs: Focus on technical details, system design, and architecture constraints
- Business requirements: Emphasize business value, ROI, stakeholder needs
- User stories: Extract acceptance criteria, user journeys, and UX requirements
- Epics: Break down into constituent stories and themes
Handle different priority systems:
- P0/P1/P2/P3 (common in tech)
- Critical/High/Medium/Low
- MoSCoW (Must/Should/Could/Won't)
- Phase 1/2/3 or MVP/Future
- Convert between systems when helpful for clarity
Example Usage
User request:
"Summarize the requirements from this PRD and identify what's critical for the first release"
Response approach:
- Read the PRD document
- Extract all features, noting which are marked for MVP/Phase 1
- Identify technical and business constraints
- Map explicit and implicit priorities
- Generate structured markdown summary
- Highlight critical items for first release in Priority Breakdown section
User request:
"What are the main features and constraints in these user stories?"
Response approach:
- Read all user stories
- Group related stories by feature theme
- Extract acceptance criteria as feature details
- Identify technical constraints from story details
- Note priorities if labeled (or infer from sprint assignment)
- Generate summary organized by feature theme
Tips for Effective Summarization
- Look for patterns: Similar requirements may be scattered; group them logically
- Read between the lines: Performance needs, security concerns may be implicit
- Note what's missing: Gaps in requirements are as important as what's present
- Preserve traceability: Link summary items back to source sections when possible
- Stay neutral: Don't judge requirement quality, just extract and organize
- Be specific: "Fast API response" → "API response time < 200ms"
1---2name: requirement-summarizer3description: Extract and summarize core features, constraints, and priorities from requirement documents. Use when analyzing PRDs, RFCs, business requirements, user stories, epics, or any requirement documentation to identify must-have features, technical constraints, priority levels (P0/P1/P2/MoSCoW), and key decision points. Triggers when users ask to summarize, analyze, extract, or understand requirements from documents.4---56# Requirement Summarizer78## Overview910Extract and organize the essential information from requirement documents into a structured markdown summary that highlights core features, constraints, and priorities.1112## Workflow1314Follow these steps to summarize requirement documents:1516### 1. Read and Understand the Document1718First, read the entire requirement document to understand its structure and content:1920- Identify document type (PRD, RFC, user story, business requirement, etc.)21- Note any existing structure (sections, headers, numbering)22- Understand the context and scope of the requirements2324### 2. Extract Key Information2526Systematically identify and extract:2728**Core Features:**29- Main functionality being proposed or required30- User-facing capabilities31- System behaviors and interactions32- Integration points with other systems3334**Constraints:**35- Technical limitations or requirements36- Business constraints (budget, timeline, resources)37- Regulatory or compliance requirements38- Compatibility or platform constraints39- Security or privacy requirements40- Performance requirements (latency, throughput, scalability)4142**Priorities:**43- Explicit priority labels (P0, P1, P2, Critical, High, Medium, Low)44- MoSCoW categorization (Must have, Should have, Could have, Won't have)45- MVP vs future phases46- Required vs optional features47- Blocking vs non-blocking items4849### 3. Generate Structured Summary5051Create a markdown report with the following structure:5253```markdown54# Requirements Summary: [Document Name]5556## Document Metadata57- **Source**: [Document title/filename]58- **Type**: [PRD/RFC/User Story/Business Requirement/etc.]59- **Date Analyzed**: [Current date]6061## Executive Summary62[2-3 sentence overview of what this requirement document defines]6364## Core Features6566### [Feature Category 1]67- **[Feature Name]**: [Brief description]68 - Priority: [P0/P1/P2 or Must/Should/Could]69 - Notes: [Any relevant context]7071### [Feature Category 2]72...7374## Constraints7576### Technical Constraints77- [Constraint description]78- [Constraint description]7980### Business Constraints81- [Constraint description]82- [Constraint description]8384### Compliance/Regulatory Constraints85- [Constraint description]8687### Performance Constraints88- [Constraint description]8990## Priority Breakdown9192### Critical/Must-Have (P0)931. [Feature/requirement]942. [Feature/requirement]9596### High Priority/Should-Have (P1)971. [Feature/requirement]982. [Feature/requirement]99100### Medium Priority/Could-Have (P2)1011. [Feature/requirement]1022. [Feature/requirement]103104### Future/Won't-Have (P3)1051. [Feature/requirement]106107## Key Decisions & Open Questions108- **Decision**: [What needs to be decided]109 - Options: [If applicable]110 - Impact: [Why this matters]111112- **Open Question**: [Unclear requirement or missing information]113114## Success Criteria115[How will we know this is successful? Metrics, acceptance criteria, or outcomes]116117## Dependencies118- [External dependencies or prerequisites]119- [Related systems or teams]120121## Timeline & Milestones122- [Key dates if mentioned in requirements]123- [Phase breakdown if applicable]124```125126### 4. Quality Checks127128Before presenting the summary, verify:129130- **Completeness**: All major features, constraints, and priorities captured131- **Clarity**: Each item is clearly described without ambiguity132- **Accuracy**: Information faithfully represents the source document133- **Organization**: Related items grouped logically134- **Priorities**: Priority levels are consistently applied135- **Actionability**: Summary provides clear understanding of what needs to be built136137### 5. Handle Edge Cases138139**Multiple conflicting priorities:**140- Note conflicts in "Key Decisions & Open Questions"141- Flag for stakeholder clarification142143**Implicit vs explicit priorities:**144- If priorities aren't explicitly stated, infer from context (deadline pressure, business value, user impact)145- Mark inferred priorities with "(inferred)" notation146147**Vague or ambiguous requirements:**148- Capture them in "Open Questions"149- Suggest clarifying questions150151**Missing information:**152- Note gaps in "Open Questions"153- Highlight critical missing details154155## Best Practices156157**Be concise but comprehensive:**158- Capture essential details without copying entire paragraphs159- Use bullet points for scanability160- Link back to specific sections of source document if helpful161162**Maintain objectivity:**163- Extract what's written, not what should be written164- Flag concerns or gaps but don't rewrite requirements165166**Prioritize based on evidence:**167- Use explicit priority markers from the document168- When inferring, base on business value, user impact, dependencies, and timeline169170**Adapt to document type:**171- **PRDs/RFCs**: Focus on technical details, system design, and architecture constraints172- **Business requirements**: Emphasize business value, ROI, stakeholder needs173- **User stories**: Extract acceptance criteria, user journeys, and UX requirements174- **Epics**: Break down into constituent stories and themes175176**Handle different priority systems:**177- P0/P1/P2/P3 (common in tech)178- Critical/High/Medium/Low179- MoSCoW (Must/Should/Could/Won't)180- Phase 1/2/3 or MVP/Future181- Convert between systems when helpful for clarity182183## Example Usage184185**User request:**186> "Summarize the requirements from this PRD and identify what's critical for the first release"187188**Response approach:**1891. Read the PRD document1902. Extract all features, noting which are marked for MVP/Phase 11913. Identify technical and business constraints1924. Map explicit and implicit priorities1935. Generate structured markdown summary1946. Highlight critical items for first release in Priority Breakdown section195196**User request:**197> "What are the main features and constraints in these user stories?"198199**Response approach:**2001. Read all user stories2012. Group related stories by feature theme2023. Extract acceptance criteria as feature details2034. Identify technical constraints from story details2045. Note priorities if labeled (or infer from sprint assignment)2056. Generate summary organized by feature theme206207## Tips for Effective Summarization208209- **Look for patterns**: Similar requirements may be scattered; group them logically210- **Read between the lines**: Performance needs, security concerns may be implicit211- **Note what's missing**: Gaps in requirements are as important as what's present212- **Preserve traceability**: Link summary items back to source sections when possible213- **Stay neutral**: Don't judge requirement quality, just extract and organize214- **Be specific**: "Fast API response" → "API response time < 200ms"