Company Intelligence - Comprehensive Company Reports
Full company intelligence report - overview, team, funding, products, news
How to use it
- Hit Copy the whole skill.
- Claude: ⋯ → Download .md, then Customize → Skills → Add → Upload skill.
ChatGPT: make a Project and paste it into Instructions.
Neither? Paste it at the top of a new chat — it works for that chat. - Describe your job in plain words. The AI follows the skill from there.
Claude Code — installs the whole folder, not just SKILL.md
npx degit gooseworks-ai/goose-skills/skills/lead-generation/capabilities/company-intel#main ~/.claude/skills/company-intelFor one project only, change the path to .claude/skills/company-intel.
Not working?
- Check which app you pasted it into — the steps above name the right one.
- Some skills need the paid tier of Claude or ChatGPT.
Paste into Claude, ChatGPT or Cursor.
Show the full text136 lines
Company Intelligence - Comprehensive Company Reports
Setup
Read your credentials from ~/.gooseworks/credentials.json:
export GOOSEWORKS_API_KEY=$(python3 -c "import json;print(json.load(open('$HOME/.gooseworks/credentials.json'))['api_key'])")
export GOOSEWORKS_API_BASE=$(python3 -c "import json;print(json.load(open('$HOME/.gooseworks/credentials.json')).get('api_base','https://api.gooseworks.ai'))")
If ~/.gooseworks/credentials.json does not exist, tell the user to run: npx gooseworks login
All endpoints use Bearer auth: -H "Authorization: Bearer $GOOSEWORKS_API_KEY"
Generate full intelligence reports on any company including overview, team, funding, products, and recent news.
Workflow
Step 1: Company Overview
Get basic company information:
curl -s -X POST $GOOSEWORKS_API_BASE/v1/proxy/orthogonal/run \
-H "Authorization: Bearer $GOOSEWORKS_API_KEY" \
-H "Content-Type: application/json" \
-d '{"api":"brand-dev","path":"/v1/brand/retrieve","query":{"domain":"stripe.com"}}'
Step 2: Find Leadership Team
Get info on key executives:
curl -s -X POST $GOOSEWORKS_API_BASE/v1/proxy/orthogonal/run \
-H "Authorization: Bearer $GOOSEWORKS_API_KEY" \
-H "Content-Type: application/json" \
-d '{"api":"fiber","path":"/v1/people-search"}'
"searchParams": {
"company_names": ["Stripe"],
"job_titles": ["CEO", "CTO", "CFO", "COO", "VP", "Head of"]
}
}'
Step 3: Product Analysis
Analyze products and pricing:
curl -s -X POST $GOOSEWORKS_API_BASE/v1/proxy/orthogonal/run \
-H "Authorization: Bearer $GOOSEWORKS_API_KEY" \
-H "Content-Type: application/json" \
-d '{"api":"scrapegraph","path":"/v1/smartscraper"}'
"website_url": "https://stripe.com/pricing",
"user_prompt": "Extract all products, pricing tiers, and features"
}'
Step 4: Employee Count & Growth
Track company growth:
curl -s -X POST $GOOSEWORKS_API_BASE/v1/proxy/orthogonal/run \
-H "Authorization: Bearer $GOOSEWORKS_API_KEY" \
-H "Content-Type: application/json" \
-d '{"api":"fiber","path":"/v1/company-search"}'
"searchParams": {
"company_names": ["Stripe"]
}
}'
Full Intelligence Report Pipeline
# Generate complete report
DOMAIN="stripe.com"
COMPANY="Stripe"
# 1. Basic info
curl -s -X POST $GOOSEWORKS_API_BASE/v1/proxy/orthogonal/run \
-H "Authorization: Bearer $GOOSEWORKS_API_KEY" \
-H "Content-Type: application/json" \
-d '{"api":"brand-dev","path":"/v1/brand/retrieve","query":{"domain":"$DOMAIN"}}'
# 2. Leadership team
curl -s -X POST $GOOSEWORKS_API_BASE/v1/proxy/orthogonal/run \
-H "Authorization: Bearer $GOOSEWORKS_API_KEY" \
-H "Content-Type: application/json" \
-d '{"api":"fiber","path":"/v1/people-search","body":"{\\"}'
# 3. Products & pricing
curl -s -X POST $GOOSEWORKS_API_BASE/v1/proxy/orthogonal/run \
-H "Authorization: Bearer $GOOSEWORKS_API_KEY" \
-H "Content-Type: application/json" \
-d '{"api":"scrapegraph","path":"/v1/smartscraper","body":"{\\"}'
# 4. Company data
curl -s -X POST $GOOSEWORKS_API_BASE/v1/proxy/orthogonal/run \
-H "Authorization: Bearer $GOOSEWORKS_API_KEY" \
-H "Content-Type: application/json" \
-d '{"api":"fiber","path":"/v1/company-search","body":"{\\"}'
Tips
- Combine multiple sources for accuracy
- Verify funding data from multiple sources
- Track company over time for changes
- Note any discrepancies between sources
Discover More
List all endpoints, or add a path for parameter details:
curl -s -X POST $GOOSEWORKS_API_BASE/v1/proxy/orthogonal/search \
-H "Authorization: Bearer $GOOSEWORKS_API_KEY" \
-H "Content-Type: application/json" \
-d '{"prompt":"brand-dev API endpoints"}' api show fiber
curl -s -X POST $GOOSEWORKS_API_BASE/v1/proxy/orthogonal/search \
-H "Authorization: Bearer $GOOSEWORKS_API_KEY" \
-H "Content-Type: application/json" \
-d '{"prompt":"scrapegraph API endpoints"}'
Example: `curl -s -X POST $GOOSEWORKS_API_BASE/v1/proxy/orthogonal/details \
-H "Authorization: Bearer $GOOSEWORKS_API_KEY" \
-H "Content-Type: application/json" \
-d '{"api":"olostep","path":"/v1/scrapes`"}' for endpoint parameters.
| 1 | |
| 2 | name company-intel |
| 3 | description Full company intelligence report - overview, team, funding, products, news |
| 4 | source orthogonal |
| 5 | |
| 6 | |
| 7 | |
| 8 | # Company Intelligence - Comprehensive Company Reports |
| 9 | |
| 10 | ## Setup |
| 11 | |
| 12 | Read your credentials from ~/.gooseworks/credentials.json: |
| 13 | |
| 14 | export GOOSEWORKS_API_KEY=$(python3 -c "import json;print(json.load(open('$HOME/.gooseworks/credentials.json'))['api_key'])") |
| 15 | export GOOSEWORKS_API_BASE=$(python3 -c "import json;print(json.load(open('$HOME/.gooseworks/credentials.json')).get('api_base','https://api.gooseworks.ai'))") |
| 16 | |
| 17 | |
| 18 | If ~/.gooseworks/credentials.json does not exist, tell the user to run: `npx gooseworks login` |
| 19 | |
| 20 | All endpoints use Bearer auth: `-H "Authorization: Bearer $GOOSEWORKS_API_KEY"` |
| 21 | |
| 22 | |
| 23 | Generate full intelligence reports on any company including overview, team, funding, products, and recent news. |
| 24 | |
| 25 | ## Workflow |
| 26 | |
| 27 | ### Step 1: Company Overview |
| 28 | Get basic company information: |
| 29 | |
| 30 | |
| 31 | curl -s -X POST $GOOSEWORKS_API_BASE/v1/proxy/orthogonal/run \ |
| 32 | -H "Authorization: Bearer $GOOSEWORKS_API_KEY" \ |
| 33 | -H "Content-Type: application/json" \ |
| 34 | -d '{"api":"brand-dev","path":"/v1/brand/retrieve","query":{"domain":"stripe.com"}}' |
| 35 | |
| 36 | |
| 37 | ### Step 2: Find Leadership Team |
| 38 | Get info on key executives: |
| 39 | |
| 40 | |
| 41 | curl -s -X POST $GOOSEWORKS_API_BASE/v1/proxy/orthogonal/run \ |
| 42 | -H "Authorization: Bearer $GOOSEWORKS_API_KEY" \ |
| 43 | -H "Content-Type: application/json" \ |
| 44 | -d '{"api":"fiber","path":"/v1/people-search"}' |
| 45 | "searchParams": { |
| 46 | "company_names": ["Stripe"], |
| 47 | "job_titles": ["CEO", "CTO", "CFO", "COO", "VP", "Head of"] |
| 48 | } |
| 49 | }' |
| 50 | |
| 51 | |
| 52 | ### Step 3: Product Analysis |
| 53 | Analyze products and pricing: |
| 54 | |
| 55 | |
| 56 | curl -s -X POST $GOOSEWORKS_API_BASE/v1/proxy/orthogonal/run \ |
| 57 | -H "Authorization: Bearer $GOOSEWORKS_API_KEY" \ |
| 58 | -H "Content-Type: application/json" \ |
| 59 | -d '{"api":"scrapegraph","path":"/v1/smartscraper"}' |
| 60 | "website_url": "https://stripe.com/pricing", |
| 61 | "user_prompt": "Extract all products, pricing tiers, and features" |
| 62 | }' |
| 63 | |
| 64 | |
| 65 | ### Step 4: Employee Count & Growth |
| 66 | Track company growth: |
| 67 | |
| 68 | |
| 69 | curl -s -X POST $GOOSEWORKS_API_BASE/v1/proxy/orthogonal/run \ |
| 70 | -H "Authorization: Bearer $GOOSEWORKS_API_KEY" \ |
| 71 | -H "Content-Type: application/json" \ |
| 72 | -d '{"api":"fiber","path":"/v1/company-search"}' |
| 73 | "searchParams": { |
| 74 | "company_names": ["Stripe"] |
| 75 | } |
| 76 | }' |
| 77 | |
| 78 | |
| 79 | ## Full Intelligence Report Pipeline |
| 80 | |
| 81 | |
| 82 | # Generate complete report |
| 83 | DOMAIN="stripe.com" |
| 84 | COMPANY="Stripe" |
| 85 | |
| 86 | # 1. Basic info |
| 87 | curl -s -X POST $GOOSEWORKS_API_BASE/v1/proxy/orthogonal/run \ |
| 88 | -H "Authorization: Bearer $GOOSEWORKS_API_KEY" \ |
| 89 | -H "Content-Type: application/json" \ |
| 90 | -d '{"api":"brand-dev","path":"/v1/brand/retrieve","query":{"domain":"$DOMAIN"}}' |
| 91 | |
| 92 | # 2. Leadership team |
| 93 | curl -s -X POST $GOOSEWORKS_API_BASE/v1/proxy/orthogonal/run \ |
| 94 | -H "Authorization: Bearer $GOOSEWORKS_API_KEY" \ |
| 95 | -H "Content-Type: application/json" \ |
| 96 | -d '{"api":"fiber","path":"/v1/people-search","body":"{\\"}' |
| 97 | |
| 98 | # 3. Products & pricing |
| 99 | curl -s -X POST $GOOSEWORKS_API_BASE/v1/proxy/orthogonal/run \ |
| 100 | -H "Authorization: Bearer $GOOSEWORKS_API_KEY" \ |
| 101 | -H "Content-Type: application/json" \ |
| 102 | -d '{"api":"scrapegraph","path":"/v1/smartscraper","body":"{\\"}' |
| 103 | |
| 104 | # 4. Company data |
| 105 | curl -s -X POST $GOOSEWORKS_API_BASE/v1/proxy/orthogonal/run \ |
| 106 | -H "Authorization: Bearer $GOOSEWORKS_API_KEY" \ |
| 107 | -H "Content-Type: application/json" \ |
| 108 | -d '{"api":"fiber","path":"/v1/company-search","body":"{\\"}' |
| 109 | |
| 110 | |
| 111 | ## Tips |
| 112 | |
| 113 | Combine multiple sources for accuracy |
| 114 | Verify funding data from multiple sources |
| 115 | Track company over time for changes |
| 116 | Note any discrepancies between sources |
| 117 | |
| 118 | ## Discover More |
| 119 | |
| 120 | List all endpoints, or add a path for parameter details: |
| 121 | |
| 122 | |
| 123 | curl -s -X POST $GOOSEWORKS_API_BASE/v1/proxy/orthogonal/search \ |
| 124 | -H "Authorization: Bearer $GOOSEWORKS_API_KEY" \ |
| 125 | -H "Content-Type: application/json" \ |
| 126 | -d '{"prompt":"brand-dev API endpoints"}' api show fiber |
| 127 | curl -s -X POST $GOOSEWORKS_API_BASE/v1/proxy/orthogonal/search \ |
| 128 | -H "Authorization: Bearer $GOOSEWORKS_API_KEY" \ |
| 129 | -H "Content-Type: application/json" \ |
| 130 | -d '{"prompt":"scrapegraph API endpoints"}' |
| 131 | |
| 132 | Example: `curl -s -X POST $GOOSEWORKS_API_BASE/v1/proxy/orthogonal/details \ |
| 133 | -H "Authorization: Bearer $GOOSEWORKS_API_KEY" \ |
| 134 | -H "Content-Type: application/json" \ |
| 135 | -d '{"api":"olostep","path":"/v1/scrapes`"}' for endpoint parameters. |
| 136 |
Discussion
Alternatives
Also in Company & contact dataApollo lead finderTwo-phase Apollo.io prospecting: free People Search to discover ICP-matching leads, then selective enrichment to reveal emails/phones (credits per contact). Creates Apollo lists. Deduplicates against existing contacts by LinkedIn URL.Company contact finderFind decision-makers at a specific company using Apollo, Crustdata, Fiber, and PDL people search via Gooseworks MCP. Given a company name and target titles, returns a list of contacts with name, title, LinkedIn URL, and location.Company funding searchFind company funding history, investors, and investment detailsConference speaker scraperExtract speaker names, titles, companies, and bios from conference websites. Supports direct HTML scraping and Apify web scraper fallback for JS-heavy sites. Use for pre-event research and outreach targeting.