This skill assists users in organizing business information into a structured layout for professional pitch deck presentations.

Install

mkdir -p .claude/skills/pitch-deck && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/7039" && unzip -o skill.zip -d .claude/skills/pitch-deck && rm skill.zip

Installs to .claude/skills/pitch-deck

Activation

This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.

Generate professional PowerPoint pitch decks for startups and businesses. Use this skill when users request help creating investor pitch decks, sales presentations, or business pitch presentations. The skill follows standard 10-slide pitch deck structure and includes best practices for content and design.
306 chars✓ has a “when” triggerlonger than Claude Code's old 250-char listing cap (fine on current versions)
Beginner

Key capabilities

  • Structures slide decks into 10-slide standard
  • Drafts problem and solution positioning
  • Estimates market size metrics (TAM/SAM/SOM)
  • Builds traction and business model sections
  • Formats financial projections and funding asks

How it works

It follows a conversational interview process to populate specific narrative slots, producing a standardized deck flow that satisfies common investor requirements.

Inputs & outputs

You give it
Company info, metrics, and business model data
You get back
Structured 10-slide outline for a pitch deck

When to use pitch-deck

  • Create startup fundraising deck
  • Draft sales presentation
  • Design business pitch slides

About this skill

Pitch Deck Generator

Overview

Generate professional PowerPoint pitch decks following industry best practices. This skill creates structured presentations for fundraising, sales, and business development using a proven 10-slide format.

When to Use This Skill

Activate this skill when users request:

  • Investor pitch decks for fundraising
  • Sales or business development presentations
  • Product launch presentations
  • Startup pitch competition decks
  • Any structured business presentation following standard pitch deck format

Workflow

Step 1: Gather Information

Collect necessary information from the user to populate the pitch deck. Use a conversational approach to gather details across the following categories:

Required information:

  1. Company basics: Company name, tagline (one-liner describing what you do)
  2. Problem: What problem are you solving? Include data or statistics if available
  3. Solution: How does your product/service solve the problem? Key features and benefits
  4. Business model: How do you make money? Pricing, revenue streams

Recommended information (include if available): 5. Market opportunity: Market size (TAM/SAM/SOM), growth rate, market trends 6. Product details: Product features, screenshots, technology highlights 7. Traction: Key metrics, revenue, users, growth rate, milestones, customer testimonials 8. Competition: Competitors, competitive advantages, differentiation 9. Team: Founders and key team members with relevant background 10. Financials & Ask: Funding amount, use of funds, financial projections, milestones

Approach:

  • Ask open-ended questions to understand the business
  • Probe for specific metrics and data points when possible
  • For missing information, offer to create placeholder slides that can be updated later
  • Adapt the standard 10-slide structure based on available information

Step 2: Structure the Content

Organize the gathered information into the standard pitch deck structure:

  1. Title Slide: Company name + tagline
  2. Problem: Pain point being addressed
  3. Solution: Product/service overview
  4. Market Opportunity: Market size and growth
  5. Product: Features and capabilities
  6. Traction: Metrics and achievements
  7. Business Model: Revenue and pricing
  8. Competition: Competitive landscape
  9. Team: Key people
  10. Financials & Ask: Funding request and projections

Reference best practices: For detailed guidance on each slide's content and structure, consult references/pitch_deck_best_practices.md. Search for specific sections using grep:

grep -A 10 "### [Slide Number]. [Slide Name]" references/pitch_deck_best_practices.md

Step 3: Create the JSON Data File

Format the collected information as a JSON file that will be consumed by the pitch deck generation script. Create a file called pitch_data.json with the following structure:

{
  "company_name": "Company Name",
  "tagline": "One-line description of what you do",
  "problem": [
    "Problem statement 1 with data/statistics",
    "Problem statement 2 showing impact",
    "Problem statement 3 demonstrating urgency"
  ],
  "solution": [
    "How your product solves the problem",
    "Key feature 1 and its benefit",
    "Key feature 2 and its benefit",
    "Unique value proposition"
  ],
  "market": [
    "TAM: Total addressable market with $ figure",
    "SAM: Serviceable available market",
    "SOM: Serviceable obtainable market",
    "Market growth rate and trends"
  ],
  "product": [
    "Product feature 1",
    "Product feature 2",
    "Technology highlights",
    "User experience benefits"
  ],
  "traction": [
    "Revenue: $X (YY% growth)",
    "Users: X,XXX active users",
    "Key milestone 1",
    "Customer testimonial or social proof"
  ],
  "business_model": [
    "Revenue model (e.g., SaaS subscription)",
    "Pricing: $XX/month per user",
    "Unit economics: CAC, LTV, margins",
    "Sales channels"
  ],
  "competition": {
    "our_advantages": [
      "Advantage 1",
      "Advantage 2",
      "Unfair advantage/defensibility"
    ],
    "competitors": [
      "Competitor 1",
      "Competitor 2",
      "Alternative solutions"
    ]
  },
  "team": [
    "Founder 1: Name - Background and relevant experience",
    "Founder 2: Name - Background and relevant experience",
    "Key hire: Name - Background and why they matter",
    "Notable advisors"
  ],
  "financials": [
    "Raising: $X seed/Series A round",
    "Use of funds: XX% engineering, XX% sales, XX% ops",
    "Milestones with this funding",
    "Runway: X-X months to next milestone"
  ]
}

Notes:

  • All fields are optional except company_name
  • Use arrays for bullet points (will be rendered as bullet lists)
  • Competition can be either an object with our_advantages and competitors keys (for two-column layout) or a simple array
  • Keep bullet points concise (1-2 lines each)
  • Include specific numbers and metrics where possible

Step 4: Generate the PowerPoint

Execute the Python script to create the PowerPoint presentation:

python3 scripts/create_pitch_deck.py pitch_data.json output_filename.pptx

The script will:

  • Generate a professional PowerPoint file with proper formatting
  • Apply consistent color scheme and typography
  • Create slides based on available data (skipping sections if data not provided)
  • Output a .pptx file ready for presentation or further customization

Step 5: Review and Iterate

Present the generated pitch deck location to the user and offer to:

  • Add missing sections if information becomes available
  • Refine bullet points for clarity and impact
  • Adjust structure based on specific audience (investor vs. sales pitch)
  • Provide guidance on presenting the deck

Iteration approach:

  • User can update the JSON file with new information
  • Re-run the script to regenerate the updated presentation
  • For design customizations beyond the script's capabilities, advise manual editing in PowerPoint

Design Guidelines

The generated pitch deck follows these design principles:

Color Scheme:

  • Primary: Blue (#2962FF) for titles and emphasis
  • Secondary: Gray (#646464) for body text
  • Clean white background for readability

Typography:

  • Title slides: 54pt bold
  • Section titles: 40pt bold
  • Body text: 18-20pt with appropriate line spacing

Layout:

  • Consistent margins and spacing
  • One key message per slide
  • Bullet points limited to 3-5 items per slide
  • Two-column layouts for comparison slides

Visual Hierarchy:

  • Clear title at top of each slide
  • Content organized with proper spacing
  • Emphasis on readability and professional appearance

Best Practices Reference

For detailed guidance on pitch deck content, structure, and presentation tips, reference:

  • references/pitch_deck_best_practices.md - Comprehensive guide covering:
    • Standard 10-slide structure with examples
    • Content guidelines for each slide type
    • Design best practices
    • Common mistakes to avoid
    • Tailoring for different audiences (investor, sales, product launch)
    • Pre-pitch checklist

Load this reference when providing detailed advice on pitch content or structure.

Example Usage Scenarios

Scenario 1: Early-stage startup seeking seed funding

  • Focus on problem, solution, market opportunity, and team
  • Emphasize founder expertise and early traction
  • Include clear funding ask and use of funds

Scenario 2: Growth-stage company creating sales deck

  • Emphasize product features and customer ROI
  • Include customer testimonials and case studies
  • De-emphasize fundraising, focus on value proposition

Scenario 3: Product launch presentation

  • Focus on product features and market need
  • Include demo or product screenshots
  • Emphasize innovation and competitive positioning

Customization and Extensions

After generating the base deck:

  • Users can manually add images, charts, and custom graphics in PowerPoint
  • Suggest creating appendix slides for detailed backup information
  • Recommend PDF export for sharing (File → Save As → PDF in PowerPoint)
  • Advise on presentation timing (typically 10-15 minutes for 10 slides)

Troubleshooting

Script errors:

  • Ensure python-pptx library is installed: pip3 install python-pptx
  • Verify JSON file is properly formatted (use JSON validator if needed)
  • Check file paths are correct and user has write permissions

Content issues:

  • If slides appear crowded, reduce bullet points to 3-5 per slide
  • For complex competition analysis, consider manually creating comparison tables in PowerPoint
  • For financial projections, consider creating charts in Excel and importing as images

Resources

scripts/

  • create_pitch_deck.py: Python script that generates PowerPoint presentations from structured JSON data

references/

  • pitch_deck_best_practices.md: Comprehensive guide on pitch deck content, structure, and design principles

When not to use it

  • Deeply technical research presentations
  • Creative artistic portfolios

Prerequisites

PowerPoint or equivalent presentation tool

Limitations

  • Requires manual slide design/styling effort
  • Template-heavy, lacks deep visual customization
  • Cannot generate proprietary market research

How it compares

It enforces a proven industry-standard narrative structure instead of ad-hoc slide creation.

Compared to similar skills

pitch-deck side by side with the closest alternatives in the catalog.

SkillInstallsUpdatedSafetyDifficulty
pitch-deck (this skill)169moReviewBeginner
create-an-asset36moNo flagsBeginner
baoyu-xhs-images202moNo flagsBeginner
pptx-posters92moReviewIntermediate

Try saying

Example prompts that trigger this skill in your AI assistant.

More by ailabs-393

View all by ailabs-393

travel-planner

ailabs-393

This skill should be used whenever users need help planning trips, creating travel itineraries, managing travel budgets, or seeking destination advice. On first use, collects comprehensive travel preferences including budget level, travel style, interests, and dietary restrictions. Generates detailed travel plans with day-by-day itineraries, budget breakdowns, packing checklists, cultural do's and don'ts, and region-specific schedules. Maintains database of preferences and past trips for personalized recommendations.

84139

finance-manager

ailabs-393

Comprehensive personal finance management system for analyzing transaction data, generating insights, creating visualizations, and providing actionable financial recommendations. Use when users need to analyze spending patterns, track budgets, visualize financial data, extract transactions from PDFs, calculate savings rates, identify spending trends, generate financial reports, or receive personalized budget recommendations. Triggers include requests like "analyze my finances", "track my spending", "create a financial report", "extract transactions from PDF", "visualize my budget", "where is my money going", "financial insights", "spending breakdown", or any finance-related analysis tasks.

1221

social-media-generator

ailabs-393

This skill should be used when the user requests social media content creation for Twitter, Instagram, LinkedIn, or Facebook. It generates platform-optimized posts and saves them in an organized folder structure with meaningful filenames based on event details.

634

script-writer

ailabs-393

This skill should be used whenever users need YouTube video scripts written. On first use, collects comprehensive preferences including script type, tone, target audience, style, video length, hook style, use of humor, personality, and storytelling approach. Generates complete, production-ready YouTube scripts tailored to user's specifications for any topic. Maintains database of preferences and past scripts for consistent style.

517

tech-debt-analyzer

ailabs-393

This skill should be used when analyzing technical debt in a codebase, documenting code quality issues, creating technical debt registers, or assessing code maintainability. Use this for identifying code smells, architectural issues, dependency problems, missing documentation, security vulnerabilities, and creating comprehensive technical debt documentation.

522

business-document-generator

ailabs-393

This skill should be used when the user requests to create professional business documents (proposals, business plans, or budgets) from templates. It provides PDF templates and a Python script for generating filled documents from user data.

316

You might also like

create-an-asset

anthropics

Generate tailored sales assets (landing pages, decks, one-pagers, workflow demos) from your deal context. Describe your prospect, audience, and goal — get a polished, branded asset ready to share with customers.

319

baoyu-xhs-images

JimLiu

Generates Xiaohongshu (Little Red Book) infographic series with 10 visual styles and 8 layouts. Breaks content into 1-10 cartoon-style images optimized for XHS engagement. Use when user mentions "小红书图片", "XHS images", "RedNote infographics", "小红书种草", or wants social media infographics for Chinese platforms.

2051

pptx-posters

K-Dense-AI

Create research posters using HTML/CSS that can be exported to PDF or PPTX. Use this skill ONLY when the user explicitly requests PowerPoint/PPTX poster format. For standard research posters, use latex-posters instead. This skill provides modern web-based poster design with responsive layouts and easy visual integration.

911

card-news-generator-v2

bear2u

Create 600x600 Instagram-style card news series automatically with optional background images. User provides topic, colors, and optional images - Claude generates content and creates multiple cards with proper text wrapping.

17

infographic-creator

antvis

基于给定文字内容创建精美信息图。当用户请求创建信息图时使用。

15

card-news-generator

bear2u

Create 600x600 Instagram-style card news series automatically with optional background images. User provides topic, colors, and optional images - Claude generates content and creates multiple cards with proper text wrapping.

12

Search skills

Search the agent skills registry