agentsclimarketplace

Chart visualization

Skill yrris/pro-agent/cognition/runtime/skills/chart-visualization

多智能体应用与任务执行平台

Install
npx -y skills add yrris/pro-agent --skill chart-visualization

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

2 things to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
  • 23 stars23 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

把数据渲染成图表:产出 PNG 图片与 ECharts option JSON(柱状/折线/饼图)。

SKILL.md

0.9 KB, as published. Nobody here has run it

图表可视化

把结构化数据渲染成图表。适用于"画个图/可视化一下/对比展示"类请求, 常与 data-analysis 的查询结果配合(先查数,再画图)。

用法

script_runner(
  skill="chart-visualization",
  script="render.py",
  script_args={
    "type": "bar",                      # bar | line | pie
    "title": "各类别销售额",
    "labels": ["水果", "蔬菜"],          # x 轴/扇区标签
    "series": [{"name": "金额", "data": [30, 5]}]   # 一或多组数据(pie 只取第一组)
  }
)

产出(双产物)

  • chart.png:渲染好的图片(产物区可直接预览)。
  • echarts-option.json:等价的 ECharts option(前端/网页可直接复用)。

数据必须真实来源于对话/分析结果,不要编造数字。

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.