用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/javimosch/open-claw-skills --skill zen-founder-agent命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | zen-founder-agent |
| emoji | 🦞💰 |
| description | Analyze startup pitch decks and get matched with VCs from Zen.GP's investor database |
| category | business |
| metadata | {"openclaw":{"requires":{"env":"[Truncated]","bins":"[Truncated]"},"primaryEnv":"ZEN_FOUNDER_AGENT_API_KEY"}} |
Connect startups with the right VCs. Analyze pitch decks and get 5 recommended investors from Zen.GP's curated database of venture capital firms.
clawhub install zen-founder-agent
openclaw config set skills.entries.zen-founder-agent.env.ZEN_FOUNDER_AGENT_API_KEY "YOUR_API_KEY_HERE"
openclaw gateway restart
POST /api/v1/founder/analyze-and-match
Combined operation - analyze pitch and get investor matches in one call.
curl -X POST https://zen.gp/api/v1/founder/analyze-and-match \
-H "Content-Type: application/json" \
-H "X-API-Key: $ZEN_FOUNDER_AGENT_API_KEY" \
-d '{
"content": "<pitch deck text content>",
"limit": 5,
"filters": {
"stage": "seed",
"country": "United States"
}
}'
Response:
{
"success": true,
"startup_profile": {
"company_name": "TechStartup Inc",
"industry": ["AI/ML", "SaaS"],
"stage": "seed",
"location": "San Francisco, USA",
"funding_ask": 2000000,
"description": "AI-powered analytics platform",
"unique_selling_points": ["Patent-pending algorithm", "10x faster than competitors"]
},
"matched_investors": [
{
"investor_id": 123,
"organization_name": "Sequoia Capital"
POST /api/v1/founder/analyze-pitch
Extract startup profile without matching.
curl -X POST https://zen.gp/api/v1/founder/analyze-pitch \
-H "Content-Type: application/json" \
-H "X-API-Key: $ZEN_FOUNDER_AGENT_API_KEY" \
-d '{"content": "<pitch deck text>"}'
POST /api/v1/founder/match-investors
Find investors for an existing profile.
curl -X POST https://zen.gp/api/v1/founder/match-investors \
-H "Content-Type: application/json" \
-H "X-API-Key: $ZEN_FOUNDER_AGENT_API_KEY" \
-d '{
"profile": {
"company_name": "TechStartup",
"industry": ["AI/ML"],
"stage": "seed",
"location": "San Francisco"
},
"limit": 5
}'
GET https://zen.gp/api/v1/founder/investor/{investor_id}
Get full details for a specific investor.
GET https://zen.gp/api/v1/founder/investors/search?industry=AI&stage=seed&country=USA&limit=10
Search investors by criteria without pitch analysis.
When the user wants to find investors for their startup:
If they provide a pitch deck or description:
/analyze-and-match endpointcontent fieldIf they want to refine results:
stage, country, min_investmentslimit to get more/fewer resultsIf they want more details on a specific investor:
/investor/{id} to get full profileIf they just want to browse investors:
/investors/search with their criteriaWhen presenting matches to users, format like this:
🎯 Top VC Matches for [Company Name]
401 - Invalid or missing API key → Run the setup command above with your key400 - Missing content → Prompt user to provide pitch deck content500 - Server error → Retry or report issue