{"skill":{"slug":"zen-founder-agent","displayName":"Zen Founder Fundraising Agent","summary":"Analyze startup pitch decks and get matched with VCs from Zen.GP's investor database","description":"---\nname: zen-founder-agent\nemoji: 🦞💰\ndescription: Analyze startup pitch decks and get matched with VCs from Zen.GP's investor database\ncategory: business\nmetadata: {\"openclaw\":{\"requires\":{\"env\":[\"ZEN_FOUNDER_AGENT_API_KEY\"],\"bins\":[\"curl\"]},\"primaryEnv\":\"ZEN_FOUNDER_AGENT_API_KEY\"}}\n---\n\n\n\n\n# Zen Founder Agent \n\nConnect startups with the right VCs. Analyze pitch decks and get 5 recommended investors from Zen.GP's curated database of venture capital firms.\n\n ## Quick Start                                                                                                                                                                                                                                                                                              \n 1. Install the skill\n```bash \nclawhub install zen-founder-agent  \n```                                                                                                                                                   \n 2. Get your API Key at: https://zen.gp/settings/#api-keys                                                                                        \n 3. Add it to OpenClaw:                                                                                                             \n   ```bash                                                                                                                                          \n     openclaw config set skills.entries.zen-founder-agent.env.ZEN_FOUNDER_AGENT_API_KEY \"YOUR_API_KEY_HERE\"                                         \n   ```                                                                                                                                              \n 4. Restart:                                                                                                                 \n   ```bash                                                                                                                                          \n     openclaw gateway restart   \n```      \n\n## What This Skill Does\n\n1. **Analyzes pitch decks** - Extract company name, industry, stage, location, funding ask, and key metrics\n2. **Matches with VCs** - Score and rank investors based on industry focus, stage preference, and geographic alignment\n3. **Provides introductions** - Get contact details and match reasoning for recommended investors\n\n## Available Endpoints\n\n### 1. Analyze and Match (Recommended)\n**POST** `/api/v1/founder/analyze-and-match`\n\nCombined operation - analyze pitch and get investor matches in one call.\n\n```bash\ncurl -X POST https://zen.gp/api/v1/founder/analyze-and-match \\\n  -H \"Content-Type: application/json\" \\\n  -H \"X-API-Key: $ZEN_FOUNDER_AGENT_API_KEY\" \\\n  -d '{\n    \"content\": \"<pitch deck text content>\",\n    \"limit\": 5,\n    \"filters\": {\n      \"stage\": \"seed\",\n      \"country\": \"United States\"\n    }\n  }'\n```\n\n**Response:**\n```json\n{\n  \"success\": true,\n  \"startup_profile\": {\n    \"company_name\": \"TechStartup Inc\",\n    \"industry\": [\"AI/ML\", \"SaaS\"],\n    \"stage\": \"seed\",\n    \"location\": \"San Francisco, USA\",\n    \"funding_ask\": 2000000,\n    \"description\": \"AI-powered analytics platform\",\n    \"unique_selling_points\": [\"Patent-pending algorithm\", \"10x faster than competitors\"]\n  },\n  \"matched_investors\": [\n    {\n      \"investor_id\": 123,\n      \"organization_name\": \"Sequoia Capital\",\n      \"contact_name\": \"Jane Smith\",\n      \"email\": \"jane@sequoiacap.com\",\n      \"match_score\": 92.5,\n      \"match_reasons\": [\"Industry alignment: AI/ML\", \"Stage match: seed\", \"Active investor (45 investments)\"]\n    }\n  ],\n  \"match_count\": 5\n}\n```\n\n### 2. Analyze Pitch Only\n**POST** `/api/v1/founder/analyze-pitch`\n\nExtract startup profile without matching.\n\n```bash\ncurl -X POST https://zen.gp/api/v1/founder/analyze-pitch \\\n  -H \"Content-Type: application/json\" \\\n  -H \"X-API-Key: $ZEN_FOUNDER_AGENT_API_KEY\" \\\n  -d '{\"content\": \"<pitch deck text>\"}'\n```\n\n### 3. Match Investors\n**POST** `/api/v1/founder/match-investors`\n\nFind investors for an existing profile.\n\n```bash\ncurl -X POST https://zen.gp/api/v1/founder/match-investors \\\n  -H \"Content-Type: application/json\" \\\n  -H \"X-API-Key: $ZEN_FOUNDER_AGENT_API_KEY\" \\\n  -d '{\n    \"profile\": {\n      \"company_name\": \"TechStartup\",\n      \"industry\": [\"AI/ML\"],\n      \"stage\": \"seed\",\n      \"location\": \"San Francisco\"\n    },\n    \"limit\": 5\n  }'\n```\n\n### 4. Get Investor Details\n**GET** `https://zen.gp/api/v1/founder/investor/{investor_id}`\n\nGet full details for a specific investor.\n\n### 5. Search Investors\n**GET** `https://zen.gp/api/v1/founder/investors/search?industry=AI&stage=seed&country=USA&limit=10`\n\nSearch investors by criteria without pitch analysis.\n\n## Usage Instructions\n\nWhen the user wants to find investors for their startup:\n\n1. **If they provide a pitch deck or description:**\n   - Use `/analyze-and-match` endpoint\n   - Pass the full pitch content in the `content` field\n   - Present the startup profile extracted and top 5 VC matches\n\n2. **If they want to refine results:**\n   - Use filters: `stage`, `country`, `min_investments`\n   - Adjust `limit` to get more/fewer results\n\n3. **If they want more details on a specific investor:**\n   - Use `/investor/{id}` to get full profile\n   - Include LinkedIn, Crunchbase, investment history\n\n4. **If they just want to browse investors:**\n   - Use `/investors/search` with their criteria\n\n## Response Formatting\n\nWhen presenting matches to users, format like this:\n\n**🎯 Top VC Matches for [Company Name]**\n\n1. **[Organization Name]** (Match Score: XX%)\n   - Contact: [Name] - [Email]\n   - Why they match: [Match reasons]\n   - Investments: [Number] | Stage: [Focus]\n   - [Website] | [LinkedIn]\n\n## Error Handling\n\n- `401` - Invalid or missing API key → Run the setup command above with your key\n- `400` - Missing content → Prompt user to provide pitch deck content\n- `500` - Server error → Retry or report issue\n\n## Support\n\n- Get API Key: https://zen.gp/settings/\\#api-keys\n- Documentation: https://zen.gp/docs/founder-agent\n- Issues: https://zen.gp/support\n","topics":["Database"],"tags":{"latest":"1.0.5"},"stats":{"comments":0,"downloads":389,"installsAllTime":14,"installsCurrent":1,"stars":0,"versions":6},"createdAt":1771459442525,"updatedAt":1779219567975},"latestVersion":{"version":"1.0.5","createdAt":1771475915164,"changelog":"Addressing security concerns","license":null},"metadata":{"setup":[{"key":"ZEN_FOUNDER_AGENT_API_KEY","required":true}],"os":null,"systems":null},"owner":{"handle":"therealinvoker","userId":"s171tynxvkyqrdh9svh39bpdmh885wzh","displayName":"therealinvoker","image":"https://avatars.githubusercontent.com/u/161081502?v=4"},"moderation":null}