Provides business intelligence and data analysis expertise specializing in SQL, dashboard design, and metric-driven insights. Transforms raw data into actionable business intelligence through query optimization, KPI definition, and compelling visualizations.
Works with
AI-first code editor with Composer
Before installing skills in Cursor, ensure your development environment meets these requirements:
node --versiondata-analystExecute the skills CLI command in your project's root directory to begin installation:
Fetches data-analyst from 404kidwiz/claude-supercode-skills 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 data-analyst. Access via /data-analyst 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
74
GitHub stars
0
upvotes
Run in your terminal
0
installs
0
this week
74
stars
Provides business intelligence and data analysis expertise specializing in SQL, dashboard design, and metric-driven insights. Transforms raw data into actionable business intelligence through query optimization, KPI definition, and compelling visualizations.
Goal: Create a "Sales Performance" dashboard for the executive team.
Steps:
Requirements Gathering
Data Preparation (SQL)
WITH sales_data AS (
SELECT
r.region_name,
s.sales_rep_name,
DATE_TRUNC('month', o.order_date) as sales_month,
SUM(o.amount) as revenue,
COUNT(DISTINCT o.order_id) as deal_count
FROM orders o
JOIN sales_reps s ON o.rep_id = s.id
JOIN regions r ON s.region_id = r.id
WHERE o.status = 'closed_won'
AND o.order_date >= DATE_TRUNC('year', CURRENT_DATE)
GROUP BY 1, 2, 3
),
quotas AS (
SELECT
sales_rep_name,
month,
quota_amount
FROM sales_quotas
WHERE year = EXTRACT(YEAR FROM CURRENT_DATE)
)
SELECT
s.*,
q.quota_amount,
(s.revenue / NULLIF(q.quota_amount, 0)) as attainment_pct
FROM sales_data s
LEFT JOIN quotas q ON s.sales_rep_name = q.sales_rep_name
AND s.sales_month = q.month;
Visualization Design (Conceptual)
Implementation & Interactivity
Quality Check
Goal: Identify bottlenecks in the signup flow.
Steps:
Define Steps
SQL Analysis
SELECT
COUNT(DISTINCT CASE WHEN step = 'landing_view' THEN user_session_id END) as step_1_landing,
COUNT(DISTINCT CASE WHEN step = 'signup_click' THEN user_session_id END) as step_2_click,
COUNT(DISTINCT CASE WHEN step = 'form_submit' THEN user_session_id END) as step_3_submit,
COUNT(DISTINCT CASE WHEN step = 'email_confirm' THEN user_session_id END) as step_4_confirm
FROM web_events
WHERE event_date >= DATEADD('day', -30, CURRENT_DATE);
Calculate Conversion Rates
Insight Generation
Goal: Embed a "Customer Usage" dashboard inside your SaaS product for users to see.
Steps:
Dashboard Creation (Parameterized)
customer_id.WHERE organization_id = {{ customer_id }}.Security (Row Level Security)
customer_id cannot be changed by the client.Frontend Integration (React)
import { EmbedDashboard } from '@superset-ui/embedded-sdk';
useEffect(() => {
EmbedDashboard({
id: "dashboard_uuid",
supersetDomain: "https://superset.mycompany.com",
mountPoint: document.getElementById("dashboard-container"),
fetchGuestToken: () => fetchGuestTokenFromBackend(),
dashboardUiConfig: { hideTitle: true, hideTab: true }
});
}, []);
Performance Tuning
What it looks like:
Why it fails:
Correct approach:
What it looks like:
IF/ELSE and string manipulation logic.Why it fails:
Correct approach:
mart_sales) that has all calculated fields pre-computed.What it looks like:
Why it fails:
Correct approach:
Visual Design:
Data Integrity:
NULL values handled explicitly (filtered or labeled "Unknown").Performance:
Usability:
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
I recommend data-analyst for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
data-analyst reduced setup friction for our internal harness; good balance of opinion and flexibility.
Registry listing for data-analyst matched our evaluation — installs cleanly and behaves as described in the markdown.
Keeps context tight: data-analyst is the kind of skill you can hand to a new teammate without a long onboarding doc.
Solid pick for teams standardizing on skills: data-analyst is focused, and the summary matches what you get after install.
Useful defaults in data-analyst — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
data-analyst has been reliable in day-to-day use. Documentation quality is above average for community skills.
data-analyst is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
Solid pick for teams standardizing on skills: data-analyst is focused, and the summary matches what you get after install.
data-analyst is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
showing 1-10 of 49