$npx -y skills add Varnan-Tech/opendirectory --skill vc-curated-matchAccepts 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.
| 1 | # VC Curated Match Skill |
| 2 | |
| 3 | Identify targeted VC funds based on a product's description and URL. |
| 4 | |
| 5 | --- |
| 6 | |
| 7 | ## When to Trigger This Skill |
| 8 | |
| 9 | Use this skill when the user asks to: |
| 10 | - Find investors for their startup or open-source project. |
| 11 | - Get a list of relevant VC funds by stage, industry, or space. |
| 12 | - Match their product built with specific technologies to investor theses. |
| 13 | |
| 14 | --- |
| 15 | |
| 16 | ## Step 1: Confirm Input |
| 17 | |
| 18 | Ask the user for the product description and the URL. |
| 19 | Optional parameters: |
| 20 | - Stage: `Pre-Seed`, `Seed`, `Series A` (`--stage`) |
| 21 | - Output: e.g., `vc-matches.md` (`--output`) |
| 22 | |
| 23 | --- |
| 24 | |
| 25 | ## Step 2: Fetch Matches & Generate Report |
| 26 | |
| 27 | Run the orchestrator script to handle context fetching, VC matching, and Markdown generation in one command. |
| 28 | |
| 29 | ```bash |
| 30 | python scripts/run.py --description "A fast rust-based web framework" --url "https://example.com" |
| 31 | ``` |
| 32 | |
| 33 | For custom requests, append overrides: |
| 34 | ```bash |
| 35 | python scripts/run.py \ |
| 36 | --description "..." \ |
| 37 | --url "..." \ |
| 38 | [--stage Seed] \ |
| 39 | [--output matched-investors.md] |
| 40 | ``` |
| 41 | |
| 42 | --- |
| 43 | |
| 44 | ## Step 3: Present Results |
| 45 | |
| 46 | Summarize the closest matches returned. Mention high-confidence matches explicitly. Provide the output path. |
| 47 | |
| 48 | --- |
| 49 | |
| 50 | ## Dependencies |
| 51 | |
| 52 | Standard Python 3.10+ library (no external packages required). |