@opendirectory.dev/skills 0.1.40 → 0.1.41

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@opendirectory.dev/skills",
3
- "version": "0.1.40",
3
+ "version": "0.1.41",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "bin": {
package/registry.json CHANGED
@@ -341,6 +341,14 @@
341
341
  "version": "0.0.1",
342
342
  "path": "skills/twitter-GTM-find-skill"
343
343
  },
344
+ {
345
+ "name": "vc-curated-match",
346
+ "description": "Accepts a product description and URL to algorithmically identify relevant Venture Capital investors targeting exactly that stage, industry, and ni...",
347
+ "tags": [],
348
+ "author": "OpenDirectory",
349
+ "version": "1.0.0",
350
+ "path": "skills/vc-curated-match"
351
+ },
344
352
  {
345
353
  "name": "vc-finder",
346
354
  "description": "Takes a startup product URL or description, detects the industry and funding stage, identifies 5 comparable funded companies, searches who invested...",
@@ -0,0 +1,42 @@
1
+ # vc-curated-match
2
+
3
+ > Identify targeted VC funds based on a product's description and URL. This skill matches project inputs to a curated dataset of top global venture capital firms based on industry tags, stage, and geography.
4
+
5
+ [![opendirectory](https://img.shields.io/badge/opendirectory-skill-blue)](https://opendirectory.dev)
6
+
7
+ ## Overview
8
+
9
+ The `vc-curated-match` is an OpenDirectory skill that connects founders and open-source creators with highly relevant Venture Capital firms. It relies on a static, curated list of real VC funds to prevent LLM hallucinations, ensuring all recommendations and rationales are grounded in actual fund thesis data.
10
+
11
+ **Positioning Note**: This skill is intentionally different from live-research investor discovery workflows. It provides deterministic, curated VC matching from a verified static dataset. It is best for fast, low-cost, repeatable first-pass investor targeting.
12
+
13
+ ## Prerequisites
14
+ - Python 3.10+ (Standard Library only)
15
+
16
+ ## Implementation Specs
17
+ - Pulls from a static `data/vc_funds.json` dataset to guarantee data validity.
18
+ - Ranks funds using tag-matching algorithms across industry focus, stage, and geography fit.
19
+ - Outputs confidence tiers (High, Medium, Low) to transparently surface the precision of the fit.
20
+
21
+ ## Usage
22
+
23
+ ```bash
24
+ python scripts/run.py \
25
+ --description "A Next.js template for enterprise B2B SaaS" \
26
+ --url "https://trymylandingpage.com" \
27
+ --stage "Pre-seed"
28
+ ```
29
+
30
+ ## Methodology
31
+
32
+ - **Tag Matching**: Deterministic keyword matching using whole-word regex boundaries to ensure precision.
33
+ - **Geography Inference**: Inferred primarily from the URL Top-Level Domain (TLD). For example, `.in` triggers India and `.eu` triggers Europe.
34
+ - **Default Baseline**: Domains like `.com`, `.io`, and `.ai` default to a `Global` geography hint unless a specific `--geography` flag is provided.
35
+
36
+ ## Limitations
37
+
38
+ - **No Live Research**: This skill does not perform live web discovery and may miss niche or newly launched funds not present in the dataset.
39
+ - **Static Dataset**: The VC fund list is a curated static dataset. It reflects fund theses as of the last update and may not capture real-time changes in fund availability or personnel.
40
+ - **Taxonomy Constraints**: The scoring engine relies on a fixed taxonomy. Extremely niche or highly unusual product descriptions may not trigger specific industry tags and will default to a "Generalist" view.
41
+ - **Human Review Required**: These outputs are best-effort algorithmic matches. They serve as a research starting point and **must be reviewed by a human** before starting outreach.
42
+ - **No Financial Advice**: This tool does not provide financial or investment advice.
@@ -0,0 +1,59 @@
1
+ ---
2
+ name: vc-curated-match
3
+ description: Accepts a product description and URL to algorithmically identify relevant Venture Capital investors targeting exactly that stage, industry, and niche based on a curated static dataset.
4
+ author: OpenDirectory
5
+ version: 1.0.0
6
+ ---
7
+
8
+ # VC Curated Match Skill
9
+
10
+ Identify targeted VC funds based on a product's description and URL.
11
+
12
+ ---
13
+
14
+ ## When to Trigger This Skill
15
+
16
+ Use this skill when the user asks to:
17
+ - Find investors for their startup or open-source project.
18
+ - Get a list of relevant VC funds by stage, industry, or space.
19
+ - Match their product built with specific technologies to investor theses.
20
+
21
+ ---
22
+
23
+ ## Step 1: Confirm Input
24
+
25
+ Ask the user for the product description and the URL.
26
+ Optional parameters:
27
+ - Stage: `Pre-Seed`, `Seed`, `Series A` (`--stage`)
28
+ - Output: e.g., `vc-matches.md` (`--output`)
29
+
30
+ ---
31
+
32
+ ## Step 2: Fetch Matches & Generate Report
33
+
34
+ Run the orchestrator script to handle context fetching, VC matching, and Markdown generation in one command.
35
+
36
+ ```bash
37
+ python scripts/run.py --description "A fast rust-based web framework" --url "https://example.com"
38
+ ```
39
+
40
+ For custom requests, append overrides:
41
+ ```bash
42
+ python scripts/run.py \
43
+ --description "..." \
44
+ --url "..." \
45
+ [--stage Seed] \
46
+ [--output matched-investors.md]
47
+ ```
48
+
49
+ ---
50
+
51
+ ## Step 3: Present Results
52
+
53
+ Summarize the closest matches returned. Mention high-confidence matches explicitly. Provide the output path.
54
+
55
+ ---
56
+
57
+ ## Dependencies
58
+
59
+ Standard Python 3.10+ library (no external packages required).
@@ -0,0 +1,277 @@
1
+ [
2
+ {
3
+ "fund_name": "Y Combinator",
4
+ "thesis": "We provide seed funding for startups. We invest in deeply technical teams building massive companies across all domains.",
5
+ "check_size": "$500k",
6
+ "stage_focus": ["Pre-seed", "Seed"],
7
+ "industry_tags": ["Generalist", "B2B SaaS", "DevTools", "AI"],
8
+ "geography_focus": ["Global"],
9
+ "notable_portfolio": ["Stripe", "Airbnb", "GitLab"],
10
+ "website": "https://www.ycombinator.com",
11
+ "source": "fund website"
12
+ },
13
+ {
14
+ "fund_name": "boldstart ventures",
15
+ "thesis": "Day one partner for developer first, crypto, and SaaS founders. We love deeply technical founders solving hard infrastructure problems.",
16
+ "check_size": "$1M - $3M",
17
+ "stage_focus": ["Pre-seed", "Seed"],
18
+ "industry_tags": ["DevTools", "Infrastructure", "Crypto"],
19
+ "geography_focus": ["Global", "US"],
20
+ "notable_portfolio": ["Snyk", "Blockdaemon", "Superhuman"],
21
+ "website": "https://boldstart.vc",
22
+ "source": "fund website"
23
+ },
24
+ {
25
+ "fund_name": "Heavybit",
26
+ "thesis": "The leading investor in developer-first startups. We help technical founders launch, gain traction, and build enterprise-ready companies.",
27
+ "check_size": "$1M - $5M",
28
+ "stage_focus": ["Seed", "Series A"],
29
+ "industry_tags": ["DevTools", "Infrastructure", "Open Source"],
30
+ "geography_focus": ["Global", "US"],
31
+ "notable_portfolio": ["PagerDuty", "Sanity", "Netlify"],
32
+ "website": "https://www.heavybit.com",
33
+ "source": "fund website"
34
+ },
35
+ {
36
+ "fund_name": "Amplify Partners",
37
+ "thesis": "We invest in technical founders building the next generation of IT infrastructure, developer tools, and data platforms.",
38
+ "check_size": "$2M - $8M",
39
+ "stage_focus": ["Seed", "Series A"],
40
+ "industry_tags": ["DevTools", "Infrastructure", "AI", "Data"],
41
+ "geography_focus": ["US"],
42
+ "notable_portfolio": ["Datadog", "OCTO", "dbt Labs"],
43
+ "website": "https://www.amplifypartners.com",
44
+ "source": "fund website"
45
+ },
46
+ {
47
+ "fund_name": "OSS Capital",
48
+ "thesis": "We exclusively back early-stage founders building Commercial Open Source Software (COSS) companies.",
49
+ "check_size": "$500k - $2M",
50
+ "stage_focus": ["Pre-seed", "Seed", "Series A"],
51
+ "industry_tags": ["Open Source", "DevTools"],
52
+ "geography_focus": ["Global"],
53
+ "notable_portfolio": ["Cal.com", "Appsmith", "Hoppscotch"],
54
+ "website": "https://oss.capital",
55
+ "source": "fund website"
56
+ },
57
+ {
58
+ "fund_name": "Sequoia Capital",
59
+ "thesis": "We help the daring build legendary companies, from idea to IPO and beyond. Sequoia is an early-stage and growth-stage investor.",
60
+ "check_size": "$1M - $10M+",
61
+ "stage_focus": ["Seed", "Series A", "Growth"],
62
+ "industry_tags": ["Generalist", "Enterprise", "Consumer", "AI"],
63
+ "geography_focus": ["Global"],
64
+ "notable_portfolio": ["Apple", "Google", "WhatsApp"],
65
+ "website": "https://www.sequoiacap.com",
66
+ "source": "fund website"
67
+ },
68
+ {
69
+ "fund_name": "Andreessen Horowitz (a16z)",
70
+ "thesis": "We invest in software eating the world. We back bold entrepreneurs building the future through technology.",
71
+ "check_size": "$1M - $50M+",
72
+ "stage_focus": ["Seed", "Series A", "Growth"],
73
+ "industry_tags": ["Generalist", "Crypto", "Enterprise", "Consumer", "AI"],
74
+ "geography_focus": ["Global", "US"],
75
+ "notable_portfolio": ["Facebook", "Coinbase", "Figma"],
76
+ "website": "https://a16z.com",
77
+ "source": "fund website"
78
+ },
79
+ {
80
+ "fund_name": "Point Nine Capital",
81
+ "thesis": "We are a seed-stage venture capital firm focused on B2B SaaS and B2B marketplaces globally.",
82
+ "check_size": "$1M - $3M",
83
+ "stage_focus": ["Seed"],
84
+ "industry_tags": ["B2B SaaS", "Marketplaces"],
85
+ "geography_focus": ["Europe", "Global"],
86
+ "notable_portfolio": ["Zendesk", "Typeform", "Docplanner"],
87
+ "website": "https://www.pointnine.com",
88
+ "source": "fund website"
89
+ },
90
+ {
91
+ "fund_name": "Cherry Ventures",
92
+ "thesis": "We champion founders in Europe from their earliest days. We are generalist seed investors.",
93
+ "check_size": "$1M - $4M",
94
+ "stage_focus": ["Pre-seed", "Seed"],
95
+ "industry_tags": ["Generalist", "Consumer", "B2B SaaS"],
96
+ "geography_focus": ["Europe"],
97
+ "notable_portfolio": ["FlixBus", "Auto1 Group", "Forto"],
98
+ "website": "https://www.cherry.vc",
99
+ "source": "fund website"
100
+ },
101
+ {
102
+ "fund_name": "First Round Capital",
103
+ "thesis": "We are the seed-stage firm that builds the most supportive community for founders.",
104
+ "check_size": "$1M - $4M",
105
+ "stage_focus": ["Pre-seed", "Seed"],
106
+ "industry_tags": ["Generalist", "B2B SaaS", "Consumer"],
107
+ "geography_focus": ["US"],
108
+ "notable_portfolio": ["Uber", "Notion", "Roblox"],
109
+ "website": "https://firstround.com",
110
+ "source": "fund website"
111
+ },
112
+ {
113
+ "fund_name": "Bessemer Venture Partners",
114
+ "thesis": "BVP helps entrepreneurs lay strong foundations to build and forge long-standing companies.",
115
+ "check_size": "$1M - $20M+",
116
+ "stage_focus": ["Seed", "Series A", "Growth"],
117
+ "industry_tags": ["Generalist", "Enterprise", "Consumer", "FinTech"],
118
+ "geography_focus": ["Global"],
119
+ "notable_portfolio": ["LinkedIn", "Twilio", "Shopify"],
120
+ "website": "https://www.bvp.com",
121
+ "source": "fund website"
122
+ },
123
+ {
124
+ "fund_name": "Index Ventures",
125
+ "thesis": "We back the best and most ambitious entrepreneurs across all stages to build category-defining businesses.",
126
+ "check_size": "$1M - $20M+",
127
+ "stage_focus": ["Seed", "Series A", "Growth"],
128
+ "industry_tags": ["Generalist", "FinTech", "Consumer", "B2B SaaS"],
129
+ "geography_focus": ["Europe", "US", "Global"],
130
+ "notable_portfolio": ["Dropbox", "Slack", "Figma"],
131
+ "website": "https://www.indexventures.com",
132
+ "source": "fund website"
133
+ },
134
+ {
135
+ "fund_name": "Lightspeed Venture Partners",
136
+ "thesis": "We invest globally in enterprise, consumer, and health founders who are shaping the future.",
137
+ "check_size": "$1M - $25M+",
138
+ "stage_focus": ["Seed", "Series A", "Growth"],
139
+ "industry_tags": ["Generalist", "Enterprise", "Consumer", "FinTech"],
140
+ "geography_focus": ["Global"],
141
+ "notable_portfolio": ["Snap", "Rippling", "MuleSoft"],
142
+ "website": "https://lsvp.com",
143
+ "source": "fund website"
144
+ },
145
+ {
146
+ "fund_name": "Accel",
147
+ "thesis": "We partner with exceptional founders from inception through all phases of private company growth.",
148
+ "check_size": "$1M - $20M+",
149
+ "stage_focus": ["Seed", "Series A", "Growth"],
150
+ "industry_tags": ["Generalist", "B2B SaaS", "Consumer", "DevTools"],
151
+ "geography_focus": ["Global"],
152
+ "notable_portfolio": ["Facebook", "Atlassian", "Spotify"],
153
+ "website": "https://www.accel.com",
154
+ "source": "fund website"
155
+ },
156
+ {
157
+ "fund_name": "Bain Capital Ventures",
158
+ "thesis": "From seed to growth, we back founders building legendary infrastructure, fintech, application, and commerce companies.",
159
+ "check_size": "$1M - $50M+",
160
+ "stage_focus": ["Seed", "Series A", "Growth"],
161
+ "industry_tags": ["Generalist", "Infrastructure", "FinTech", "B2B SaaS"],
162
+ "geography_focus": ["US", "Global"],
163
+ "notable_portfolio": ["DocuSign", "SendGrid", "Redis"],
164
+ "website": "https://www.baincapitalventures.com",
165
+ "source": "fund website"
166
+ },
167
+ {
168
+ "fund_name": "Greylock Partners",
169
+ "thesis": "We partner with early-stage founders to build enterprise and consumer software companies that define new categories.",
170
+ "check_size": "$1M - $10M",
171
+ "stage_focus": ["Seed", "Series A"],
172
+ "industry_tags": ["Enterprise", "Consumer", "Cybersecurity", "AI"],
173
+ "geography_focus": ["US"],
174
+ "notable_portfolio": ["Workday", "Palo Alto Networks", "LinkedIn"],
175
+ "website": "https://greylock.com",
176
+ "source": "fund website"
177
+ },
178
+ {
179
+ "fund_name": "Unusual Ventures",
180
+ "thesis": "We provide a breakthrough level of support for early-stage founders building enterprise tech.",
181
+ "check_size": "$1M - $5M",
182
+ "stage_focus": ["Pre-seed", "Seed"],
183
+ "industry_tags": ["Enterprise", "DevTools", "B2B SaaS"],
184
+ "geography_focus": ["US"],
185
+ "notable_portfolio": ["Arctic Wolf", "Harness", "Vivun"],
186
+ "website": "https://www.unusual.vc",
187
+ "source": "fund website"
188
+ },
189
+ {
190
+ "fund_name": "Crane Venture Partners",
191
+ "thesis": "We back deep tech and enterprise founders in Europe solving hard problems with data and code.",
192
+ "check_size": "$1M - $4M",
193
+ "stage_focus": ["Seed"],
194
+ "industry_tags": ["Enterprise", "DeepTech", "Data", "AI"],
195
+ "geography_focus": ["Europe"],
196
+ "notable_portfolio": ["Onfido", "Tessian", "Forto"],
197
+ "website": "https://crane.vc",
198
+ "source": "fund website"
199
+ },
200
+ {
201
+ "fund_name": "Founder Collective",
202
+ "thesis": "We are a seed-stage venture capital fund, built by founders, for founders. We back weird, wonderful, and wild startups.",
203
+ "check_size": "$500k - $2M",
204
+ "stage_focus": ["Seed"],
205
+ "industry_tags": ["Generalist", "Consumer", "B2B SaaS"],
206
+ "geography_focus": ["US", "Global"],
207
+ "notable_portfolio": ["Uber", "Airtable", "BuzzFeed"],
208
+ "website": "https://www.foundercollective.com",
209
+ "source": "fund website"
210
+ },
211
+ {
212
+ "fund_name": "Benchmark",
213
+ "thesis": "We are a partnership of equal partners. We back mission-driven founders at the earliest stages and walk beside them for the long haul.",
214
+ "check_size": "$1M - $10M",
215
+ "stage_focus": ["Seed", "Series A"],
216
+ "industry_tags": ["Generalist", "Marketplaces", "Enterprise", "Consumer"],
217
+ "geography_focus": ["US", "Global"],
218
+ "notable_portfolio": ["Uber", "Twitter", "eBay", "Snapchat"],
219
+ "website": "https://www.benchmark.com",
220
+ "source": "fund website"
221
+ },
222
+ {
223
+ "fund_name": "Accel India",
224
+ "thesis": "We partner with exceptional founders from inception through all phases of private company growth in the Indian ecosystem.",
225
+ "check_size": "$1M - $15M",
226
+ "stage_focus": ["Seed", "Series A", "Growth"],
227
+ "industry_tags": ["Generalist", "B2B SaaS", "Consumer", "FinTech", "E-commerce"],
228
+ "geography_focus": ["India"],
229
+ "notable_portfolio": ["Flipkart", "Swiggy", "Freshworks"],
230
+ "website": "https://www.accel.com/india",
231
+ "source": "fund website"
232
+ },
233
+ {
234
+ "fund_name": "Blume Ventures",
235
+ "thesis": "We are a seed and pre-seed venture fund that backs startups with both funding and active mentoring.",
236
+ "check_size": "$500k - $3M",
237
+ "stage_focus": ["Pre-seed", "Seed"],
238
+ "industry_tags": ["Generalist", "B2B SaaS", "Consumer", "DeepTech", "HealthTech"],
239
+ "geography_focus": ["India"],
240
+ "notable_portfolio": ["Unacademy", "Purplle", "GreyOrange"],
241
+ "website": "https://blume.vc",
242
+ "source": "fund website"
243
+ },
244
+ {
245
+ "fund_name": "Elevation Capital",
246
+ "thesis": "We partner with visionary founders in India across early stages to help them build category-defining businesses.",
247
+ "check_size": "$1M - $10M",
248
+ "stage_focus": ["Seed", "Series A"],
249
+ "industry_tags": ["Generalist", "Consumer", "FinTech", "B2B SaaS", "HealthTech"],
250
+ "geography_focus": ["India"],
251
+ "notable_portfolio": ["Paytm", "Swiggy", "Meesho"],
252
+ "website": "https://elevationcapital.com",
253
+ "source": "fund website"
254
+ },
255
+ {
256
+ "fund_name": "Peak XV Partners",
257
+ "thesis": "Formerly Sequoia India & SEA, we partner with founders across early, growth, and public stages to build enduring companies.",
258
+ "check_size": "$1M - $20M+",
259
+ "stage_focus": ["Seed", "Series A", "Growth"],
260
+ "industry_tags": ["Generalist", "Consumer", "FinTech", "B2B SaaS", "DevTools", "AI"],
261
+ "geography_focus": ["India", "South Asia"],
262
+ "notable_portfolio": ["Zomato", "Pine Labs", "Cred"],
263
+ "website": "https://www.peakxv.com",
264
+ "source": "fund website"
265
+ },
266
+ {
267
+ "fund_name": "Nexus Venture Partners",
268
+ "thesis": "We are a US-India venture capital firm backing extraordinary founders building product-first companies.",
269
+ "check_size": "$1M - $10M",
270
+ "stage_focus": ["Seed", "Series A"],
271
+ "industry_tags": ["B2B SaaS", "Enterprise", "DevTools", "Consumer"],
272
+ "geography_focus": ["India", "US"],
273
+ "notable_portfolio": ["Postman", "Hasura", "Zepto"],
274
+ "website": "https://nexusvp.com",
275
+ "source": "fund website"
276
+ }
277
+ ]
@@ -0,0 +1,141 @@
1
+ # VC Curated Match Report
2
+
3
+ **Product:** An AI-powered B2B SaaS platform that helps sales teams automate outreach and qualify leads faster
4
+ **URL:** https://example-ai-sales.com
5
+ **Extracted Tags:** AI, B2B SaaS
6
+ **Stage:** Seed
7
+ **Geography:** US
8
+ **Generated:** 2026-04-23
9
+
10
+ ---
11
+
12
+ ## Top VC Matches
13
+
14
+ ---
15
+ ## 1. Y Combinator — High Confidence
16
+
17
+ **Thesis:** We provide seed funding for startups. We invest in deeply technical teams building massive companies across all domains.
18
+ **Check Size:** $500k
19
+ **Stage Focus:** Pre-seed, Seed
20
+ **Geography:** Global
21
+ **Notable Portfolio:** Stripe, Airbnb, GitLab
22
+ **Website:** https://www.ycombinator.com
23
+ **Match Score:** 75/100
24
+ **Why this match:** This fund focuses on AI, B2B SaaS which aligns with your product's identified sector(s). They are active at your target stage (Seed) and correspond to your geography focus (US).
25
+
26
+ ---
27
+ ## 2. Nexus Venture Partners — Medium Confidence
28
+
29
+ **Thesis:** We are a US-India venture capital firm backing extraordinary founders building product-first companies.
30
+ **Check Size:** $1M - $10M
31
+ **Stage Focus:** Seed, Series A
32
+ **Geography:** India, US
33
+ **Notable Portfolio:** Postman, Hasura, Zepto
34
+ **Website:** https://nexusvp.com
35
+ **Match Score:** 60/100
36
+ **Why this match:** This fund focuses on B2B SaaS which aligns with your product's identified sector(s). They are active at your target stage (Seed) and correspond to your geography focus (US).
37
+
38
+ ---
39
+ ## 3. Point Nine Capital — Medium Confidence
40
+
41
+ **Thesis:** We are a seed-stage venture capital firm focused on B2B SaaS and B2B marketplaces globally.
42
+ **Check Size:** $1M - $3M
43
+ **Stage Focus:** Seed
44
+ **Geography:** Europe, Global
45
+ **Notable Portfolio:** Zendesk, Typeform, Docplanner
46
+ **Website:** https://www.pointnine.com
47
+ **Match Score:** 55/100
48
+ **Why this match:** This fund focuses on B2B SaaS which aligns with your product's identified sector(s). They are active at your target stage (Seed) and correspond to your geography focus (US).
49
+
50
+ ---
51
+ ## 4. Amplify Partners — Medium Confidence
52
+
53
+ **Thesis:** We invest in technical founders building the next generation of IT infrastructure, developer tools, and data platforms.
54
+ **Check Size:** $2M - $8M
55
+ **Stage Focus:** Seed, Series A
56
+ **Geography:** US
57
+ **Notable Portfolio:** Datadog, OCTO, dbt Labs
58
+ **Website:** https://www.amplifypartners.com
59
+ **Match Score:** 45/100
60
+ **Why this match:** This fund focuses on AI which aligns with your product's identified sector(s). They are active at your target stage (Seed) and correspond to your geography focus (US).
61
+
62
+ ---
63
+ ## 5. Andreessen Horowitz (a16z) — Medium Confidence
64
+
65
+ **Thesis:** We invest in software eating the world. We back bold entrepreneurs building the future through technology.
66
+ **Check Size:** $1M - $50M+
67
+ **Stage Focus:** Seed, Series A, Growth
68
+ **Geography:** Global, US
69
+ **Notable Portfolio:** Facebook, Coinbase, Figma
70
+ **Website:** https://a16z.com
71
+ **Match Score:** 45/100
72
+ **Why this match:** This fund focuses on AI which aligns with your product's identified sector(s). They are active at your target stage (Seed) and correspond to your geography focus (US).
73
+
74
+ ---
75
+ ## 6. Bain Capital Ventures — Medium Confidence
76
+
77
+ **Thesis:** From seed to growth, we back founders building legendary infrastructure, fintech, application, and commerce companies.
78
+ **Check Size:** $1M - $50M+
79
+ **Stage Focus:** Seed, Series A, Growth
80
+ **Geography:** US, Global
81
+ **Notable Portfolio:** DocuSign, SendGrid, Redis
82
+ **Website:** https://www.baincapitalventures.com
83
+ **Match Score:** 45/100
84
+ **Why this match:** This fund focuses on B2B SaaS which aligns with your product's identified sector(s). They are active at your target stage (Seed) and correspond to your geography focus (US).
85
+
86
+ ---
87
+ ## 7. First Round Capital — Medium Confidence
88
+
89
+ **Thesis:** We are the seed-stage firm that builds the most supportive community for founders.
90
+ **Check Size:** $1M - $4M
91
+ **Stage Focus:** Pre-seed, Seed
92
+ **Geography:** US
93
+ **Notable Portfolio:** Uber, Notion, Roblox
94
+ **Website:** https://firstround.com
95
+ **Match Score:** 45/100
96
+ **Why this match:** This fund focuses on B2B SaaS which aligns with your product's identified sector(s). They are active at your target stage (Seed) and correspond to your geography focus (US).
97
+
98
+ ---
99
+ ## 8. Founder Collective — Medium Confidence
100
+
101
+ **Thesis:** We are a seed-stage venture capital fund, built by founders, for founders. We back weird, wonderful, and wild startups.
102
+ **Check Size:** $500k - $2M
103
+ **Stage Focus:** Seed
104
+ **Geography:** US, Global
105
+ **Notable Portfolio:** Uber, Airtable, BuzzFeed
106
+ **Website:** https://www.foundercollective.com
107
+ **Match Score:** 45/100
108
+ **Why this match:** This fund focuses on B2B SaaS which aligns with your product's identified sector(s). They are active at your target stage (Seed) and correspond to your geography focus (US).
109
+
110
+ ---
111
+ ## 9. Greylock Partners — Medium Confidence
112
+
113
+ **Thesis:** We partner with early-stage founders to build enterprise and consumer software companies that define new categories.
114
+ **Check Size:** $1M - $10M
115
+ **Stage Focus:** Seed, Series A
116
+ **Geography:** US
117
+ **Notable Portfolio:** Workday, Palo Alto Networks, LinkedIn
118
+ **Website:** https://greylock.com
119
+ **Match Score:** 45/100
120
+ **Why this match:** This fund focuses on AI which aligns with your product's identified sector(s). They are active at your target stage (Seed) and correspond to your geography focus (US).
121
+
122
+ ---
123
+ ## 10. Index Ventures — Medium Confidence
124
+
125
+ **Thesis:** We back the best and most ambitious entrepreneurs across all stages to build category-defining businesses.
126
+ **Check Size:** $1M - $20M+
127
+ **Stage Focus:** Seed, Series A, Growth
128
+ **Geography:** Europe, US, Global
129
+ **Notable Portfolio:** Dropbox, Slack, Figma
130
+ **Website:** https://www.indexventures.com
131
+ **Match Score:** 45/100
132
+ **Why this match:** This fund focuses on B2B SaaS which aligns with your product's identified sector(s). They are active at your target stage (Seed) and correspond to your geography focus (US).
133
+
134
+ ---
135
+
136
+ ## Assumptions & Limitations
137
+
138
+ - Dataset contains 25 funds verified as of 2026-04-23
139
+ - Fund theses and portfolios change over time. Verify directly at each fund's website before outreach.
140
+ - This tool matches based on public thesis data only. It does not reflect current deployment status or fund availability.
141
+ - Matches are a starting point for research, not financial advice.