ClawKit Logo
ClawKitReliability Toolkit
Back to Registry
Official Verified

company-research-intelligence-agent

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.

skill-install — Terminal

Install via CLI (Recommended)

clawhub install openclaw/skills/skills/haroexplorium/explorium-company-research
Or

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="<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?"

Metadata

Stars2387
Views0
Updated2026-03-09
View Author Profile
AI Skill Finder

Not sure this is the right skill?

Describe what you want to build — we'll match you to the best skill from 16,000+ options.

Find the right skill
Add to Configuration

Paste this into your clawhub.json to enable this plugin.

{
  "plugins": {
    "official-haroexplorium-explorium-company-research": {
      "enabled": true,
      "auto_update": true
    }
  }
}

Tags

#company research#business intelligence#competitive intelligence#account research#due diligence#market research#technographics#firmographics#company profile#market analysis
Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.