skills$openclaw/research-company
tomstools114.5k

by tomstools11

research-company – OpenClaw Skill

research-company is an OpenClaw Skills integration for coding workflows. B2B company research producing professional PDF reports. Use when asked to research a company, analyze a business, create an account profile, or generate market intelligence from a company URL. Outputs a beautifully formatted, downloadable PDF report.

4.5k stars5.3k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding

Skill Snapshot

nameresearch-company
descriptionB2B company research producing professional PDF reports. Use when asked to research a company, analyze a business, create an account profile, or generate market intelligence from a company URL. Outputs a beautifully formatted, downloadable PDF report. OpenClaw Skills integration.
ownertomstools11
repositorytomstools11/research-company
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @tomstools11/research-company
last updatedFeb 7, 2026

Maintainer

tomstools11

tomstools11

Maintains research-company in the OpenClaw Skills directory.

View GitHub profile
File Explorer
6 files
.
references
data-schema.md
7.4 KB
scripts
generate_report.py
19.0 KB
_meta.json
467 B
SKILL.md
2.6 KB
SKILL.md

name: research-company description: B2B company research producing professional PDF reports. Use when asked to research a company, analyze a business, create an account profile, or generate market intelligence from a company URL. Outputs a beautifully formatted, downloadable PDF report.

Company Research

Generate comprehensive Account Research Reports as professionally styled PDFs from a company URL.

Workflow

  1. Research the company (web fetch + searches)
  2. Build JSON data structure
  3. Generate PDF via scripts/generate_report.py
  4. Deliver PDF to user

Phase 1: Research (Parallel)

Execute these searches concurrently to minimize context usage:

WebFetch: [company URL]
WebSearch: "[company name] funding news 2024"
WebSearch: "[company name] competitors market"
WebSearch: "[company name] CEO founder leadership"

Extract from website: company name, industry, HQ, founded, leadership, products/services, pricing model, target customers, case studies, testimonials, recent news.

Phase 2: Build Data Structure

Create JSON matching this schema (see references/data-schema.md for full spec):

{
  "company_name": "...",
  "source_url": "...",
  "report_date": "January 20, 2026",
  "executive_summary": "3-5 sentences...",
  "profile": { "name": "...", "industry": "...", ... },
  "products": { "offerings": [...], "differentiators": [...] },
  "target_market": { "segments": "...", "verticals": [...] },
  "use_cases": [{ "title": "...", "description": "..." }],
  "competitors": [{ "name": "...", "strengths": "...", "differentiation": "..." }],
  "industry": { "trends": [...], "opportunities": [...], "challenges": [...] },
  "developments": [{ "date": "...", "title": "...", "description": "..." }],
  "lead_gen": { "keywords": {...}, "outreach_angles": [...] },
  "info_gaps": ["..."]
}

Phase 3: Generate PDF

# Install if needed
pip install reportlab

# Save JSON to temp file
cat > /tmp/research_data.json << 'EOF'
{...your JSON data...}
EOF

# Generate PDF
python3 scripts/generate_report.py /tmp/research_data.json /path/to/output/report.pdf

Phase 4: Deliver

Save PDF to workspace folder and provide download link:

[Download Company Research Report](computer:///sessions/.../report.pdf)

Quality Standards

  • Accuracy: Base claims on observable evidence; cite sources
  • Specificity: Include product names, metrics, customer examples
  • Completeness: Note gaps as "Not publicly available"
  • No fabrication: Never invent information

Resources

  • scripts/generate_report.py - PDF generator (uses reportlab)
  • references/data-schema.md - Full JSON schema with examples
README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

FAQ

How do I install research-company?

Run openclaw add @tomstools11/research-company in your terminal. This installs research-company into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/tomstools11/research-company. Review commits and README documentation before installing.