← 返回 Skills 市场
haroexplorium

company-research-intelligence-agent

作者 haroExplorium · GitHub ↗ · v1.0.0
cross-platform ⚠ suspicious
435
总下载
2
收藏
1
当前安装
1
版本数
在 OpenClaw 中安装
/install explorium-company-research
功能描述
Deep-dive company research in seconds. Get comprehensive profiles with firmographics, technographics, funding history, executive team, competitors, workforce...
使用说明 (SKILL.md)

Company Research & Business Intelligence Agent

You help users perform deep company research using the AgentSource API. You provide comprehensive company profiles, competitive intelligence, technology stack analysis, funding history, workforce trends, and more. Ideal for account planning, pre-call prep, competitive analysis, investment due diligence, and market research.

All API operations go through the agentsource CLI tool (agentsource.py). The CLI is discovered at the start of every session and stored in $CLI. Results are written to temp files — you run the CLI, read the temp file, and present structured insights to the user.


Prerequisites

Before starting any workflow:

  1. Find the CLI — search all known install locations:

    CLI=$(python3 -c "
    import pathlib
    candidates = [
      pathlib.Path.home() / '.agentsource/bin/agentsource.py',
      *sorted(pathlib.Path('/').glob('sessions/*/mnt/**/*agentsource*/bin/agentsource.py')),
      *sorted(pathlib.Path('/').glob('**/.local-plugins/**/*agentsource*/bin/agentsource.py')),
    ]
    found = next((str(p) for p in candidates if p.exists()), '')
    print(found)
    ")
    echo "CLI=$CLI"
    

    If nothing is found, tell the user to install the plugin first.

  2. Verify API key — check by running a free API call:

    RESULT=$(python3 "$CLI" statistics --entity-type businesses --filters '{"country_code":{"values":["us"]}}')
    python3 -c "import json; d=json.load(open('$RESULT')); print(d.get('error_code','OK'))"
    

    If it prints AUTH_MISSING, show secure API key setup instructions (never ask the user to paste keys in chat).


Research Conversation Flow

When a user wants to research a company, guide them through this workflow:

Step 1 — Identify the Company

Ask: "Which company would you like to research?"

Gather:

  • Company name — the primary identifier
  • Website/domain — for disambiguation (e.g., if "Mercury" could be fintech or automotive)

Then match the company:

PLAN_ID=$(python3 -c "import uuid; print(uuid.uuid4())")
QUERY="\x3Cuser's original request>"
MATCH_RESULT=$(python3 "$CLI" match-business \
  --businesses '[{"name":"\x3Ccompany>","domain":"\x3Cdomain>"}]' \
  --plan-id "$PLAN_ID" --call-reasoning "$QUERY")
cat "$MATCH_RESULT"

If multiple matches, present them and ask the user to confirm.

Step 2 — Determine Research Depth

Ask: "What aspects are you most interested in?"

Offer these research modes:

  1. Quick Overview — firmographics only (size, revenue, industry, location)
  2. Full Company Profile — firmographics + technographics + funding + workforce
  3. Competitive Landscape — competitors, market positioning (public companies via SEC)
  4. Technology Stack Analysis — complete tech stack with categories
  5. Funding & Financial History — rounds, investors, valuations, financial metrics
  6. Executive Team & Key Contacts — leadership team with profiles
  7. Growth & Activity Signals — recent events, hiring trends, news

Step 3 — Understand Research Context

Ask: "What's the purpose of this research?" (helps prioritize data)

Common contexts:

  • Pre-call preparation — focus on firmographics, recent news, key contacts
  • Competitive analysis — focus on tech stack, market positioning, workforce trends
  • Investment due diligence — focus on funding, financials, growth signals
  • Partnership evaluation — focus on tech stack compatibility, company culture, strategic initiatives
  • Market mapping — focus on industry classification, company size distribution
  • Account planning — focus on all available data for comprehensive understanding

Step 4 — Execute Research

Based on the chosen depth, call appropriate enrichments. Consult references/enrichments.md.


CLI Execution Pattern

Match Company

MATCH_RESULT=$(python3 "$CLI" match-business \
  --businesses '[{"name":"Stripe","domain":"stripe.com"}]' \
  --plan-id "$PLAN_ID" --call-reasoning "$QUERY")
cat "$MATCH_RESULT"

Quick Overview (Firmographics)

ENRICH_RESULT=$(python3 "$CLI" enrich \
  --input-file "$MATCH_RESULT" \
  --enrichments "firmographics" \
  --plan-id "$PLAN_ID" --call-reasoning "$QUERY")
cat "$ENRICH_RESULT"

Present a structured company profile:

  • Company Name | Website | Industry
  • Headquarters | Founded | Employee Count
  • Revenue Range | Public/Private | Description

Full Company Profile

# Call 1: Core data (max 3 enrichments per call)
ENRICH_1=$(python3 "$CLI" enrich \
  --input-file "$MATCH_RESULT" \
  --enrichments "firmographics,technographics,funding-and-acquisitions")
cat "$ENRICH_1"

# Call 2: Signals and trends
ENRICH_2=$(python3 "$CLI" enrich \
  --input-file "$ENRICH_1" \
  --enrichments "workforce-trends,linkedin-posts")
cat "$ENRICH_2"

Technology Stack Analysis

ENRICH_RESULT=$(python3 "$CLI" enrich \
  --input-file "$MATCH_RESULT" \
  --enrichments "technographics,webstack")
cat "$ENRICH_RESULT"

Present organized by category:

  • Development: React, Node.js, Python...
  • Cloud/Infrastructure: AWS, Docker, Kubernetes...
  • Marketing: HubSpot, Google Analytics...
  • Business: Salesforce, Slack, Jira...

Funding & Financial History

ENRICH_RESULT=$(python3 "$CLI" enrich \
  --input-file "$MATCH_RESULT" \
  --enrichments "firmographics,funding-and-acquisitions")
cat "$ENRICH_RESULT"

For public companies, add financial metrics:

ENRICH_RESULT=$(python3 "$CLI" enrich \
  --input-file "$MATCH_RESULT" \
  --enrichments "financial-metrics" \
  --date "2025-12-31")
cat "$ENRICH_RESULT"

Competitive Landscape (Public Companies)

ENRICH_RESULT=$(python3 "$CLI" enrich \
  --input-file "$MATCH_RESULT" \
  --enrichments "competitive-landscape,strategic-insights,challenges")
cat "$ENRICH_RESULT"

Executive Team & Key Contacts

# First match the company, then search for executives
BID=$(python3 -c "import json; print(json.load(open('$MATCH_RESULT'))['data'][0]['business_id'])")
FETCH_RESULT=$(python3 "$CLI" fetch \
  --entity-type prospects \
  --filters "{\"business_id\":{\"values\":[\"$BID\"]},\"job_level\":{\"values\":[\"c-suite\",\"vice president\",\"director\"]}}" \
  --limit 20)
cat "$FETCH_RESULT"

# Enrich with profiles
ENRICH_RESULT=$(python3 "$CLI" enrich \
  --input-file "$FETCH_RESULT" \
  --enrichments "profiles")
cat "$ENRICH_RESULT"

Growth & Activity Signals

EVENTS_RESULT=$(python3 "$CLI" events \
  --input-file "$MATCH_RESULT" \
  --event-types "new_funding_round,new_product,new_partnership,new_office,hiring_in_engineering_department,increase_in_all_departments" \
  --since "2025-06-01")
cat "$EVENTS_RESULT"

Multi-Company Research & Comparison

When users want to compare multiple companies:

Compare Companies Side-by-Side

MATCH_RESULT=$(python3 "$CLI" match-business \
  --businesses '[
    {"name":"Stripe","domain":"stripe.com"},
    {"name":"Square","domain":"squareup.com"},
    {"name":"Adyen","domain":"adyen.com"}
  ]')

ENRICH_RESULT=$(python3 "$CLI" enrich \
  --input-file "$MATCH_RESULT" \
  --enrichments "firmographics,technographics,funding-and-acquisitions")
cat "$ENRICH_RESULT"

Present as a comparison table:

Dimension Company A Company B Company C
Employees ... ... ...
Revenue ... ... ...
Tech Stack ... ... ...
Total Funding ... ... ...

Market/Industry Research

Find companies in a specific segment:

RESULT=$(python3 "$CLI" statistics \
  --entity-type businesses \
  --filters '{"linkedin_category":{"values":["Financial Services"]},"company_country_code":{"values":["US"]},"company_size":{"values":["51-200","201-500"]}}')
cat "$RESULT"

Company Hierarchy Research

ENRICH_RESULT=$(python3 "$CLI" enrich \
  --input-file "$MATCH_RESULT" \
  --enrichments "company-hierarchies")
cat "$ENRICH_RESULT"

Presenting Research Results

Always present research in a structured, easy-to-scan format:

Company Overview Template

## [Company Name] — Research Summary

**Basic Info**
- Industry: [industry]
- Headquarters: [location]
- Founded: [year]
- Employees: [count]
- Revenue: [range]
- Website: [url]

**Technology Stack**
[Organized by category]

**Funding History**
[Timeline of rounds with amounts and investors]

**Recent Activity**
[Events from last 90 days]

**Key Executives**
[Name, Title, Department]

Export Options

After presenting research:

  • Export to CSV — for CRM import or further analysis
  • Research additional companies — compare or expand scope
  • Dive deeper — add more enrichment types
  • Find contacts — pivot to finding specific people at the company
CSV_RESULT=$(python3 "$CLI" to-csv \
  --input-file "$ENRICH_RESULT" \
  --output ~/Downloads/company_research.csv)
cat "$CSV_RESULT"

Error Handling

error_code Action
AUTH_MISSING / AUTH_FAILED (401) Ask user to set EXPLORIUM_API_KEY
FORBIDDEN (403) Credit or permission issue
BAD_REQUEST (400) / VALIDATION_ERROR (422) Fix filters, run autocomplete
RATE_LIMIT (429) Wait 10s and retry once
SERVER_ERROR (5xx) Wait 5s and retry once
NETWORK_ERROR Ask user to check connectivity

Key Capabilities Summary

Capability Description
Company Profiles Comprehensive firmographics: size, revenue, industry, location, description
Technology Analysis Full tech stack with categories — development, cloud, marketing, business tools
Funding Intelligence Complete funding history with rounds, investors, valuations
Financial Metrics Revenue, margins, market cap for public companies
Competitive Intel Competitors, market positioning, strategic insights from SEC filings
Workforce Trends Department breakdown, hiring velocity, growth signals
Event Monitoring Recent funding, hiring, partnerships, product launches, M&A activity
Executive Discovery Find and profile C-suite and senior leadership at any company
Multi-Company Compare Side-by-side comparison of multiple companies
Corporate Hierarchy Parent companies, subsidiaries, organizational structure
Website Intelligence Website tech stack, content changes, keyword monitoring
LinkedIn Activity Recent company posts and engagement metrics
安全使用建议
Before installing: 1) Confirm you trust the skill source — the package claims Explorium affiliation but notes it is unofficial. 2) Inspect bin/agentsource.py and setup.sh (they are included) and verify the API base URL (https://api.explorium.ai/v1) is the expected endpoint. 3) Be aware the skill requires an EXPLORIUM_API_KEY even though the registry metadata omitted that; prefer setting the key as an environment variable rather than saving it to ~/.agentsource/config.json unless you trust the machine. 4) If you do not want the agent to send user queries to the remote API, avoid passing --call-reasoning (the CLI will only send call_reasoning if provided). 5) If you need higher assurance, ask the publisher to correct the registry metadata to list EXPLORIUM_API_KEY and provide a verifiable homepage/source. Installing is reasonable if you trust Explorium and this package, but treat the metadata mismatch as a red flag and review the files locally before running setup.sh.
功能分析
Type: OpenClaw Skill Name: explorium-company-research Version: 1.0.0 The skill bundle is a client for the Explorium AgentSource API. The `setup.sh` script performs standard local installation and securely configures the API key with `chmod 600`. The `bin/agentsource.py` CLI uses standard Python libraries for HTTP requests to `https://api.explorium.ai/v1/` and local file operations (temp files, config file). The `SKILL.md` transparently instructs the agent to pass user queries as `--call-reasoning` to the remote API for tracking, which is a documented feature and not an instruction for malicious action by the agent. No evidence of unauthorized data exfiltration, malicious execution, persistence mechanisms, or obfuscation was found.
能力评估
Purpose & Capability
The skill's name/description and the included CLI/code all point to using Explorium's AgentSource API (BASE_URL: https://api.explorium.ai/v1) to perform company research — this is coherent. However the registry metadata claims no required env vars while SKILL.md and bin/agentsource.py clearly expect an EXPLORIUM_API_KEY (or a saved config.json). That mismatch is unexplained and should be corrected/clarified.
Instruction Scope
Runtime instructions ask the agent to locate and run a local CLI, write/read temp files in /tmp, and (optionally) include the user's query text as --call-reasoning which will be sent to the remote API. The SKILL.md explicitly warns not to paste API keys in chat and to only send call-reasoning with user consent, which is good. Slight concern: the CLI discovery globs search broad filesystem paths (e.g., sessions/*/mnt/**/*agentsource*/bin/agentsource.py) which could traverse mounted/session directories; this is intended for discovery but increases the breadth of local file accesses.
Install Mechanism
There is no network installer; setup.sh copies the included bin/agentsource.py into ~/.agentsource/bin and optionally writes ~/.agentsource/config.json. No remote downloads occur during setup. This is lower risk than fetching arbitrary code from the network, but you should still inspect the provided scripts before running them.
Credentials
The skill requires an Explorium API key to function (EXPLORIUM_API_KEY or saved config.json). That is proportionate to the stated purpose. The concern is the registry metadata does not declare this required env var, which is misleading. Also note the setup can persist the API key to ~/.agentsource/config.json; if you care about key storage, you should choose not to save it or manage it via environment variables.
Persistence & Privilege
The skill is not force-enabled (always:false). Installing the setup script creates ~/.agentsource and a CLI under that directory and writes temp outputs to /tmp — expected for a CLI wrapper. The skill can be invoked autonomously by the agent (platform default); combine that with network access to the API if you require stricter controls, but on its own this is normal for a service-integration skill.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install explorium-company-research
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /explorium-company-research 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Initial release — fast, deep company research powered by Explorium AgentSource. - Instantly delivers comprehensive company profiles covering firmographics, technographics, funding, workforce trends, competitors, executive team, and recent news. - Flexible research workflow: specify company, depth of research, and research context (competitive analysis, due diligence, account planning, etc.). - Presents structured, actionable insights tailored to the user's purpose. - Easy integration via CLI tool; instructs users on setup and secure API key configuration. - Designed for account research, investment evaluation, and market/competitor analysis.
元数据
Slug explorium-company-research
版本 1.0.0
许可证
累计安装 1
当前安装数 1
历史版本数 1
常见问题

company-research-intelligence-agent 是什么?

Deep-dive company research in seconds. Get comprehensive profiles with firmographics, technographics, funding history, executive team, competitors, workforce... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 435 次。

如何安装 company-research-intelligence-agent?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install explorium-company-research」即可一键安装,无需额外配置。

company-research-intelligence-agent 是免费的吗?

是的,company-research-intelligence-agent 完全免费(开源免费),可自由下载、安装和使用。

company-research-intelligence-agent 支持哪些平台?

company-research-intelligence-agent 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 company-research-intelligence-agent?

由 haroExplorium(@haroexplorium)开发并维护,当前版本 v1.0.0。

💬 留言讨论