Token导航 LogoToken导航TokenDH.com
研究检索执行命令unknown未标认证来源可访问许可证需确认审计通过

investor-company-prospecting投资者公司勘探

Agent Skill

investor-company-prospecting 用于查找、检索和筛选相关信息,适合在 Local Agent 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

416

周安装

17

下载量

135
Local Agent

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:investor-company-prospecting(投资者公司勘探)
来源仓库:https://code.deepline.com
仓库路径:investor-company-prospecting
安装命令:
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。当前暂无明确安装命令,请以来源页面说明为准。

简介

investor-company-prospecting 用于查找、检索和筛选相关信息。

  • 适用于投资者寻找目标公司或市场机会的信息调研场景。
  • 目前安装方式未知,建议结合原始 README 进一步核实使用细节。
  • 使用前应确认权限边界、维护状态及是否触发敏感操作如联网或文件读写。
  • 适用宿主包括 Local Agent,接入前应确认版本、权限和运行环境要求。

SKILL.md

Start here first: read gtm-meta-skill before running this skill.

YC / Investor-Portfolio Prospecting

Find companies backed by a specific investor or accelerator (YC, a16z, Sequoia, etc.) that are hiring for a target role, then find contacts and build personalized outbound.

Core insight: VC portfolio data is public

Every major VC and accelerator publishes their portfolio online. Do NOT waste turns trying to discover portfolio companies through Deepline search tools. Instead, fetch the public portfolio page directly and extract company names from it.

This is faster, cheaper, and more complete than any provider-based approach.


What NOT to do (and why)

These approaches were tested in eval runs and all failed or were extremely wasteful:

Do NOT use Apollo to filter by investor

Apollo's q_organization_keyword_tags and q_keywords fields do not reliably filter by investor/accelerator. Searching q_keywords: "Y Combinator" returns mostly irrelevant results. Apollo is great for people search AFTER you have a company list, but cannot produce the company list.

Do NOT search Apollo for people first and then verify investor status

Searching for "GTM Engineer" across all companies returns ~7-9% YC hit rate. You end up pulling 300+ contacts and running call_ai on each one to check if their company is YC-backed. Burns 60-80% of your turn budget on filtering alone.

Crustdata crunchbase_investors filter is inconsistent

Crustdata has a crunchbase_investors filter that SHOULD work but returns results inconsistently. Do not rely on it as your primary source.

Do NOT use call_ai to verify investor status at scale

Using call_ai + WebSearch to check "Is {{company_name}} a YC company?" per row is ~5-10s per row. Unacceptable for 100+ rows.


The proven approach: Fetch the public portfolio page

Step 1: Get the company list from the VC's public portfolio

Every major investor publishes their portfolio. Fetch it directly:

For YC specifically — use the YC company directory:

# Fetch YC companies page and extract company data
curl -sS "https://www.ycombinator.com/companies" \
  -H "Accept: text/html" \
  -o /tmp/yc_page.html

# Or use the YC API/directory to get structured data
# YC's company directory is at ycombinator.com/companies
# You can filter by batch, industry, etc.

Parse the HTML to extract company names and domains. Use run_javascript or python to extract structured data from the page.

# Example: parse company names from the fetched page
# Adjust selectors based on the actual page structure
from html.parser import HTMLParser
import csv, json

# Write extracted companies to CSV
with open('yc_companies.csv', 'w', newline='') as f:
    writer = csv.DictWriter(f, fieldnames=['company_name', 'domain', 'batch', 'description'])
    writer.writeheader()
    for company in extracted_companies:
        writer.writerow(company)

For other VCs — find their portfolio page and fetch it:

InvestorPortfolio URL patternNotes
YCycombinator.com/companiesFilterable directory with batch, industry
a16za16z.com/portfolioLists all portfolio companies
Sequoiasequoiacap.com/our-companiesCategorized by stage
Greylockgreylock.com/portfolioSimple list
Benchmarkbenchmark.com/portfolioSimple list
# Generic approach for any VC:
curl -sS "https://[vc-website]/portfolio" -o /tmp/portfolio.html
# Parse the HTML to extract company names and domains

If the portfolio page uses JavaScript rendering and curl returns an empty shell, use call_ai with WebSearch to get the list:

deepline tools execute call_ai --payload '{
  "prompt": "List all portfolio companies from [VC Name]. Return company name and website domain for each. Focus on companies founded in the last 3 years.",
  "json_mode": {"type":"object","properties":{"companies":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string"},"domain":{"type":"string"}},"required":["name"]}}},"required":["companies"]},
  "tools": ["WebSearch"],
  "max_tokens": 4000
}'

Step 1b: Filter to companies hiring your target role (optional)

If you need companies hiring a specific role (e.g., "GTM Engineer"), use Exa to cross-reference against the YC job board. Exa works well for small datasets (≤50 results) but degrades on larger ones.

deepline tools execute exa_search --payload '{
  "query": "GTM Engineer",
  "numResults": 50,
  "includeDomains": ["ycombinator.com"],
  "type": "auto"
}'

Cross-reference the Exa results against your portfolio company list to identify which companies are actively hiring for the role.

For larger datasets or when Exa returns too few results, use call_ai with WebSearch to check job boards:

deepline enrich --input yc_companies.csv --in-place --rows 0:2 \
  --with 'has_role=call_ai:{"prompt":"Is {{company_name}} ({{domain}}) currently hiring a GTM Engineer or similar GTM role? Check their careers page and job boards. Return true or false with the job title if found.","json_mode":{"type":"object","properties":{"hiring":{"type":"boolean"},"job_title":{"type":"string"}},"required":["hiring"]},"tools":["WebSearch"]}'

Step 2: Build a clean company seed CSV

From Step 1, you should have a CSV with at minimum: company_name, domain.

For companies missing domains, resolve them in a single enrichment pass:

deepline enrich --input yc_companies.csv --in-place \
  --with 'resolved_domain=call_ai:{"prompt":"What is the primary website domain for {{company_name}}? Return ONLY the domain, nothing else (e.g. pump.co, langfuse.com).","max_tokens":20}'

This is fast because call_ai without WebSearch uses model knowledge and these are well-known VC-backed companies.

Step 3: Find contacts at each company

Important: these are small startups (5-50 people). Exact-job-title searches are often sparse in smaller teams, so broaden your search:

deepline enrich --input yc_companies.csv --output yc_with_contacts.csv \
  --rows 0:2 \
  --with 'contact=dropleads_search_people:{
    "filters": {
      "companyDomains": ["{{domain}}"],
      "keywords": ["sales", "growth", "marketing", "revenue", "operations"],
      "seniority": ["C-Level", "VP", "Director", "Manager"]
    },
    "pagination": {"page": 1, "limit": 5}
  }'

Note: no person_titles filter — for tiny startups, just get whoever is there and pick the best GTM-adjacent contact. Founders, growth leads, founding AEs, and heads of sales are all valid targets when the company has 10 people.

If Dropleads returns 0 for a company, fall back to call_ai with WebSearch:

deepline enrich --input yc_missing.csv --in-place \
  --with 'contact_lookup=call_ai:{"prompt":"Find the founder, CEO, or GTM/growth lead at {{company_name}} ({{domain}}). Return their full name, title, and LinkedIn URL.","json_mode":{"type":"object","properties":{"name":{"type":"string"},"title":{"type":"string"},"linkedin_url":{"type":"string"}},"required":["name","title"]},"tools":["WebSearch"]}'

Step 4: Find emails via waterfall

For small startups, use LeadMagic as your primary email finder, not Hunter. Hunter has poor coverage for companies under 50 people. LeadMagic's email_finder has significantly better fill rates for small startups.

deepline enrich --input yc_with_contacts.csv --in-place --rows 0:2 \
  --with-waterfall "email" \
  --type email \
  --result-getters '["data.email","email"]' \
  --with 'leadmagic=leadmagic_email_finder:{"first_name":"{{first_name}}","last_name":"{{last_name}}","domain":"{{domain}}"}' \
  --with 'dropleads=dropleads_email_finder:{"first_name":"{{first_name}}","last_name":"{{last_name}}","company_domain":"{{domain}}"}' \
  --with 'hunter=hunter_email_finder:{"domain":"{{domain}}","first_name":"{{first_name}}","last_name":"{{last_name}}"}' \
  --end-waterfall

Expected fill rate: ~60-70% with the 3-provider waterfall. Lower than typical because these are tiny, recently-founded companies.

Step 5: Generate personalized email copy

deepline enrich --input yc_with_contacts.csv --in-place --rows 0:2 \
  --with 'outbound=call_ai:{"prompt":"Write a short (≤80 word) cold email to {{first_name}} at {{company_name}}. They are a {{title}}. Mention Deepline helps GTM teams enrich data across 20+ providers in a single CLI. Be specific to their company — no generic templates. Return subject and body.","json_mode":{"type":"object","properties":{"subject":{"type":"string"},"body":{"type":"string"}},"required":["subject","body"]}}'

After pilot, run the full batch:

deepline enrich --input yc_with_contacts.csv --in-place --rows 2: \
  # ... same flags

Common pitfalls

PitfallWhat happensFix
Trying to discover portfolio companies via Deepline toolsWastes 60-80% of turn budget on company discoveryFetch the public portfolio page directly
json_mode: true in call_ai`RuntimeError: json_mode expected object\string, got boolean`Pass a JSON schema object: {"type":"object","properties":{...},"required":[...]}
Searching with strict titles at small startups0 results — person hasn't been hired yetRemove title filter, get broader roles, pick best match
Using Hunter as primary email finder for <50 person companies0/25 fill rateUse LeadMagic first — better small-company coverage
Asking for user approval in headless/eval modeRun stops deadThe prompt says "You have approval to spend up to N credits" — treat that as blanket approval
Storing raw JSON from LeadMagic in email columnEmail column contains {"data":{"email":"x@y.com",...}} instead of x@y.comUse waterfall syntax with --result-getters to auto-extract, or add a run_javascript step
Using Exa for large datasets (100+ companies)Degraded results, missed companiesExa is fine for ≤50 results; for larger lists, fetch the portfolio page directly

Cost estimation

StepCreditsNotes
Portfolio page fetch (curl)0Free — public web page
Exa search (optional, role filtering)~5Only if filtering by active job postings
call_ai domain resolution~0Free (model knowledge, no tools)
Dropleads contact search (per company)~0.1Contact lookup
LeadMagic email finder (per contact)~0.3Primary email source
Dropleads email finder (per contact)~0.3Waterfall fallback
call_ai outbound copy (per contact)~0Free
Total for 25 companies~15-20Well within 150 credit budget

Related skills

  • Need emails after finding contacts? → Use contact-to-email skill
  • Building a broader account list? → Use build-tam skill
  • Want to score accounts first? → Use niche-signal-discovery skill

Get started

Sign up and get your API key at code.deepline.com.

curl -s "https://code.deepline.com/api/v2/cli/install" | bash
deepline auth register

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Local Agent

83.89%
按下载量换算113

安全审计

Socket

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 第三方 CLI 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills