Generate clean, minimal charts with shadcn-inspired grayscale styling using QuickChart.io (no dependencies needed).
Works with
AI-first code editor with Composer
Before installing skills in Cursor, ensure your development environment meets these requirements:
node --versionchartExecute the skills CLI command in your project's root directory to begin installation:
Fetches chart from pvergaraf/chart-skill and configures it for Cursor.
The CLI shows a list of agents. Use arrow keys and space to select Cursor:
Confirm successful installation by checking the skill directory location:
Restart Cursor to activate chart. Access via /chart in your agent's command palette.
We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.
Skills execute code in your environment. Always review source, verify the publisher, and test in isolation before production.
Submit your Claude Code skill and start earning
Create detailed user stories, acceptance criteria, and feature specs
Example
Generate user stories for 'password reset feature' with acceptance criteria, edge cases, and test scenarios
Reduce spec writing time by 50%, ensure comprehensive coverage
Research competitors, compare features, identify gaps
Example
Analyze 5 competitor products, create feature comparison matrix, suggest differentiation opportunities
Complete competitive research in 2 hours instead of 2 days
Evaluate features using frameworks (RICE, ICE, Kano) and create prioritized backlogs
Example
Score 20 feature ideas using RICE framework, generate prioritized roadmap with rationale
0
total installs
0
this week
0
upvotes
Run in your terminal
0
installs
0
this week
—
stars
Generate clean, minimal charts with shadcn-inspired grayscale styling using QuickChart.io (no dependencies needed).
Users can describe charts naturally:
/chart show me monthly revenue: Jan $12k, Feb $15k, Mar $18k, Apr $14k
/chart compare Q4 performance - Revenue was 450, Costs 320, Profit 130
/chart visualize team breakdown: Engineering 45%, Product 25%, Design 20%, Operations 10%
/chart create an area chart of daily active users over the past week
/chart horizontal bar ranking: Chile 89, Mexico 76, Peru 65, Colombia 58
/chart plot this data as a line chart [paste CSV or JSON]
Label1 Value1, Label2 Value2, Label3 Value3
/chart line chart from /path/to/data.csv
| Type | Keywords | Description |
|---|---|---|
| Bar (vertical) | bar, bar chart |
Vertical bars |
| Bar (horizontal) | horizontal bar, hbar |
Horizontal bars |
| Line | line, line chart |
Time series, trends |
| Area | area, area chart |
Filled line chart |
| Pie | pie, pie chart |
Proportions |
| Doughnut | doughnut, donut |
Ring-style proportions |
title "My Chart Title"save to /path/to/chart.png (default: ~/Downloads/chart_YYYYMMDD_HHMMSS.png)size 800x600 (width x height in pixels, default: 600x400)| Color | Hex | Usage |
|---|---|---|
| zinc-900 | #18181B |
Primary series |
| zinc-700 | #3F3F46 |
Secondary series |
| zinc-500 | #71717A |
Third series |
| zinc-400 | #A1A1AA |
Fourth series |
| zinc-300 | #D4D4D8 |
Fifth series |
| zinc-200 | #E4E4E7 |
Sixth series |
| zinc-100 | #F4F4F5 |
Grid lines |
When the user requests a chart:
Parse the request to identify:
~/Downloads/chart_$(date +%Y%m%d_%H%M%S).png)Build the Chart.js configuration using this shadcn-style template:
{
"type": "bar",
"data": {
"labels": ["A", "B", "C"],
"datasets": [{
"data": [10, 20, 30],
"backgroundColor": "#18181B",
"borderRadius": 4
}]
},
"options": {
"layout": {
"padding": { "top": 20, "right": 30, "bottom": 20, "left": 20 }
},
"plugins": {
"title": {
"display": true,
"text": "Chart Title",
"align": "start",
"font": { "size": 16, "weight": "600", "family": "Inter, system-ui, sans-serif" },
"color": "#18181B",
"padding": { "bottom": 20 }
},
"legend": { "display": false },
"datalabels": { "display": false }
},
"scales": {
"y": {
"beginAtZero": true,
"border": { "display": false },
"grid": { "color": "#F4F4F5" },
"ticks": { "color": "#71717A", "padding": 10, "font": { "size": 11 } }
},
"x": {
"border": { "display": false },
"grid": { "display": false },
"ticks": { "color": "#71717A", "padding": 10, "font": { "size": 11 } }
}
}
}
}
curl -X POST https://quickchart.io/chart \
-H 'Content-Type: application/json' \
-d '{
"version": "4",
"backgroundColor": "white",
"width": 600,
"height": 400,
"chart": CHART_CONFIG_JSON
}' \
--output ~/Downloads/chart_$(date +%Y%m%d_%H%M%S).png
{
"type": "bar",
"data": {
"labels": ["A", "B", "C"],
"datasets": [{
"data": [10, 20, 30],
"backgroundColor": "#18181B",
"borderRadius": 4
}]
}
}
{
"type": "bar",
"data": {
"labels": ["A", "B", "C"],
"datasets": [{
"data": [10, 20, 30],
"backgroundColor": "#18181B",
"borderRadius": 4
}]
},
"options": {
"indexAxis": "y"
}
}
{
"type": "line",
"data": {
"labels": ["Jan", "Feb", "Mar"],
"datasets": [{
"data": [10, 20, 30],
"borderColor": "#18181B",
"borderWidth": 2,
"tension": 0.3,
"pointRadius": 0,
"fill": false
}]
Make data-driven prioritization decisions faster
Draft PRDs, status updates, and stakeholder presentations
Example
Create executive summary of Q3 roadmap, monthly progress report, feature launch announcement
Save 3-5 hours/week on communication overhead
Prerequisites
Time Estimate
30-60 minutes to see productivity improvements
Steps
Common Pitfalls
✓ Do
✗ Don't
💡 Pro Tips
✓ Use when
Use for user story writing, competitive research, roadmap prioritization, stakeholder communication, and PRD drafting. Best for reducing repetitive documentation and research work.
✗ Avoid when
Avoid for strategic product vision (requires deep customer empathy), pricing decisions (needs market and financial expertise), or when face-to-face customer discovery is more valuable than speed.
mattpocock/skills
parcadei/continuous-claude-v3
cursor/plugins
ailabs-393/ai-labs-claude-skills
ailabs-393/ai-labs-claude-skills
pproenca/dot-skills
chart has been reliable in day-to-day use. Documentation quality is above average for community skills.
Solid pick for teams standardizing on skills: chart is focused, and the summary matches what you get after install.
chart fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
I recommend chart for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
Registry listing for chart matched our evaluation — installs cleanly and behaves as described in the markdown.
chart reduced setup friction for our internal harness; good balance of opinion and flexibility.
chart has been reliable in day-to-day use. Documentation quality is above average for community skills.
chart reduced setup friction for our internal harness; good balance of opinion and flexibility.
I recommend chart for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
We added chart from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
showing 1-10 of 74