Pitch Deck Outline Generator

AI-powered professional pitch deck outline generator using the $1B Pitch Deck Formula for startup presentations.

Safety Notice

This listing is from the official public ClawHub registry. Review SKILL.md and referenced scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "Pitch Deck Outline Generator" with this command: npx skills add krishnakumarmahadevan-cmd/pitch-deck-v2

Overview

The Pitch Deck Outline Generator is a professional presentation platform designed to help startups and entrepreneurs create compelling pitch decks based on the proven $1B Pitch Deck Formula. This tool transforms detailed startup information into structured, investor-ready presentation outlines that follow best practices for venture capital pitching.

The platform provides two core capabilities: generating comprehensive pitch deck outlines in JSON format for further customization, and directly generating ready-to-use PowerPoint presentations (PPTX files). By systematizing the pitch process, the tool ensures consistency, professionalism, and alignment with investor expectations across all key presentation elements including problem statement, solution, market opportunity, business model, traction, team, and funding ask.

Ideal users include early-stage founders, startup accelerator programs, pitch coaches, and entrepreneurs seeking to communicate their vision effectively to potential investors, partners, and stakeholders.

Usage

Generate Pitch Deck Outline

To generate a pitch deck outline, POST your startup information to the /api/pitchdeck/generate endpoint:

Sample Request:

{
  "startupData": {
    "companyName": "TechVenture AI",
    "industry": "Artificial Intelligence",
    "problemStatement": "Enterprise companies struggle to integrate AI into legacy systems without massive infrastructure overhauls",
    "solution": "Cloud-native AI integration platform with zero-code connectors for enterprise systems",
    "targetMarket": "Enterprise software companies with 1000+ employees",
    "marketSize": "$45 billion total addressable market in enterprise AI integration",
    "businessModel": "SaaS subscription model with tiered pricing based on data volume and API calls",
    "traction": "50 beta customers, $2M ARR, 30% month-over-month growth",
    "competition": "Informatica, Talend, and custom in-house solutions; differentiated by AI-first approach",
    "fundingAsk": "$5 million Series A to expand sales team and develop industry-specific modules",
    "teamInfo": "Founder CEO with 15 years enterprise software experience; VP Engineering from Google; VP Sales from Salesforce",
    "uniqueValue": "Only platform combining AI-driven integration with enterprise security and compliance by default",
    "timeline": "Q1: Launch sales acceleration; Q2: Release healthcare module; Q3: Achieve $10M ARR",
    "primaryColor": "#1e40af",
    "secondaryColor": "#60a5fa"
  },
  "sessionId": "sess_abc123xyz789",
  "userId": 42,
  "timestamp": "2024-01-15T10:30:00Z"
}

Sample Response:

{
  "status": "success",
  "pitchDeckOutline": {
    "title": "TechVenture AI - Series A Pitch Deck",
    "totalSlides": 12,
    "slides": [
      {
        "slideNumber": 1,
        "title": "Cover",
        "content": "TechVenture AI - Enterprise AI Integration Platform"
      },
      {
        "slideNumber": 2,
        "title": "The Problem",
        "content": "Enterprise companies struggle to integrate AI into legacy systems without massive infrastructure overhauls",
        "keyPoints": ["Legacy system constraints", "High integration costs", "Rapid AI innovation gap"]
      },
      {
        "slideNumber": 3,
        "title": "The Solution",
        "content": "Cloud-native AI integration platform with zero-code connectors for enterprise systems",
        "benefits": ["Rapid deployment", "No legacy system changes required", "AI-powered automation"]
      }
    ],
    "designTheme": {
      "primaryColor": "#1e40af",
      "secondaryColor": "#60a5fa",
      "fontFamily": "Inter, sans-serif"
    },
    "estimatedPresenterTime": "8 minutes"
  },
  "generatedAt": "2024-01-15T10:30:45Z"
}

Generate PowerPoint Presentation

To generate a complete PowerPoint file, POST to the /api/pitchdeck/generate-pptx endpoint with the same request structure. The response will include a download link or base64-encoded PPTX file.

Sample Request: (identical structure to outline generation)

Sample Response:

{
  "status": "success",
  "filename": "TechVenture_AI_Pitch_Deck_20240115.pptx",
  "fileSize": "2.4 MB",
  "downloadUrl": "https://api.mkkpro.com/files/temp/pptx_abc123xyz.pptx",
  "expiresIn": "7 days",
  "generatedAt": "2024-01-15T10:31:30Z"
}

Endpoints

GET /

Description: Root endpoint

Method: GET

Parameters: None

Response: Returns service information and status.


GET /health

Description: Health check endpoint for monitoring API availability and status.

Method: GET

Parameters: None

Response: Returns service health status and operational information.


POST /api/pitchdeck/generate

Description: Generate a comprehensive pitch deck outline in JSON format based on provided startup information.

Method: POST

Parameters:

NameTypeRequiredDescription
startupDataobjectYesContainer for all startup information
startupData.companyNamestringYesOfficial company name
startupData.industrystringYesPrimary industry or sector (e.g., "SaaS", "FinTech", "HealthTech")
startupData.problemStatementstringYesClear description of the market problem being addressed
startupData.solutionstringYesHow the company solves the identified problem
startupData.targetMarketstringYesDescription of ideal customer profile and market segment
startupData.marketSizestringYesTotal addressable market (TAM) estimate or size description
startupData.businessModelstringYesRevenue generation method and pricing strategy
startupData.tractionstringYesCurrent metrics, milestones, customer counts, or revenue
startupData.competitionstringYesCompetitive landscape and differentiation strategy
startupData.fundingAskstringYesAmount seeking and use of proceeds
startupData.teamInfostringYesKey team members, backgrounds, and relevant experience
startupData.uniqueValuestringYesCore unique value proposition or competitive advantage
startupData.timelinestringYesRoadmap and key milestones for next 12-24 months
startupData.primaryColorstringNoPrimary brand color in hex format (default: "#20002c")
startupData.secondaryColorstringNoSecondary brand color in hex format (default: "#cbb4d4")
startupData.sessionIdstringYesUnique session identifier for tracking
startupData.timestampstringYesISO 8601 timestamp of session start
sessionIdstringYesSession identifier from request tracking
userIdintegerNoOptional user ID for analytics and audit logging
timestampstringYesISO 8601 timestamp of request generation

Response: Returns JSON object containing structured pitch deck outline with slide titles, content blocks, design theme specifications, and presenter timing estimates.


POST /api/pitchdeck/generate-pptx

Description: Generate an actual PowerPoint presentation (PPTX) file with professional formatting, branding, and layouts based on startup information.

Method: POST

Parameters:

NameTypeRequiredDescription
startupDataobjectYesContainer for all startup information (see /api/pitchdeck/generate for subfield definitions)
startupData.companyNamestringYesOfficial company name
startupData.industrystringYesPrimary industry or sector
startupData.problemStatementstringYesMarket problem description
startupData.solutionstringYesSolution approach
startupData.targetMarketstringYesTarget customer profile
startupData.marketSizestringYesTAM estimate
startupData.businessModelstringYesRevenue model
startupData.tractionstringYesCurrent metrics and achievements
startupData.competitionstringYesCompetitive analysis
startupData.fundingAskstringYesFundraising request
startupData.teamInfostringYesTeam composition and experience
startupData.uniqueValuestringYesUnique value proposition
startupData.timelinestringYesProduct and business roadmap
startupData.primaryColorstringNoPrimary brand color (default: "#20002c")
startupData.secondaryColorstringNoSecondary brand color (default: "#cbb4d4")
startupData.sessionIdstringYesSession identifier
startupData.timestampstringYesSession start timestamp
sessionIdstringYesSession tracking identifier
userIdintegerNoOptional user ID
timestampstringYesRequest generation timestamp

Response: Returns JSON object containing generated PowerPoint file metadata including filename, file size, secure download URL, expiration time, and generation timestamp. The PPTX file is formatted with professional layouts, brand colors, and all content properly structured for immediate use in investor meetings.


Pricing

PlanCalls/DayCalls/MonthPrice
Free550Free
Developer20500$39/mo
Professional2005,000$99/mo
Enterprise100,0001,000,000$299/mo

About

ToolWeb.in - 200+ security APIs, CISSP & CISM, platforms: Pay-per-run, API Gateway, MCP Server, OpenClaw, RapidAPI, YouTube.

References

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

Huo15 Openclaw Enhance

火一五·克劳德·龙虾增强插件 v5.7.8 — 全面适配 openclaw 2026.4.24:peerDep ^4.24 + build/compat 同步到 4.24 + 14 处 api.on 全部去掉 as any 改成 typed hook(hookName 联合类型 + handler 自动推断 Pl...

Registry SourceRecently Updated
General

Content Trend Analyzer

Aggregates and analyzes content trends across platforms to identify hot topics, user intent, content gaps, and generates data-driven article outlines.

Registry SourceRecently Updated
General

Prompt Debugger

Debug prompts that produce unexpected AI outputs — diagnose failure modes, identify ambiguity and conflicting instructions, test variations, compare model re...

Registry SourceRecently Updated
General

Indie Maker News

独行者 Daily - 变现雷达。读对一条新闻,少走一年弯路。每天5分钟,给创业者装上商业雷达。聚焦一人公司、副业、创业变现资讯,智能分类,行动导向。用户下载即能用,无需本地部署!

Registry SourceRecently Updated