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


