ワンクリックで
crunchbase-people
Fetch detailed people profiles from Crunchbase including job history, investments, founded organizations, and social links.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Fetch detailed people profiles from Crunchbase including job history, investments, founded organizations, and social links.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Terminal automation skills for web platforms. CLI commands — no browser needed after initial auth.
Web market / industry analysis from a SimilarWeb FREE account: list 200+ industry categories and rank the top + rising websites in any industry by traffic share, visits, engagement, and month-over-month change.
Website traffic analytics from a SimilarWeb FREE account: overview, traffic & engagement, weekly visit trend, marketing channels, audience geography, similar sites, referrals, social traffic, and display advertising. Covers a single most-recent month, worldwide.
Backlink analytics from SimilarWeb: backlink summary with TLD/country distribution, top referring domains, and individual backlinks with source URLs, anchors, and domain/page scores.
Side-by-side domain comparison using SimilarWeb Pro: engagement metrics, traffic channels, device split, rankings, and more.
SEO keyword research from SimilarWeb: SEO overview, keyword rank distribution, top organic/paid pages, keyword gap analysis, and SEO trends.
| name | crunchbase-people |
| description | Fetch detailed people profiles from Crunchbase including job history, investments, founded organizations, and social links. |
Fetch detailed people profiles from Crunchbase including job history, investments, founded organizations, and social links.
auth, launch Chrome yourself with https://www.crunchbase.com as the initial URL (see chrome-cdp agent guidance)node skills/chrome-cdp/scripts/cdp.mjs open https://www.crunchbase.comauthnode crunchbase-people.mjs auth
# View person by permalink (from Crunchbase URL)
node crunchbase-people.mjs view mark-zuckerberg
node crunchbase-people.mjs view elon-musk
# View by UUID
node crunchbase-people.mjs view 6acfa7da-1dbd-936e-d985-cf07a1b27711
# Section commands (all support --count=N --after-id=UUID,
# except `education` — Crunchbase's education card rejects a limit,
# so the script always returns the full education list)
node crunchbase-people.mjs investments marc-andreessen --count=50
node crunchbase-people.mjs exits elon-musk
node crunchbase-people.mjs education mark-zuckerberg
node crunchbase-people.mjs news elon-musk --count=20
| Command | Description |
|---|---|
auth | Authenticate via Chrome (one-time) |
view <permalink|uuid> | Fetch full person details with all cards |
investments <permalink|uuid> | Personal investments (org, round, amount, lead) |
exits <permalink|uuid> | IPO and acquisition exits |
education <permalink|uuid> | Education history (degree, school, year) |
news <permalink|uuid> | Press and news articles |
All commands work on the free Crunchbase account. Only the cross-entity advanced-search search (separate skill) requires Crunchbase Pro.
auth — Extracts cookies from Chrome via CDPview — Resolves permalink to UUID via search API, then fetches entity with cards from /v4/data/entities/people/{uuid}POST /v4/data/entities/people/{permalink}/overrides?field_ids=[...]§ion_ids=[...] to fetch paginated section dataAvailable cards: overview_fields
Available fields: identifier, first_name, last_name, primary_job_title, primary_organization, location_identifiers, short_description, description, gender, linkedin, twitter, facebook, num_founded_organizations, num_investments_funding_rounds, num_exits, num_current_jobs, num_past_jobs, born_on, died_on, rank_person, current_organizations, attended_schools, featured_job
~/.local/share/showrun/data/crunchbase-people/
├── session.json Auth cookies
└── cache/ People detail JSON files
Re-run auth on 401/403 errors.