Playbooks
Overview
Build and execute industry-aware, stage-specific automated workflows that guide founders from idea to investor-ready. Playbooks combine prompt packs, AI agents, wizards, dashboards, and automations into structured founder journeys.
When to Use
- Building onboarding workflows
- Creating industry-specific validation flows
- Implementing stage-aware guidance
- Designing automated task generation
- Building dashboard automation triggers
Playbook Architecture
┌────────────────────────────────────────────────────────────────────┐
│ STARTUPAI PLAYBOOK SYSTEM │
├────────────────────────────────────────────────────────────────────┤
│ │
│ ┌─────────────┐ ┌─────────────┐ ┌─────────────┐ │
│ │ FOUNDER │───▶│ INDUSTRY │───▶│ ROUTER │ │
│ │ SELECTS │ │ DETECTED │ │ (Context) │ │
│ │ INDUSTRY │ │ │ │ │ │
│ └─────────────┘ └─────────────┘ └──────┬──────┘ │
│ │ │
│ ┌──────────────────────────────────────┼───────────────┐ │
│ │ │ │ │
│ ▼ ▼ ▼ │
│ ┌─────────────┐ ┌─────────────┐ ┌─────────────┐ │
│ │ CORE │ │ ADVANCED │ │ INDUSTRY │ │
│ │ PLAYBOOKS │ │ PLAYBOOKS │ │ PLAYBOOKS │ │
│ │ │ │ │ │ │ │
│ │ • Onboarding│ │ • Fundraise │ │ • FinTech │ │
│ │ • Validator │ │ • Scale │ │ • Healthcare│ │
│ │ • Canvas │ │ • Pivot │ │ • SaaS │ │
│ │ • Pitch │ │ • Exit │ │ • +10 more │ │
│ └──────┬──────┘ └──────┬──────┘ └──────┬──────┘ │
│ │ │ │ │
│ └──────────────────┼──────────────────┘ │
│ │ │
│ ┌──────▼──────┐ │
│ │ PROMPT │ │
│ │ PACKS │ │
│ └──────┬──────┘ │
│ │ │
│ ┌──────────────────┼──────────────────┐ │
│ ▼ ▼ ▼ │
│ ┌─────────────┐ ┌─────────────┐ ┌─────────────┐ │
│ │ WIZARDS │ │ AI │ │ AUTOMATIONS │ │
│ │ (4-step) │ │ AGENTS │ │ (Triggers) │ │
│ └─────────────┘ └─────────────┘ └─────────────┘ │
│ │
└────────────────────────────────────────────────────────────────────┘
Playbook Categories
| Category |
Description |
Playbooks Included |
| Core |
Essential startup fundamentals |
Onboarding, Idea Validation, Lean Canvas, Pitch Deck |
| Advanced |
Growth and scaling |
GTM, Fundraising, Team Building, Operations |
| Industry |
Vertical-specific guidance |
13 industries with tailored questions, metrics |
| Stage |
Milestone-specific |
Pre-Seed, Seed, Series A, Growth |
Core Playbooks
Onboarding Playbook
| Step |
Screen |
Agent |
Outputs |
| 1 |
Industry Selection |
Industry Expert |
industry, sub_category |
| 2 |
Problem Definition |
Problem Sharpener |
who, struggle, why_now |
| 3 |
Team/Founder |
Founder Analyst |
founder_market_fit, gaps |
| 4 |
One-Liner |
Pitch Writer |
one_sentence_pitch |
Validation Playbook
| Validation Type |
Duration |
Agent |
Outputs |
| Quick Validate |
2-3 min |
Validator Agent |
Score, top 3 risks, 3 tasks |
| Deep Validate |
10-15 min |
Deep Analysis Agent |
Full scorecard, market data |
| Investor Lens |
5-7 min |
Investor Simulator |
Red flags, elephant questions |
Canvas Playbook
| Canvas Box |
Source Data |
Agent |
Enhancement |
| Problem |
Onboarding Step 2 |
Problem Agent |
Top 3 problems ranked |
| Customer Segments |
Market research |
ICP Builder |
First buyer profile |
| Unique Value Prop |
One-liner + problem |
UVP Generator |
A/B test variants |
| Solution |
Product description |
Solution Agent |
Must-have features |
| Channels |
Industry playbook |
Channel Advisor |
Top 3 channels ranked |
Pitch Deck Playbook
| Step |
Screen |
Agent |
Output |
| 1 |
Template Selection |
Template Advisor |
Template style + slide count |
| 2 |
Smart Interview |
Industry Expert |
8 industry questions answered |
| 3 |
Content Generation |
Deck Writer |
All slides with bullets |
| 4 |
Visual Enhancement |
Visual Agent |
Design suggestions |
| 5 |
Review & Refine |
Critic Agent |
Elephant identifier, red flags |
Industry-Specific Decks
| Industry |
Slide Emphasis |
Unique Slides |
| SaaS |
Traction, Retention |
Net Revenue Retention |
| FinTech |
Compliance, Trust |
Regulatory Pathway |
| Healthcare |
Clinical Evidence |
FDA/CE Pathway |
| Marketplace |
Liquidity, Take Rate |
Supply/Demand Balance |
Agent Routing
const AGENT_ROUTING = {
onboarding_step_1: {
agent: 'industry_expert',
pack: 'problem-validation',
context: ['industry', 'company_description']
},
onboarding_step_2: {
agent: 'problem_sharpener',
pack: 'problem-validation',
context: ['industry', 'step_1_data']
},
validator_quick: {
agent: 'validator_agent',
pack: 'idea-validation',
context: ['idea_text', 'industry']
},
canvas_generate: {
agent: 'canvas_builder',
pack: 'lean-canvas-generator',
context: ['profile', 'validation_data']
},
pitch_generate: {
agent: 'deck_writer',
pack: 'industry_pitch_pack',
context: ['profile', 'canvas', 'interview_data']
}
};
Automation Triggers
| Trigger |
Condition |
Action |
Playbook |
| Onboarding Complete |
Step 4 saved |
Generate 5 validation tasks |
Onboarding |
| Validation Score < 60 |
Quick validate done |
Suggest pivot or refine |
Validation |
| Canvas Incomplete |
3+ boxes empty after 7 days |
Reminder + AI suggestions |
Lean Canvas |
| Pitch Deck Generated |
Deck created |
Run critic agent |
Pitch Deck |
| Investor Added |
New investor in CRM |
Research + personalize |
Fundraising |
Knowledge Injection
Each playbook injects industry-specific knowledge at runtime:
interface IndustryKnowledge {
industry_id: string;
success_stories: { company: string; what_worked: string; metric_proof: string }[];
failure_patterns: { pattern: string; why_it_fails: string; warning_signs: string[] }[];
investor_expectations: { stage: string; must_have: string[]; deal_breakers: string[] }[];
benchmarks: { metric: string; good_threshold: string; great_threshold: string }[];
red_flags: { flag: string; why_it_kills: string }[];
terminology: { term: string; definition: string }[];
}
Context-Filtered Injection
| Feature |
Knowledge Slice |
Why This Slice |
| Onboarding |
Failure patterns + Terminology |
Guide early decisions |
| Lean Canvas |
GTM patterns + Benchmark data |
Validate business model |
| Pitch Deck |
Investor expectations + Success stories + Red flags |
Make deck investor-ready |
| Validator |
Benchmark data + Red flags + Failure patterns |
Score against standards |
| Tasks/Planning |
GTM patterns + Failure patterns |
Build actionable roadmap |
Edge Function: playbook-router
// Actions
- 'get_playbook': Retrieve playbook for context (industry, stage, feature)
- 'run_step': Execute single playbook step with agents
- 'inject_knowledge': Get filtered knowledge for context
- 'generate_tasks': Create tasks from playbook outputs
- 'track_progress': Update playbook completion status
AI Model Selection
| Task |
Model |
| Industry questions |
gemini-3-flash-preview |
| Problem sharpening |
claude-sonnet-4-5-20250929 |
| Validation scoring |
gemini-3-pro-preview |
| Deck generation |
claude-sonnet-4-5-20250929 |
| Critic/Red flags |
claude-sonnet-4-5-20250929 |
References
- PRD Section 3: Onboarding System
- PRD Section 4: Business Idea Validator
- Strategy Section 7: Industry Playbooks
/startup-system/guides/101-startup-playbooks.md
1---2name: playbooks3description: Use this skill when building or executing startup playbooks - industry-specific workflows, stage-aware guidance, and automated founder journeys. Triggers on "playbook", "industry workflow", "stage-specific", "founder journey", "onboarding flow", "validation flow".4---56# Playbooks78## Overview910Build and execute industry-aware, stage-specific automated workflows that guide founders from idea to investor-ready. Playbooks combine prompt packs, AI agents, wizards, dashboards, and automations into structured founder journeys.1112## When to Use1314- Building onboarding workflows15- Creating industry-specific validation flows16- Implementing stage-aware guidance17- Designing automated task generation18- Building dashboard automation triggers1920## Playbook Architecture2122```23┌────────────────────────────────────────────────────────────────────┐24│ STARTUPAI PLAYBOOK SYSTEM │25├────────────────────────────────────────────────────────────────────┤26│ │27│ ┌─────────────┐ ┌─────────────┐ ┌─────────────┐ │28│ │ FOUNDER │───▶│ INDUSTRY │───▶│ ROUTER │ │29│ │ SELECTS │ │ DETECTED │ │ (Context) │ │30│ │ INDUSTRY │ │ │ │ │ │31│ └─────────────┘ └─────────────┘ └──────┬──────┘ │32│ │ │33│ ┌──────────────────────────────────────┼───────────────┐ │34│ │ │ │ │35│ ▼ ▼ ▼ │36│ ┌─────────────┐ ┌─────────────┐ ┌─────────────┐ │37│ │ CORE │ │ ADVANCED │ │ INDUSTRY │ │38│ │ PLAYBOOKS │ │ PLAYBOOKS │ │ PLAYBOOKS │ │39│ │ │ │ │ │ │ │40│ │ • Onboarding│ │ • Fundraise │ │ • FinTech │ │41│ │ • Validator │ │ • Scale │ │ • Healthcare│ │42│ │ • Canvas │ │ • Pivot │ │ • SaaS │ │43│ │ • Pitch │ │ • Exit │ │ • +10 more │ │44│ └──────┬──────┘ └──────┬──────┘ └──────┬──────┘ │45│ │ │ │ │46│ └──────────────────┼──────────────────┘ │47│ │ │48│ ┌──────▼──────┐ │49│ │ PROMPT │ │50│ │ PACKS │ │51│ └──────┬──────┘ │52│ │ │53│ ┌──────────────────┼──────────────────┐ │54│ ▼ ▼ ▼ │55│ ┌─────────────┐ ┌─────────────┐ ┌─────────────┐ │56│ │ WIZARDS │ │ AI │ │ AUTOMATIONS │ │57│ │ (4-step) │ │ AGENTS │ │ (Triggers) │ │58│ └─────────────┘ └─────────────┘ └─────────────┘ │59│ │60└────────────────────────────────────────────────────────────────────┘61```6263## Playbook Categories6465| Category | Description | Playbooks Included |66|----------|-------------|-------------------|67| **Core** | Essential startup fundamentals | Onboarding, Idea Validation, Lean Canvas, Pitch Deck |68| **Advanced** | Growth and scaling | GTM, Fundraising, Team Building, Operations |69| **Industry** | Vertical-specific guidance | 13 industries with tailored questions, metrics |70| **Stage** | Milestone-specific | Pre-Seed, Seed, Series A, Growth |7172## Core Playbooks7374### Onboarding Playbook7576| Step | Screen | Agent | Outputs |77|------|--------|-------|---------|78| 1 | Industry Selection | Industry Expert | `industry`, `sub_category` |79| 2 | Problem Definition | Problem Sharpener | `who`, `struggle`, `why_now` |80| 3 | Team/Founder | Founder Analyst | `founder_market_fit`, `gaps` |81| 4 | One-Liner | Pitch Writer | `one_sentence_pitch` |8283### Validation Playbook8485| Validation Type | Duration | Agent | Outputs |86|-----------------|----------|-------|---------|87| **Quick Validate** | 2-3 min | Validator Agent | Score, top 3 risks, 3 tasks |88| **Deep Validate** | 10-15 min | Deep Analysis Agent | Full scorecard, market data |89| **Investor Lens** | 5-7 min | Investor Simulator | Red flags, elephant questions |9091### Canvas Playbook9293| Canvas Box | Source Data | Agent | Enhancement |94|------------|-------------|-------|-------------|95| **Problem** | Onboarding Step 2 | Problem Agent | Top 3 problems ranked |96| **Customer Segments** | Market research | ICP Builder | First buyer profile |97| **Unique Value Prop** | One-liner + problem | UVP Generator | A/B test variants |98| **Solution** | Product description | Solution Agent | Must-have features |99| **Channels** | Industry playbook | Channel Advisor | Top 3 channels ranked |100101### Pitch Deck Playbook102103| Step | Screen | Agent | Output |104|------|--------|-------|--------|105| 1 | Template Selection | Template Advisor | Template style + slide count |106| 2 | Smart Interview | Industry Expert | 8 industry questions answered |107| 3 | Content Generation | Deck Writer | All slides with bullets |108| 4 | Visual Enhancement | Visual Agent | Design suggestions |109| 5 | Review & Refine | Critic Agent | Elephant identifier, red flags |110111## Industry-Specific Decks112113| Industry | Slide Emphasis | Unique Slides |114|----------|---------------|---------------|115| **SaaS** | Traction, Retention | Net Revenue Retention |116| **FinTech** | Compliance, Trust | Regulatory Pathway |117| **Healthcare** | Clinical Evidence | FDA/CE Pathway |118| **Marketplace** | Liquidity, Take Rate | Supply/Demand Balance |119120## Agent Routing121122```typescript123const AGENT_ROUTING = {124 onboarding_step_1: {125 agent: 'industry_expert',126 pack: 'problem-validation',127 context: ['industry', 'company_description']128 },129 onboarding_step_2: {130 agent: 'problem_sharpener',131 pack: 'problem-validation',132 context: ['industry', 'step_1_data']133 },134 validator_quick: {135 agent: 'validator_agent',136 pack: 'idea-validation',137 context: ['idea_text', 'industry']138 },139 canvas_generate: {140 agent: 'canvas_builder',141 pack: 'lean-canvas-generator',142 context: ['profile', 'validation_data']143 },144 pitch_generate: {145 agent: 'deck_writer',146 pack: 'industry_pitch_pack',147 context: ['profile', 'canvas', 'interview_data']148 }149};150```151152## Automation Triggers153154| Trigger | Condition | Action | Playbook |155|---------|-----------|--------|----------|156| **Onboarding Complete** | Step 4 saved | Generate 5 validation tasks | Onboarding |157| **Validation Score < 60** | Quick validate done | Suggest pivot or refine | Validation |158| **Canvas Incomplete** | 3+ boxes empty after 7 days | Reminder + AI suggestions | Lean Canvas |159| **Pitch Deck Generated** | Deck created | Run critic agent | Pitch Deck |160| **Investor Added** | New investor in CRM | Research + personalize | Fundraising |161162## Knowledge Injection163164Each playbook injects industry-specific knowledge at runtime:165166```typescript167interface IndustryKnowledge {168 industry_id: string;169 success_stories: { company: string; what_worked: string; metric_proof: string }[];170 failure_patterns: { pattern: string; why_it_fails: string; warning_signs: string[] }[];171 investor_expectations: { stage: string; must_have: string[]; deal_breakers: string[] }[];172 benchmarks: { metric: string; good_threshold: string; great_threshold: string }[];173 red_flags: { flag: string; why_it_kills: string }[];174 terminology: { term: string; definition: string }[];175}176```177178## Context-Filtered Injection179180| Feature | Knowledge Slice | Why This Slice |181|---------|-----------------|----------------|182| **Onboarding** | Failure patterns + Terminology | Guide early decisions |183| **Lean Canvas** | GTM patterns + Benchmark data | Validate business model |184| **Pitch Deck** | Investor expectations + Success stories + Red flags | Make deck investor-ready |185| **Validator** | Benchmark data + Red flags + Failure patterns | Score against standards |186| **Tasks/Planning** | GTM patterns + Failure patterns | Build actionable roadmap |187188## Edge Function: `playbook-router`189190```typescript191// Actions192- 'get_playbook': Retrieve playbook for context (industry, stage, feature)193- 'run_step': Execute single playbook step with agents194- 'inject_knowledge': Get filtered knowledge for context195- 'generate_tasks': Create tasks from playbook outputs196- 'track_progress': Update playbook completion status197```198199## AI Model Selection200201| Task | Model |202|------|-------|203| Industry questions | `gemini-3-flash-preview` |204| Problem sharpening | `claude-sonnet-4-5-20250929` |205| Validation scoring | `gemini-3-pro-preview` |206| Deck generation | `claude-sonnet-4-5-20250929` |207| Critic/Red flags | `claude-sonnet-4-5-20250929` |208209## References210211- PRD Section 3: Onboarding System212- PRD Section 4: Business Idea Validator213- Strategy Section 7: Industry Playbooks214- `/startup-system/guides/101-startup-playbooks.md`