← Back to Skills Marketplace
charlie-morrison

client-report-generator

by charlie-morrison · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ Security Clean
112
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install client-report-generator
Description
Generate professional client-facing reports from raw data, metrics, and KPIs. Supports analytics summaries, project status reports, monthly/weekly performanc...
README (SKILL.md)

Client Report Generator

Generate polished, client-ready reports from raw data. Feed it CSV, JSON, analytics exports, or plain text metrics — get back a professional report formatted for delivery.

Workflow

1. Ingest Data

Determine input type and extract data:

  • CSV/TSV file → Read and parse into structured data
  • JSON file/API response → Parse and extract key metrics
  • Pasted text/numbers → Parse inline data
  • URL (dashboard/analytics) → Use web_fetch to extract visible data
  • Multiple sources → Combine into unified dataset

Run scripts/parse_data.py to normalize any structured input:

python3 scripts/parse_data.py \x3Cinput-file> [--format csv|json|auto]

Output: normalized JSON with detected metrics, dimensions, and time ranges.

2. Analyze & Summarize

Before generating the report, analyze the data:

  1. Key metrics — Identify top-line numbers (revenue, growth, conversions, etc.)
  2. Trends — Period-over-period changes (up/down/flat + percentage)
  3. Highlights — Best-performing items, records, milestones
  4. Concerns — Underperforming areas, declining trends, anomalies
  5. Context — Infer reporting period, industry, and audience from data

3. Select Report Template

Choose based on user request or data type. See references/report-templates.md for detailed templates.

Template Best For
Performance Review Monthly/weekly KPI summaries
Campaign Report Marketing campaign results
Project Status Development/project progress updates
Analytics Summary Website/app analytics overview
Custom User-specified structure

4. Generate Report

Structure every report with:

# [Report Title]
**Period:** [date range]  |  **Prepared for:** [client name]  |  **Date:** [today]

## Executive Summary
[2-3 sentences: what happened, key takeaway, recommendation]

## Key Metrics
| Metric | Current | Previous | Change |
|--------|---------|----------|--------|
| ...    | ...     | ...      | +X%    |

## [Detailed Sections — template-specific]

## Highlights & Wins
- ...

## Areas for Improvement
- ...

## Recommendations & Next Steps
1. ...

5. Format Output

Default output: Markdown (clean, portable, renders in most tools)

Other formats on request:

  • HTML → Run scripts/report_to_html.py for styled HTML with inline CSS
  • Plain text → Stripped formatting for email body
  • Structured data → JSON summary of all metrics and analysis
python3 scripts/report_to_html.py \x3Creport.md> [--template default|minimal|branded]

Customization Options

Users can specify:

  • Client name — appears in header and throughout
  • Reporting period — "last week", "March 2026", "Q1 2026"
  • Tone — professional (default), friendly, executive-brief
  • Sections — include/exclude specific sections
  • Branding — company name, colors (for HTML output)
  • Comparison — vs previous period, vs target/goal, vs benchmark
  • Charts — include ASCII/text charts for key metrics (when data supports it)
  • Language — generate in specified language

Data Handling

  • Automatically detect metric types (currency, percentages, counts, rates)
  • Format numbers appropriately (commas, decimal places, currency symbols)
  • Calculate period-over-period changes when historical data is available
  • Flag statistical anomalies or significant changes (>20% swings)
  • Round appropriately for audience (executives get rounded numbers, analysts get precision)

Tips

  • For executive audiences: lead with the bottom line, keep it to 1 page equivalent
  • For marketing reports: emphasize ROI and conversion metrics
  • For project status: focus on timeline, blockers, and deliverables
  • When data is incomplete: note gaps clearly, don't fabricate numbers
  • Include "So what?" after every metric — explain why the number matters
Usage Guidance
This skill appears to do what it says: it reads user-provided CSV/TSV/JSON files or (if you supply a URL) fetches visible data from web pages, then produces markdown and optional HTML. Before installing or using it, consider: 1) Only provide non-sensitive files or dashboards (the SKILL.md allows web_fetch for URLs). 2) The scripts run locally with Python and will read any input file path you give them — don't point it at system files or secrets. 3) The HTML converter uses simple regex-based markdown handling and does not comprehensively sanitize arbitrary HTML in inputs (avoid feeding untrusted HTML-marked content if you care about XSS-like issues). 4) There are no requested credentials or external installs. If you want extra assurance, review or run the two scripts on sample data in a sandboxed environment before using them with real client data.
Capability Analysis
Type: OpenClaw Skill Name: client-report-generator Version: 1.0.0 The client-report-generator skill bundle is a legitimate tool designed to automate the creation of professional reports from raw data. The included Python scripts, scripts/parse_data.py and scripts/report_to_html.py, use standard libraries to parse structured data and convert Markdown to styled HTML, respectively. The instructions in SKILL.md provide a clear and logical workflow for an AI agent, and there is no evidence of malicious intent, data exfiltration, unauthorized execution, or prompt injection.
Capability Assessment
Purpose & Capability
Name/description match the included assets: two Python scripts implement data parsing and markdown→HTML conversion, templates and instructions cover expected report types. No unexpected env vars, binaries, or remote services are required.
Instruction Scope
SKILL.md stays focused on ingest→analyze→template→generate. It does instruct the agent that URLs may be accepted and to 'Use `web_fetch` to extract visible data' when given dashboard/analytics URLs — this is reasonable for a report tool but implies the agent will fetch remote pages if the user supplies URLs, so users should avoid giving sensitive dashboard links. The instructions also tell the agent to read local files provided as inputs (CSV/JSON), which is expected.
Install Mechanism
There is no install spec — the skill is instruction-only with included Python scripts. No downloads from remote or package installs are present.
Credentials
The skill declares no required environment variables, credentials, or config paths. The code does not reference external secrets or unrelated services.
Persistence & Privilege
always is false and the skill does not request persistent/always-on presence or modify other skills. It is user-invocable and can be called autonomously by agents (platform default), which is normal.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install client-report-generator
  3. After installation, invoke the skill by name or use /client-report-generator
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
Initial release
Metadata
Slug client-report-generator
Version 1.0.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is client-report-generator?

Generate professional client-facing reports from raw data, metrics, and KPIs. Supports analytics summaries, project status reports, monthly/weekly performanc... It is an AI Agent Skill for Claude Code / OpenClaw, with 112 downloads so far.

How do I install client-report-generator?

Run "/install client-report-generator" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is client-report-generator free?

Yes, client-report-generator is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does client-report-generator support?

client-report-generator is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created client-report-generator?

It is built and maintained by charlie-morrison (@charlie-morrison); the current version is v1.0.0.

💬 Comments