Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计提醒

explorium-company-research探索公司研究

Agent Skill

explorium-company-research 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

13,513

周安装

552

GitHub Stars

2

下载量

4,328
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:explorium-company-research(探索公司研究)
来源仓库:https://github.com/haroexplorium/explorium-company-research
安装命令:
openclaw skills install explorium-company-research
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install explorium-company-research

简介

快速获取目标公司的全面商业情报信息。

  • 适用于企业背景调查、竞品分析或投资尽调等研究场景。
  • 可输出公司结构、融资历史、技术栈及团队构成等关键数据。
  • 使用前请确保具备合法合规的数据访问权限。
  • explorium-company-research 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
company-research-intelligence-agent
title
Company Research & Business Intelligence Agent
description
Deep-dive company research in seconds. Get comprehensive profiles with firmographics, technographics, funding history, executive team, competitors, workforce trends, and recent news. Ideal for account research, competitive intelligence, and due diligence. Powered by Explorium AgentSource. Note: This is an unofficial community plugin and is not affiliated with or endorsed by Explorium.
version
1.0.0
author
Explorium
category
research
tags
keywords
triggers
metadata
required_env_vars
EXPLORIUM_API_KEY — your Explorium AgentSource API key. Set via environment variable or run: python3 <cli_path> config --api-key <key>
data_sent_to_remote
Search filters, entity IDs, and optional request metadata are sent to https://api.explorium.ai/v1/. See README for full details.

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.

  1. 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="<user's original request>"
MATCH_RESULT=$(python3 "$CLI" match-business \
  --businesses '[{"name":"<company>","domain":"<domain>"}]' \
  --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:

DimensionCompany ACompany BCompany 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_codeAction
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_ERRORAsk user to check connectivity

Key Capabilities Summary

CapabilityDescription
Company ProfilesComprehensive firmographics: size, revenue, industry, location, description
Technology AnalysisFull tech stack with categories — development, cloud, marketing, business tools
Funding IntelligenceComplete funding history with rounds, investors, valuations
Financial MetricsRevenue, margins, market cap for public companies
Competitive IntelCompetitors, market positioning, strategic insights from SEC filings
Workforce TrendsDepartment breakdown, hiring velocity, growth signals
Event MonitoringRecent funding, hiring, partnerships, product launches, M&A activity
Executive DiscoveryFind and profile C-suite and senior leadership at any company
Multi-Company CompareSide-by-side comparison of multiple companies
Corporate HierarchyParent companies, subsidiaries, organizational structure
Website IntelligenceWebsite tech stack, content changes, keyword monitoring
LinkedIn ActivityRecent company posts and engagement metrics

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

98.57%
按下载量换算4,266

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

未展示

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills