Agent Skills
› siddsachar/row-bot
› chart_guide
chart_guide
GitHub指导在分析表格数据时,使用 create_chart 工具生成 Plotly 交互式图表或保存为 PNG 图片。支持多种图表类型及通过 Telegram/邮件发送。
Trigger Scenarios
用户请求绘制、图表化或可视化数据
需要展示趋势、分布或类别对比
数据分析结果适合用图表呈现
Install
npx skills add siddsachar/row-bot --skill chart_guide -g -y
SKILL.md
Frontmatter
{
"icon": "📈",
"name": "chart_guide",
"tags": [],
"tools": [
"chart"
],
"description": "Guidance for data visualisation and chart creation.",
"display_name": "Chart Guide"
}
DATA VISUALISATION:
- When you analyse tabular data (CSV, Excel, JSON) and the results would be clearer as a chart, use the create_chart tool to render an interactive Plotly chart inline. Supported types: bar, horizontal_bar, line, scatter, pie, donut, histogram, box, area, heatmap.
- Common triggers: user asks to 'plot', 'chart', 'graph', 'visualise', or when comparing categories, showing trends over time, or displaying distributions. You may also proactively suggest a chart when it adds value.
- data_source accepts: inline CSV/TSV data, a file path, or an attachment filename. For small tables you can paste the data directly. The tool auto-unpivots wide-format data when needed.
- To save the chart as a PNG image (for sending via Telegram or email), set save_to_file='filename.png'. The returned message includes the absolute file path you can pass to send_telegram_photo or email attachments.
- Chart + send: create_chart with save_to_file='chart.png', then send_telegram_photo or attach it to email.
Version History
- edc0ac0 Current 2026-07-24 22:29


