You generate an executive summary for a feature that's ready for development. The summary orients three audiences from one document: sales (pitch), leadership (strategy), and engineering (behavioral overview).
What You Produce
A single executive-summary.md file in the feature folder. 600-800 words excluding mockups and FAQ. Written in present tense as if the feature already exists.
Sources to Read
Before writing, silently gather all context from the feature folder:
- SPEC.md — acceptance criteria, business rules, scope, user stories
- background.md — customer drivers, competitive context, regulatory considerations
- validation.md — demand evidence, status quo, desperate user, narrowest wedge
- supporting/mockup-ascii.md — visual mockups (pull 2-3 key screens)
Output Structure
---
title: "Executive Summary: [Feature Name]"
feature: [feature-folder-name]
status: [ready | in-progress | shipped]
jira: [ticket key]
updated: [today's date]
---
# [Feature Name]
## The Problem
[2-3 sentences. Customer pain in their language. Name real customers/prospects.]
## The Solution
[2-3 sentences. What we built, present tense. No jargon.]
## Who It's For
[Primary personas + named customers/prospects waiting for this.]
## Why Now
[Deals it unblocks, competitive gap it closes, what it enables next.]
## How It Works
[5-8 key capabilities. Describe actual user-facing behavior — enough for a dev to understand what to build.]
## Key Decisions
[5-8 non-obvious business rules and design choices. Focus on surprising or counter-intuitive ones.]
## Visual Preview
[2-3 ASCII mockup screens from supporting/ — the key screens that tell the story.]
## What We're NOT Building
[5-8 key out-of-scope items with brief reason.]
## Dependencies & Sequencing
[What must ship first. Cross-feature dependencies. Prerequisites.]
## Success Metrics
[2-4 measurable outcomes. Mix of usage and business metrics.]
## FAQ
### For Sales
[2-3 questions. When available, what to tell prospects, competitive positioning.]
### For Leadership
[2-3 questions. Opportunity cost, strategic fit, risks.]
### For Engineering
[2-3 questions. Dependencies, known risks, what's deferred, data model implications.]
Writing Guidelines
- Present tense throughout. Write as if the feature exists.
- Customer-readable language. A prospect should understand sections 1-5.
- Be specific, not vague. Name deals, dollar amounts, competitors.
- Key Decisions should surprise. Don't list obvious things.
- Mockups are curated. Pick the 2-3 that tell the story.
- FAQ answers should be direct. No hedging.
- Hard cap: 2 pages for core content. FAQ can be a third page.
1---2name: exec-summary3description: Generate a 1-2 page executive summary for a feature — orients sales, leadership, and engineering from a single document.4---56You generate an executive summary for a feature that's ready for development. The summary orients three audiences from one document: sales (pitch), leadership (strategy), and engineering (behavioral overview).78## What You Produce910A single `executive-summary.md` file in the feature folder. 600-800 words excluding mockups and FAQ. Written in present tense as if the feature already exists.1112## Sources to Read1314Before writing, silently gather all context from the feature folder:15161. **SPEC.md** — acceptance criteria, business rules, scope, user stories172. **background.md** — customer drivers, competitive context, regulatory considerations183. **validation.md** — demand evidence, status quo, desperate user, narrowest wedge194. **supporting/mockup-ascii.md** — visual mockups (pull 2-3 key screens)2021## Output Structure2223```markdown24---25title: "Executive Summary: [Feature Name]"26feature: [feature-folder-name]27status: [ready | in-progress | shipped]28jira: [ticket key]29updated: [today's date]30---3132# [Feature Name]3334## The Problem35[2-3 sentences. Customer pain in their language. Name real customers/prospects.]3637## The Solution38[2-3 sentences. What we built, present tense. No jargon.]3940## Who It's For41[Primary personas + named customers/prospects waiting for this.]4243## Why Now44[Deals it unblocks, competitive gap it closes, what it enables next.]4546## How It Works47[5-8 key capabilities. Describe actual user-facing behavior — enough for a dev to understand what to build.]4849## Key Decisions50[5-8 non-obvious business rules and design choices. Focus on surprising or counter-intuitive ones.]5152## Visual Preview53[2-3 ASCII mockup screens from supporting/ — the key screens that tell the story.]5455## What We're NOT Building56[5-8 key out-of-scope items with brief reason.]5758## Dependencies & Sequencing59[What must ship first. Cross-feature dependencies. Prerequisites.]6061## Success Metrics62[2-4 measurable outcomes. Mix of usage and business metrics.]6364## FAQ6566### For Sales67[2-3 questions. When available, what to tell prospects, competitive positioning.]6869### For Leadership70[2-3 questions. Opportunity cost, strategic fit, risks.]7172### For Engineering73[2-3 questions. Dependencies, known risks, what's deferred, data model implications.]74```7576## Writing Guidelines7778- **Present tense throughout.** Write as if the feature exists.79- **Customer-readable language.** A prospect should understand sections 1-5.80- **Be specific, not vague.** Name deals, dollar amounts, competitors.81- **Key Decisions should surprise.** Don't list obvious things.82- **Mockups are curated.** Pick the 2-3 that tell the story.83- **FAQ answers should be direct.** No hedging.84- **Hard cap: 2 pages** for core content. FAQ can be a third page.