Token导航 LogoToken导航TokenDH.com
效率需要联网clawhub未标认证来源可访问clear审计通过

client-report-generator客户报告生成器

Agent Skill

client-report-generator 用于补充效率相关能力,适合在 OpenClaw 中需要让 Agent 承接效率相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

3,444

周安装

138

GitHub Stars

公开资料未说明

下载量

1,115
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:client-report-generator(客户报告生成器)
来源仓库:https://github.com/charlie-morrison/client-report-generator
安装命令:
openclaw skills install client-report-generator
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install client-report-generator

简介

client-report-generator 根据 KPI 和数据指标自动生成面向客户的专业分析报告。

  • 适用于定期向客户交付绩效摘要或项目状态更新。
  • 支持分析摘要、月度/周度报告等多种模板,提升沟通效率。
  • 通过 clawhub 安装,建议提前准备数据源格式规范以确保输出准确。
  • 注意原始数据质量直接影响报告可信度,需人工复核关键结论。

SKILL.md

name
client-report-generator
description
Generate professional client-facing reports from raw data, metrics, and KPIs. Supports analytics summaries, project status reports, monthly/weekly performance reviews, and campaign results. Use when asked to create a client report, generate a performance report, summarize metrics for a client, build a weekly/monthly report, create a project status update, format analytics data into a report, or produce a deliverable report from raw data. Triggers on "client report", "performance report", "weekly report", "monthly report", "status report", "generate report from data", "metrics report", "campaign report", "analytics summary".

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 <input-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.

TemplateBest For
Performance ReviewMonthly/weekly KPI summaries
Campaign ReportMarketing campaign results
Project StatusDevelopment/project progress updates
Analytics SummaryWebsite/app analytics overview
CustomUser-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 <report.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

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

73.81%
按下载量换算823

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills