company-intel
Full company intelligence report - overview, team, funding, products, news
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Full company intelligence report - overview, team, funding, products, news
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Test and document API endpoints - validate responses, check status, generate examples
Research competitors - products, pricing, team, funding, and strategy
Enrich any person or company from any identifier — email, name, LinkedIn URL, domain, company name, Twitter/X handle. Use when asked to enrich, look up, or research a lead, contact, person, or company.
Extract structured data from web pages using AI
Build a sales prospect list of dental practices in a city — finds practices, decision makers, contact info, and buying signals. Use when asked to find dentists for outreach, prospect dental practices, build a lead list of dentists, or generate dental practice leads in a specific area.
Analyze images with AI - extract text, describe content, detect objects
| name | company-intel |
| description | Full company intelligence report - overview, team, funding, products, news |
Generate full intelligence reports on any company including overview, team, funding, products, and recent news.
Get basic company information:
orth api run brand-dev /v1/brand/retrieve --query 'domain=stripe.com'
Get info on key executives:
orth api run fiber /v1/people-search --body '{
"searchParams": {
"company_names": ["Stripe"],
"job_titles": ["CEO", "CTO", "CFO", "COO", "VP", "Head of"]
}
}'
Analyze products and pricing:
orth api run scrapegraph /api/extract --body '{
"url": "https://stripe.com/pricing",
"prompt": "Extract all products, pricing tiers, and features"
}'
Track company growth:
orth api run fiber /v1/company-search --body '{
"searchParams": {
"company_names": ["Stripe"]
}
}'
# Generate complete report
DOMAIN="stripe.com"
COMPANY="Stripe"
# 1. Basic info
orth api run brand-dev /v1/brand/retrieve --query "domain=$DOMAIN"
# 2. Leadership team
orth api run fiber /v1/people-search --body "{\"searchParams\": {\"company_names\": [\"$COMPANY\"], \"job_titles\": [\"CEO\", \"CTO\", \"CFO\"]}}"
# 3. Products & pricing
orth api run scrapegraph /api/extract --body "{\"url\": \"https://$DOMAIN/pricing\", \"prompt\": \"Extract all products, pricing tiers, and features\"}"
# 4. Company data
orth api run fiber /v1/company-search --body "{\"searchParams\": {\"company_names\": [\"$COMPANY\"]}}"
List all endpoints, or add a path for parameter details:
orth api show brand-dev
orth api show fiber
orth api show scrapegraph
Example: orth api show olostep /v1/scrapes for endpoint parameters.