Visualise the result of an analysis as a chart (line, bar, area, scatter, etc.). Use when the user asks to "plot...", "chart...", "show me the trend of...", "visualise...", or when a numerical result has more than ~10 rows and would be easier to read as a picture. Produces an image file plus the script that generated it.
70
86%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
Passed
No findings from the security scan
Repeatable SOP for turning a result set into a chart that actually communicates the point.
Match chart type to question. Decide before drawing:
| Question shape | Chart |
|---|---|
| "How does X change over time?" | Line (single series) or multi-line |
| "Composition / share of total" | Stacked bar, or 100% stacked area |
| "Comparison across a small set of categories" | Bar (horizontal if labels are long) |
| "Relationship between two numeric variables" | Scatter |
| "Distribution of a single variable" | Histogram or box plot |
| "Cumulative total" | Area |
If none fit, ask the user which view they want — do not default to "any chart will do".
Prepare the data. The query result from the [[sql-analysis]] Skill should
already be tidy (one row per data point, one column per dimension). If not,
reshape first using pandas (pivot, melt, groupby). Save the cleaned
frame to knowledge/cache/<topic>.csv so it can be re-rendered.
Render with matplotlib. Write the script to a file under
scratch/charts/<topic>.py and execute it via shell_run. Conventions:
Active users (count),
Date (UTC)).knowledge/style.md.bbox_inches='tight', dpi=150) under
knowledge/charts/<topic>.png.Show and explain. In the assistant reply, link the saved image with a
markdown image embed () and write
2–3 sentences interpreting it — what the chart shows, the one thing the
user should take away, and any caveat (incomplete latest data point,
outliers excluded, etc.).
Keep the script reproducible. The chart file is the artefact; the script
under scratch/charts/<topic>.py is the source of truth. If the user asks
for a tweak ("can we use a log y-axis?"), edit the script and re-run — do
not regenerate from scratch.
If the user wants a multi-chart dashboard with narrative around it (e.g. "build
me a weekly product health deck"), spawn the report-writer sub-agent —
this Skill is for individual charts.
1a81e59
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.