Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Generate publication-quality chart images from data. Supports line, bar, area, and point charts. Use when visualizing data, creating graphs, plotting time series, or generating chart images for reports/alerts. Designed for Fly.io/VPS deployments - no native compilation, no Puppeteer, no browser required. Pure Node.js with prebuilt binaries.
.claude/skills/sundial-org-chart-image/SKILL.md| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-01 | ✗→✓ | ▲ Improved | -40% | 0% |
| case-02 | ✗→✓ | ▲ Improved | 39% | 0% |
| case-03 | ✗→✓ | ▲ Improved | -40% | 0% |
| case-07 | ✗→✓ | ▲ Improved | 125% | 0% |
| case-08 | ✗→✓ | ▲ Improved | 12% | 0% |
Generate PNG chart images from data using Vega-Lite. Perfect for headless server environments.
Built for Fly.io / VPS / Docker deployments:
canvas which requires build tools)Alternatives and why they don't work well on Fly:
canvas npm - Requires native compilation, fails on minimal Docker imagesbashcd /data/clawd/skills/chart-image/scripts && npm install
bashnode /data/clawd/skills/chart-image/scripts/chart.mjs \ --type line \ --data '[{"x":"10:00","y":25},{"x":"10:30","y":27},{"x":"11:00","y":31}]' \ --title "Price Over Time" \ --output chart.png
bash# Full data with zoomed Y-axis node /data/clawd/skills/chart-image/scripts/chart.mjs \ --type line \ --data '[...]' \ --title "Elon Posts 34 Tweets This Week" \ --show-change \ --focus-change \ --show-values \ --dark \ --output alert.png # Focus on recent action (last 4 points) node /data/clawd/skills/chart-image/scripts/chart.mjs \ --type line \ --data '[hourly data...]' \ --title "Elon Tweet Odds (24h)" \ --show-change \ --focus-change \ --focus-recent 4 \ --show-values \ --dark \ --output alert-recent.png
| Option | Description | Default | |--------|-------------|---------| | --type | Chart type: line, bar, area, point | line | | --data | JSON array of data points | - | | --spec | Path to full Vega-Lite spec file | - | | --output | Output PNG path | chart.png | | --title | Chart title | - | | --width | Width in pixels | 600 | | --height | Height in pixels | 300 | | --x-field | Field name for X axis | x | | --y-field | Field name for Y axis | y | | --x-title | X axis label | field name | | --y-title | Y axis label | field name | | --color | Line/bar color | #e63946 | | --y-domain | Y scale as "min,max" | auto | | --show-change | Show +/-% change annotation | false | | --focus-change | Zoom Y-axis to 2x data range | false | | --focus-recent N | Show only last N data points | all | | --show-values | Label min/max peak points | false | | --dark | Dark mode theme | false | | --svg | Output SVG instead of PNG | false | | --sparkline | Tiny inline chart (80x20, no axes) | false | | --stacked | Stacked bar chart (requires --color-field) | false | | --color-field | Field name for stack categories | - | | --series-field | Field for multi-series line charts | - |
Compare multiple trends on one chart:
bashnode chart.mjs \ --type line \ --series-field "market" \ --data '[{"x":"Jan","y":10,"market":"A"},{"x":"Jan","y":15,"market":"B"},{"x":"Feb","y":12,"market":"A"},{"x":"Feb","y":18,"market":"B"}]' \ --title "Comparison" \ --output multi.png
Each unique value in --series-field becomes a separate colored line with legend.
Visualize breakdowns by category:
bashnode chart.mjs \ --type bar \ --stacked \ --color-field "category" \ --data '[{"x":"Mon","y":10,"category":"Work"},{"x":"Mon","y":5,"category":"Personal"}]' \ --title "Hours by Category" \ --output stacked.png
Data needs three fields: x (groups), y (values), and the color-field (stack categories).
Tiny charts for embedding in text summaries:
bashnode chart.mjs \ --sparkline \ --data '[{"x":"1","y":10},{"x":"2","y":15},{"x":"3","y":12}]' \ --output spark.png
Sparklines are 80x20 by default (override with --width / --height), transparent background, no axes.
Use --dark for dark mode. Recommended to auto-select based on time:
--darkbashecho '[{"x":"A","y":1},{"x":"B","y":2}]' | node chart.mjs --output out.png
For advanced charts, pass a full Vega-Lite spec:
bashnode chart.mjs --spec my-spec.json --output custom.png
Other measured skills in the registry, with their headline benchmark lift.