From sundial-org-awesome-openclaw-skills-4
Generates professional PDF reports on B2B companies from URLs via web research, JSON structuring, and Python script. Covers profile, products, competitors, industry trends, and lead gen.
npx claudepluginhub joshuarweaver/cascade-ai-ml-agents-misc-2 --plugin sundial-org-awesome-openclaw-skills-4This skill uses the workspace's default tool permissions.
Generate comprehensive Account Research Reports as professionally styled PDFs from a company URL.
Guides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Generates original PNG/PDF visual art via design philosophy manifestos for posters, graphics, and static designs on user request.
Generate comprehensive Account Research Reports as professionally styled PDFs from a company URL.
scripts/generate_report.pyExecute 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.
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": ["..."]
}
# 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
Save PDF to workspace folder and provide download link:
[Download Company Research Report](computer:///sessions/.../report.pdf)
scripts/generate_report.py - PDF generator (uses reportlab)references/data-schema.md - Full JSON schema with examples