From carta-crm
Fetches a company's website and returns structured profile data including name, industry, tags, and description. Saves results locally for auditing.
How this skill is triggered — by the user, by Claude, or both
Slash command
/carta-crm:enrich-companyhaikuThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Enrich a company profile by fetching its website and extracting key business information.
Enrich a company profile by fetching its website and extracting key business information. The result is returned as structured JSON and saved locally for auditing.
Take the target input and produce a clean https:// URL:
http:// or https://, use it as-is.acme.com), prepend https://.https://acme.com).Also extract the bare domain (e.g., acme.com) — you'll need it for the output filename.
Use WebFetch to retrieve the homepage. Look for:
<title> and <meta name="description"> content<h1> / <h2> headings and hero/tagline textIf the homepage returns insufficient content (e.g., a login wall, placeholder, or very sparse text),
also try fetching [root-url]/about as a fallback.
If the website alone doesn't clearly reveal the company's industry or what it does, run a WebSearch for:
"[company name]" company what does it do
Use the top 2–3 results to fill in gaps — especially for industry and description.
From the gathered content, produce the following fields:
| Field | Type | Notes |
|---|---|---|
name | string | Official company name (not the domain) |
industry | string | Primary industry, e.g. "FinTech", "SaaS", "Healthcare IT", "Climate Tech" |
tags | array of strings | 3–6 short topic tags, e.g. ["payments", "B2B", "API", "embedded finance"] |
description | string | 1–2 sentence plain-English summary of what the company does |
website | string | Canonical root URL, e.g. https://acme.com |
Use specific, meaningful tags — avoid generic ones like "technology" or "software" on their own.
Write the JSON to a local audit file:
mkdir -p ~/.carta-crm/enriched-companies
cat > ~/.carta-crm/enriched-companies/[domain].json << 'ENDJSON'
{
"name": "...",
"industry": "...",
"tags": [...],
"description": "...",
"website": "..."
}
ENDJSON
Replace [domain] with the bare domain (e.g., acme.com).
Confirm the file was written with echo $? (should be 0).
Return the enrichment record as a JSON block, followed by the save path:
{
"name": "...",
"industry": "...",
"tags": [...],
"description": "...",
"website": "..."
}
State: Saved to ~/.carta-crm/enriched-companies/[domain].json
If the user provides multiple targets, repeat Steps 1–5 for each one, then return all
results together and summarize: Enriched N companies — saved to ~/.carta-crm/enriched-companies/
npx claudepluginhub anthropics/claude-plugins-official --plugin carta-crmResearches any company on demand, producing a sourced 360° report covering funding, leadership, products, market position, and news using real-time web data.
Researches target companies for sales prospecting using Browserbase Search API and a Plan→Research→Synthesize pattern with depth modes. Outputs scored reports and CSV.
Researches companies for job applications or interviews, generating intelligence briefs with overview, recent news, culture, team structure, key contacts, and smart questions.