$npx -y skills add firecrawl/firecrawl-workflows --skill firecrawl-company-directoriesExtract structured company lists from directories with Firecrawl. Use for scraping YC, Crunchbase, Product Hunt, G2, startup directories, category directories, or custom company databases into JSON, CSV, CRM-ready lists, or research tables.
| 1 | # Firecrawl Company Directories |
| 2 | |
| 3 | Use this to turn startup or company directories into structured lists. |
| 4 | |
| 5 | ## Onboarding Interview |
| 6 | |
| 7 | Infer the directory, filters, result count, and output format from context. If the source is clear, proceed immediately. |
| 8 | |
| 9 | Ask at most 1-3 concise questions only if blocked, such as the directory URL/name, required filters, or target result count. |
| 10 | |
| 11 | ## Firecrawl Collection Plan |
| 12 | |
| 13 | Use Firecrawl browser when the directory needs filters, pagination, infinite scroll, or profile clicks. Use scrape/map when listings are public and static. |
| 14 | |
| 15 | Suggested sources include YC companies, Crunchbase, Product Hunt, G2 categories, or any custom directory URL. |
| 16 | |
| 17 | ## Extraction Fields |
| 18 | |
| 19 | Capture fields that are visible: |
| 20 | |
| 21 | - name |
| 22 | - description |
| 23 | - industry/category |
| 24 | - stage/founded/location/team size/funding when visible |
| 25 | - tags |
| 26 | - directory profile URL |
| 27 | - company website URL |
| 28 | |
| 29 | Leave unavailable fields blank. Do not infer. |
| 30 | |
| 31 | ## Final Deliverable |
| 32 | |
| 33 | ```markdown |
| 34 | # Company Directory Export: [Source] |
| 35 | |
| 36 | ## Summary |
| 37 | [Filters, count extracted, limitations] |
| 38 | |
| 39 | ## Companies |
| 40 | [Table or link to JSON/CSV] |
| 41 | |
| 42 | ## Sources |
| 43 | [Directory pages and profiles used] |
| 44 | |
| 45 | ## Rerun Inputs |
| 46 | workflow: firecrawl-company-directories |
| 47 | directory: [source] |
| 48 | filters: [criteria] |
| 49 | max_results: [number] |
| 50 | output: [json/csv/markdown] |
| 51 | ``` |
| 52 | |
| 53 | ## JSON Shape |
| 54 | |
| 55 | Use `source`, `filters`, `extractedAt`, `totalResults`, and `companies[]` with `name`, `url`, `description`, `industry`, `stage`, `founded`, `location`, `teamSize`, `funding`, `tags`, `profileUrl`, and `websiteUrl`. |
| 56 | |
| 57 | ## Quality Bar |
| 58 | |
| 59 | - Deduplicate companies. |
| 60 | - Track pagination progress. |
| 61 | - Note rate limits, login walls, or CAPTCHA blocks. |