Company Intelligence - Comprehensive Company Reports

Full company intelligence report - overview, team, funding, products, news

How to use it

  1. Hit Copy the whole skill.
  2. 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.
  3. 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-intel

For 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.
Step-by-step guide with screenshots · Ask in the forum

Paste into Claude, ChatGPT or Cursor.

Show the full text136 lines
company-intel/SKILL.md136 lines4.2 KBpushed 96d agoRawView on GitHub

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---
2name: company-intel
3description: Full company intelligence report - overview, team, funding, products, news
4source: orthogonal
5---
6 
7 
8# Company Intelligence - Comprehensive Company Reports
9 
10## Setup
11 
12Read your credentials from ~/.gooseworks/credentials.json:
13```bash
14export GOOSEWORKS_API_KEY=$(python3 -c "import json;print(json.load(open('$HOME/.gooseworks/credentials.json'))['api_key'])")
15export GOOSEWORKS_API_BASE=$(python3 -c "import json;print(json.load(open('$HOME/.gooseworks/credentials.json')).get('api_base','https://api.gooseworks.ai'))")
16```
17 
18If ~/.gooseworks/credentials.json does not exist, tell the user to run: `npx gooseworks login`
19 
20All endpoints use Bearer auth: `-H "Authorization: Bearer $GOOSEWORKS_API_KEY"`
21 
22 
23Generate full intelligence reports on any company including overview, team, funding, products, and recent news.
24 
25## Workflow
26 
27### Step 1: Company Overview
28Get basic company information:
29 
30```bash
31curl -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
38Get info on key executives:
39 
40```bash
41curl -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
53Analyze products and pricing:
54 
55```bash
56curl -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
66Track company growth:
67 
68```bash
69curl -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```bash
82# Generate complete report
83DOMAIN="stripe.com"
84COMPANY="Stripe"
85 
86# 1. Basic info
87curl -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
93curl -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
99curl -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
105curl -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 
120List all endpoints, or add a path for parameter details:
121 
122```bash
123curl -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
127curl -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 
132Example: `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 data