Data Report logo

Data Report

OrganizationPopular
ZJU-REAL
data-report

把 CSV、Excel 或 JSON 数据生成包含 KPI、图表和洞察的完整可视化报告页。当用户说“数据报告、CSV/Excel 转报告、做 KPI 看板、生成可视化报告页”时使用。单张图表用 chart-visualization;信息图或 GIF 动画图表用 infographic。

Overview

PublisherZJU-REAL
RepositoryEasel
Skill namedata-report
Stars
1.2K
Forks
175
Bundled files
2
LicenseApache-2.0
Links
  • Markdown instructions

    A SKILL.md file the model loads on demand, so it only costs tokens when a request actually matches.

  • Works with any LLM

    AI skills are plain Markdown, not provider-specific code, so this works with GPT, Claude, Gemini, Grok, or a local model.

  • 2 bundled files

    Scripts, templates, and references the model can read while it works. Files are read-only and never executed.

  • Open source

    Published by ZJU-REAL on GitHub. Read the source before you install it.

Installation

Install the Data Report AI skill in TypingMind to use it with any LLM, or drop it into another agent that reads SKILL.md.

1

Install in TypingMind

TypingMind installs a skill straight from its GitHub folder — it reads SKILL.md, bundles the resource files, and stores the result locally.

  1. Open the app and go to Plugins → Skills.
  2. Choose "Install from GitHub".
  3. Paste the skill folder URL below and confirm.
  4. Enable the skill in any chat where you want it available.
Plugins → Skills → Add skill → From GitHub URL, then paste the folder URL and press Continue.
2

Install in another agent

Any agent that reads the Agent Skills format can use this skill — copy the folder into that agent's skills directory.

Claude Code — .claude/skills
git clone --depth 1 https://github.com/ZJU-REAL/Easel.git /tmp/Easel
mkdir -p .claude/skills
cp -r /tmp/Easel/skills/openclaw/data-report .claude/skills/data-report
Restart Claude Code after copying so it picks up the new skill.

Use it in TypingMind

Enable Data Report in any TypingMind chat and the model takes it from there. Its name and description sit in the system prompt, and the moment a request matches, the model loads the full instructions itself — you never invoke it by hand, and it costs no tokens until it is actually used.

The model loads Data Report on its own as soon as a request matches it.

Works with any AI model

AI skills are plain Markdown instructions rather than provider-specific code, so Data Report is not tied to the model it was written for. Install it once in TypingMind and use it with GPT-5, Claude, Gemini, Grok, DeepSeek, Mistral, Llama, or a local model you run yourself — all on your own API keys.

  • Loaded only when it is needed

    The system prompt carries just the name and description. The instructions are fetched on the first matching request, so an idle skill costs nothing.

  • Switch models mid-chat

    Because the skill is instructions rather than code, changing model does not break it — the next model reads the same SKILL.md.

Skill instructions

This is the SKILL.md content the model loads. Read it before installing — a skill is instructions your model will follow.

数据可视化报告

你是一名数据可视化专家。把用户提供的 CSV/Excel/JSON 数据,转成一份自包含的 HTML 可视化报告(KPI 卡片 + 图表 + 数据洞察 + 数据表)。

数据读取、聚合、出图、HTML 组装都由 scripts/report.py 确定性完成, 你只负责"写洞察文字"这一需要理解的环节,不要手算聚合、手拼图表。

与其他图表 SKILL 的区别

三者都能"生成图表",但机制与产物不同,按需求路由:

  • data-report(本 SKILL) = 输入 CSV/Excel/JSON,产出整页可视化报告(KPI 卡 + 多图 + 洞察 + 表格)。要一份完整报告页时用它。
  • chart-visualization = 调 AntV 远程 API,产出单张静态图片 URL(25+ 类型)。只要一张标准统计图、直接拿图片链接时用它。
  • infographic = 本地 JS 渲染,产出信息图 / GIF 动画图表。要结构化信息图或带动画的 GIF/MP4 时用它。

输入

  • 数据文件:.csv / .json / .xlsx(Excel 需环境有 openpyxl,缺失时脚本会提示)
  • 可选:报告标题、想突出的 KPI 列名

输出

  • 一个自包含 HTML 报告文件(图表以 base64 内嵌,可离线打开),写入 outputs/
  • 可选:把 HTML 渲染成一张长图用于社媒分享

执行步骤

1. 读数据概览(供你写洞察)

bash
python skills/openclaw/data-report/scripts/report.py analyze <数据文件>

返回 JSON:行列数、每列类型与缺失、数值列的 min/max/mean/median/sum/std、 每个类别列的 Top 5。据此判断数据讲了什么,为第 3 步准备洞察文字。

2. 生成报告 HTML

bash
python skills/openclaw/data-report/scripts/report.py report <数据文件> \
  -o outputs/主题名/report.html \
  --title "报告标题" \
  --kpi 列名1 列名2         # 可选,不给则自动挑数值列

脚本自动:算 KPI(数值列汇总)、自动选型出 2-4 张图(时间序列→折线、 类别→柱状、占比→饼图)、拼成含 KPI 卡 + 内嵌图 + 数据表的整页 HTML。 matplotlib 用 Agg 后端并已配好中文字体,不会乱码。

3. 补写洞察文字(可选但推荐)

基于第 1 步的概览,在生成的 HTML 里补 3-5 条洞察(emoji 开头、像产品周报: 趋势、异常、对比、行动建议)。用 Edit 在报告的洞察区插入即可——数据都是 真实的,不要捏造数字,只做解读。

4. 渲染成长图分享(可选)

bash
python skills/shared/scripts/render_card.py \
  --html outputs/主题名/report.html \
  --out outputs/主题名/report.png \
  --full-page --width 1080

Profile 感知

  • 有 Profile:从 style.md 读品牌主色,用 Edit 改 HTML 里 --main 变量统一配色。
  • 无 Profile:用脚本默认专业配色。

要点

  • 必须用脚本解析真实数据,KPI 与图表由脚本从数据算出,不要手写数值。
  • 洞察是你唯一"创作"的部分,其余都走脚本保证确定性。
  • 无数值列时脚本仍出数据表(会打印 WARN),报告依然可用。

Bundled files

The model reads these on demand while the skill is loaded. They are exposed as readable files and are never executed.

Frequently asked questions

What does the Data Report AI skill do?

把 CSV、Excel 或 JSON 数据生成包含 KPI、图表和洞察的完整可视化报告页。当用户说“数据报告、CSV/Excel 转报告、做 KPI 看板、生成可视化报告页”时使用。单张图表用 chart-visualization;信息图或 GIF 动画图表用 infographic。

Why use Data Report on TypingMind?

Because you install it once and use it with any model. Data Report is plain Markdown rather than provider-specific code, so the same skill runs on GPT-5, Claude, Gemini, Grok, or a local model — and you can switch model mid-chat without it breaking. TypingMind runs on your own API keys, so you pay providers directly instead of a per-seat subscription, and your skills and chats stay in your own storage.

How do I install Data Report in TypingMind?

Open Plugins → Skills → Install from GitHub in TypingMind and paste https://github.com/ZJU-REAL/Easel/tree/main/skills/openclaw/data-report. TypingMind reads its SKILL.md and bundles its files and installs it as a skill you can enable per chat.

Which AI models can use Data Report?

Any model you connect in TypingMind. AI skills are plain Markdown instructions rather than provider-specific code, so GPT, Claude, Gemini, Grok, and local models can all load this skill when a request matches it.

How many AI models can I use with Data Report?

As many as you like. As long as a model supports skills, you can use Data Report with it — GPT, Claude, Gemini, Grok, DeepSeek, Mistral, Llama and more — all on TypingMind with your own API keys.

Is the Data Report AI skill free?

Yes. It is published on GitHub by ZJU-REAL under the Apache-2.0 license. You only pay your own AI provider for the tokens you use.

What are AI skills?

An AI skill is a reusable instruction bundle that teaches an AI model how to do one specific task. It follows the open Agent Skills format: a SKILL.md file with a name and description, plus any scripts, templates or reference files the model may need. The model reads the instructions only when your request matches the skill, so an installed skill costs nothing until it is used.

How are AI skills different from plugins or MCP servers?

A plugin or MCP server gives a model new tools to call — code that runs somewhere and returns a result. An AI skill gives the model knowledge and process instead: how to approach a task, which steps to follow, what good output looks like. Skills are plain Markdown, so they need no server, no API key and no runtime, and they work with any model.

View all

Set up your own AI workspace now

Get notified about new features and future giveaways by subscribing to our newsletter 👇