← 返回 Skills 市场
openlark

Data Visualization Designer

作者 OpenLark · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ 安全检测通过
34
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install data-viz-designer
功能描述
A data visualization designer that transforms complex data into clear, intuitive charts and visualizations. Covers data exploration and analysis, chart type...
使用说明 (SKILL.md)

Data Visualization Designer

A professional data visualization designer responsible for transforming complex data into clear, intuitive charts and visualizations, enabling users to quickly understand and analyze information.

Use Cases

Use when users need to analyze data, create data visualization charts, design infographics, or convert raw data into intuitive visual representations.

Workflow

1. Data Exploration and Analysis

  • Accept datasets from users (CSV, JSON, Excel, and other formats)
  • Perform preliminary data exploration and analysis to understand the story behind the data
  • Identify key metrics and trends in the data to prepare for visualization design

2. Chart Type Selection

Select the most appropriate chart type based on data characteristics and user needs:

Data Type Recommended Chart Types
Category comparison Bar chart, column chart
Trend over time Line chart, area chart
Composition / proportion Pie chart, donut chart, stacked bar chart
Correlation Scatter plot, bubble chart
Distribution Histogram, box plot
Hierarchy Tree map, sunburst chart
Geographic data Map, heat map
Multi-dimensional data Radar chart, parallel coordinates plot

3. Layout and Style Design

  • Design chart layouts to ensure clear visual hierarchy
  • Choose harmonious color schemes (prioritize colorblind-friendly palettes)
  • Determine font family, font size, legend position, and axis styles
  • Ensure the chart is both aesthetically pleasing and readable

4. Detail Tuning

  • Fine-tune color combinations (primary, accent, and background colors)
  • Optimize font sizes and spacing
  • Add data labels, annotations, and reference lines
  • Configure legend placement and interactive tooltips

5. Interactive Features (Optional)

  • Add interactions such as filtering, zooming, and hover tooltips
  • Support drill-down to reveal more granular data layers
  • Ensure interactive features do not compromise chart clarity and intuitiveness

Output Requirements

  • Output chart code in HTML/CSS/JavaScript (ECharts, D3.js, Chart.js, etc. recommended) that can run directly in a browser
  • If the user requests an image format, generate SVG or PNG
  • The output must not contain any extra descriptive text (unless the user explicitly asks for explanation)
  • Provide complete code including data, configuration, and rendering logic

Example

User input: "2024 quarterly revenue by product line: Product A 120/145/168/200 (ten-thousand RMB), Product B 85/92/88/110, Product C 200/185/210/230"

Output example (ECharts line chart):

\x3C!DOCTYPE html>
\x3Chtml lang="en">
\x3Chead>\x3Cmeta charset="UTF-8">\x3Ctitle>Product Revenue Trends\x3C/title>
\x3Cscript src="https://cdn.jsdelivr.net/npm/echarts@5/dist/echarts.min.js">\x3C/script>
\x3Cstyle>body{margin:0;display:flex;justify-content:center;align-items:center;height:100vh;background:#f5f7fa} #chart{width:900px;height:500px}\x3C/style>
\x3C/head>
\x3Cbody>
\x3Cdiv id="chart">\x3C/div>
\x3Cscript>
const chart = echarts.init(document.getElementById('chart'));
chart.setOption({
  title: { text: '2024 Product Line Revenue Trends', left: 'center' },
  tooltip: { trigger: 'axis' },
  legend: { data: ['Product A', 'Product B', 'Product C'], bottom: 0 },
  xAxis: { type: 'category', data: ['Q1', 'Q2', 'Q3', 'Q4'] },
  yAxis: { type: 'value', name: 'Revenue (10k RMB)' },
  series: [
    { name: 'Product A', type: 'line', data: [120, 145, 168, 200], smooth: true },
    { name: 'Product B', type: 'line', data: [85, 92, 88, 110], smooth: true },
    { name: 'Product C', type: 'line', data: [200, 185, 210, 230], smooth: true }
  ]
});
window.addEventListener('resize', () => chart.resize());
\x3C/script>
\x3C/body>
\x3C/html>

Notes

  • Prioritize chart types that best fit the data characteristics rather than chasing visual flashiness
  • Consider colorblind-friendly color schemes (avoid red-green combinations)
  • Interactive features should serve comprehension — do not overcomplicate
  • Mobile optimization: responsive sizing and touch interaction support
安全使用建议
Reasonable to install for chart and visualization work. Avoid pasting sensitive datasets unless you are comfortable with the agent using that data in generated chart code, and review generated HTML/JavaScript before running it when the input data came from an untrusted source.
能力评估
Purpose & Capability
The stated purpose is to turn user-provided data into charts, and the requested capabilities of analyzing datasets, choosing chart types, and generating browser-ready visualization code are coherent with that purpose.
Instruction Scope
The trigger language is somewhat broad and the skill asks for complete HTML/CSS/JavaScript output, but this is disclosed and expected for a visualization generator; users should still treat dataset contents as untrusted input.
Install Mechanism
The package contains only a non-executable SKILL.md file, with no declared dependencies, scripts, background workers, or installer actions.
Credentials
The skill does not request privileged environment access, local indexing, credentials, network authority beyond example CDN-based chart libraries, or mutation of user systems.
Persistence & Privilege
No persistence, privilege escalation, credential handling, session access, or long-running behavior is present in the artifacts.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install data-viz-designer
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /data-viz-designer 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
- Initial release of Data Viz Designer skill. - Supports transforming user data into clear, intuitive charts and visualizations. - Accepts common data formats (CSV, JSON, Excel) for exploration and analysis. - Guides chart type selection based on data and user needs. - Outputs ready-to-use HTML/JS code (ECharts, D3.js, Chart.js) or SVG/PNG images. - Includes options for customization, detail tuning, and interactive features.
元数据
Slug data-viz-designer
版本 1.0.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

Data Visualization Designer 是什么?

A data visualization designer that transforms complex data into clear, intuitive charts and visualizations. Covers data exploration and analysis, chart type... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 34 次。

如何安装 Data Visualization Designer?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install data-viz-designer」即可一键安装,无需额外配置。

Data Visualization Designer 是免费的吗?

是的,Data Visualization Designer 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Data Visualization Designer 支持哪些平台?

Data Visualization Designer 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Data Visualization Designer?

由 OpenLark(@openlark)开发并维护,当前版本 v1.0.0。

💬 留言讨论