---
name: venture-capitalist
description: OpenClaw Venture Capitalist - Help investors quickly review business plans and pitch decks, automatically generate investment analysis reports and presentation decks
version: 1.0.0
author: justin
tags: [openclaw, investment, analysis, vc, pitch-deck, business-plan, due-diligence]
---

# OpenClaw Venture Capitalist

**Tagline**: Help investors quickly review business plans and pitch decks, automatically generate investment analysis reports and presentation decks.

## Overview

This SKILL helps venture capitalists and investors:
- Analyze business plans and pitch decks
- Extract key information (market size, team, financials, traction)
- Generate comprehensive investment analysis reports
- Create presentation decks for investment committees
- Track deal pipeline and investment decisions

## Commands

### `/vc analyze <file>`
Analyze a business plan or pitch deck file (PDF, PPT, DOCX).

**Example**:
```bash
/vc analyze startup-pitch.pdf
```

**Output**: Generates a structured analysis including:
- Executive Summary
- Market Analysis
- Team Assessment
- Financial Review
- Risk Assessment
- Investment Recommendation

### `/vc report <file>`
Generate a comprehensive investment analysis report.

**Options**:
- `--format` - Output format (markdown, pdf, docx) - default: markdown
- `--template` - Use custom template
- `--sections` - Specific sections to include

**Example**:
```bash
/vc report startup-pitch.pdf --format pdf
```

### `/vc deck <file>`
Create an investment committee presentation deck.

**Example**:
```bash
/vc deck startup-pitch.pdf --template ic-presentation
```

### `/vc compare <file1> <file2> [...]`
Compare multiple investment opportunities side-by-side.

**Example**:
```bash
/vc compare startup-a.pdf startup-b.pdf startup-c.pdf
```

### `/vc extract <file> <field>`
Extract specific information from a pitch deck.

**Fields**:
- `market-size` - Total addressable market
- `team` - Team background and experience
- `financials` - Financial projections
- `traction` - User metrics and growth
- `competition` - Competitive landscape
- `ask` - Funding ask and terms

**Example**:
```bash
/vc extract startup-pitch.pdf market-size
```

## Analysis Framework

The SKILL uses a structured framework to evaluate investments:

### 1. **Market Analysis**
- Total Addressable Market (TAM)
- Serviceable Addressable Market (SAM)
- Market growth rate
- Market trends and dynamics

### 2. **Product/Solution**
- Problem being solved
- Solution uniqueness
- Product-market fit evidence
- Technology/IP assessment

### 3. **Team Assessment**
- Founder background
- Relevant experience
- Team completeness
- Advisory board

### 4. **Business Model**
- Revenue streams
- Unit economics
- Scalability
- Customer acquisition strategy

### 5. **Traction & Metrics**
- Current users/customers
- Revenue growth
- Key performance indicators
- Milestones achieved

### 6. **Financials**
- Revenue projections
- Burn rate
- Runway
- Use of funds

### 7. **Competition**
- Competitive landscape
- Differentiation
- Barriers to entry
- Competitive advantages

### 8. **Risk Assessment**
- Market risks
- Execution risks
- Technology risks
- Team risks
- Financial risks

### 9. **Investment Terms**
- Valuation
- Funding ask
- Equity offered
- Investment structure

### 10. **Recommendation**
- Investment thesis
- Key strengths
- Key concerns
- Go/No-go recommendation

## Output Formats

### Investment Analysis Report (Markdown)
```markdown
# Investment Analysis: [Company Name]

## Executive Summary
- Company overview
- Investment highlights
- Key concerns
- Recommendation

## Detailed Analysis
[10-section framework analysis]

## Investment Recommendation
[Final recommendation with reasoning]
```

### Investment Committee Deck (Slides)
- Slide 1: Executive Summary
- Slide 2: Market Opportunity
- Slide 3: Product & Solution
- Slide 4: Team
- Slide 5: Business Model & Traction
- Slide 6: Financials
- Slide 7: Competition
- Slide 8: Risks
- Slide 9: Investment Terms
- Slide 10: Recommendation

### Comparison Matrix (Table)
Side-by-side comparison of multiple opportunities across key metrics.

## Configuration

Create a `.vcconfig.json` file to customize analysis:

```json
{
  "analysis_framework": "custom",
  "required_sections": [
    "market",
    "team",
    "product",
    "financials",
    "traction"
  ],
  "scoring": {
    "enabled": true,
    "weights": {
      "market": 0.25,
      "team": 0.30,
      "product": 0.20,
      "traction": 0.15,
      "financials": 0.10
    }
  },
  "report_template": "default",
  "output_directory": "./reports"
}
```

## Examples

### Example 1: Quick Analysis
```bash
# Analyze a pitch deck and get instant insights
/vc analyze acme-startup.pdf
```

### Example 2: Full Investment Report
```bash
# Generate comprehensive PDF report
/vc report acme-startup.pdf --format pdf --sections all
```

### Example 3: Compare Multiple Deals
```bash
# Compare 3 startups in pipeline
/vc compare startup-a.pdf startup-b.pdf startup-c.pdf
```

### Example 4: Extract Market Data
```bash
# Get just the market size information
/vc extract acme-startup.pdf market-size
```

### Example 5: Create IC Presentation
```bash
# Generate investment committee slides
/vc deck acme-startup.pdf --template ic-presentation
```

## Use Cases

### For Venture Capitalists
- Rapidly screen incoming deals
- Standardize investment analysis
- Prepare for partner meetings
- Track deal pipeline

### For Angel Investors
- Evaluate startup opportunities
- Generate investment memos
- Compare multiple investments
- Due diligence support

### For Corporate VCs
- Assess strategic fit
- Analyze market positioning
- Evaluate technology alignment
- Generate investment reports

### For Investment Committees
- Review deal summaries
- Compare opportunities
- Make informed decisions
- Track investment rationale

## Best Practices

1. **Upload complete pitch decks** - Include all slides for comprehensive analysis
2. **Provide context** - Add notes about industry focus or investment thesis
3. **Review outputs** - AI analysis should supplement, not replace, human judgment
4. **Customize templates** - Adapt analysis framework to your investment criteria
5. **Track decisions** - Save reports for future reference and pattern analysis

## Tips

- Use `/vc extract` for quick data points during partner discussions
- Generate `/vc compare` reports before investment committee meetings
- Customize scoring weights in `.vcconfig.json` to match your fund's priorities
- Save all analysis reports to build a knowledge base of investment decisions

## Limitations

- AI analysis is based on provided documents only
- Cannot verify claims or conduct independent research
- Should be used as a decision support tool, not sole decision maker
- Financial projections should be validated independently
- Market data should be cross-referenced with independent sources

## Privacy & Security

- All uploaded documents are processed locally
- No data is sent to external services without explicit consent
- Investment analysis reports are saved locally only
- Sensitive information should be redacted before processing if needed

## Support

For issues, feature requests, or questions:
- GitHub: https://github.com/ZhenRobotics/openclaw-venture-capitalist
- npm: https://www.npmjs.com/package/openclaw-venture-capitalist
- Email: support@openclaw.ai

---

**Make smarter investment decisions with AI-powered analysis** 🚀📊
