data-analyst

404kidwiz/claude-supercode-skills · updated Apr 8, 2026

MDX-style export adds YAML metadata + attribution linking explainx.ai and this canonical listing URL.

$npx skills add https://github.com/404kidwiz/claude-supercode-skills --skill data-analyst
0 commentsdiscussion
summary

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.

skill.md

Data Analyst

Purpose

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.

When to Use

  • Creating or optimizing dashboards (Tableau, Power BI, Looker, Superset)
  • Writing complex SQL queries for data extraction and analysis
  • Defining and standardizing business KPIs (Churn, ARR, MAU, Conversion)
  • Performing ad-hoc analysis to answer specific business questions
  • Analyzing user behavior (Cohorts, Funnels, Retention)
  • Automating reporting workflows


Core Capabilities

Business Intelligence

  • Designing and building interactive dashboards in BI tools
  • Creating automated reporting pipelines and data refresh schedules
  • Implementing self-service analytics capabilities for business users
  • Developing KPI frameworks and metric definitions

SQL and Data Extraction

  • Writing complex queries with window functions, CTEs, and advanced joins
  • Optimizing query performance for large datasets
  • Creating reusable views and materialized tables
  • Implementing data extraction from multiple data sources

Data Visualization

  • Selecting appropriate chart types for different data stories
  • Designing clear, intuitive dashboard layouts
  • Implementing color schemes and visual hierarchies
  • Creating interactive visualizations for exploration

Business Insights

  • Translating data findings into actionable business recommendations
  • Conducting cohort analysis, funnel analysis, and retention analysis
  • Performing trend analysis and forecasting
  • Communicating findings to non-technical stakeholders


3. Core Workflows

Workflow 1: Dashboard Design & Implementation

Goal: Create a "Sales Performance" dashboard for the executive team.

Steps:

  1. Requirements Gathering

    • Audience: VP of Sales, Regional Managers.
    • Questions to Answer: "Are we hitting target?", "Which region is lagging?", "Who are top reps?"
    • Key Metrics: Total Revenue, % to Quota, YoY Growth, Pipeline Coverage.
  2. 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;
    
  3. Visualization Design (Conceptual)

    • Top Level (KPI Cards): Total Revenue vs Target, YoY Growth %.
    • Trend (Line Chart): Monthly Revenue vs Quota trend line.
    • Breakdown (Bar Chart): Attainment % by Region (Sorted desc).
    • Detail (Table): Top 10 Sales Reps (Revenue, Deal Count, Win Rate).
  4. Implementation & Interactivity

    • Add "Region" and "Date Range" filters.
    • Set up drill-through from Region bar chart to Rep detail list.
    • Add tooltips showing MoM change.
  5. Quality Check

    • Validate numbers against source system (CRM).
    • Check performance (load time < 5s).
    • Verify filter interactions.


Workflow 3: Funnel Analysis (Conversion)

Goal: Identify bottlenecks in the signup flow.

Steps:

  1. Define Steps

    1. Landing Page View
    2. Signup Button Click
    3. Form Submit
    4. Email Confirmation
  2. 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);
    
  3. Calculate Conversion Rates

    • Step 1 to 2: (Step 2 / Step 1) * 100
    • Step 2 to 3: (Step 3 / Step 2) * 100
    • Step 3 to 4: (Step 4 / Step 3) * 100
    • Overall: (Step 4 / Step 1) * 100
  4. Insight Generation

    • "Drop-off from Click to Submit is 60%. This is high. Potential form friction or validation errors."
    • Recommendation: "Simplify form fields or add social login."


Workflow 5: Embedded Analytics (Product Integration)

Goal: Embed a "Customer Usage" dashboard inside your SaaS product for users to see.

Steps:

  1. Dashboard Creation (Parameterized)

    • Create dashboard in BI tool (e.g., Looker/Superset).
    • Add a global parameter customer_id.
    • Filter all charts: WHERE organization_id = {{ customer_id }}.
  2. Security (Row Level Security)

    • Ensure customer_id cannot be changed by the client.
    • Use Signed URLs (JWT) generated by backend.
  3. 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 }
        });
    }, []);
    
  4. Performance Tuning

    • Enable caching on the BI server (5-15 min TTL).
    • Use pre-aggregated tables for the underlying data.


5. Anti-Patterns & Gotchas

❌ Anti-Pattern 1: Pie Chart Overuse

What it looks like:

  • Using a pie chart for 15 different categories.
  • Using a pie chart to compare similar values (e.g., 49% vs 51%).

Why it fails:

  • Human brain struggles to compare angles/areas accurately.
  • Small slices become unreadable.
  • Impossible to see trends.

Correct approach:

  • Use Bar Charts for comparison.
  • Limit Pie/Donut charts to 2-4 distinct categories (e.g., Mobile vs Desktop) where "Part-to-Whole" is the only message.

❌ Anti-Pattern 2: Complex Logic in BI Tool

What it looks like:

  • Creating 50+ calculated fields in Tableau/Power BI with complex IF/ELSE and string manipulation logic.
  • Doing joins and aggregations inside the BI tool layer instead of SQL.

Why it fails:

  • Performance: Dashboard loads slowly as it computes logic on the fly.
  • Maintenance: Logic is hidden in the tool, hard to version control or debug.
  • Reusability: Other tools/analysts can't reuse the logic.

Correct approach:

  • Push logic upstream to the database/SQL layer.
  • Create a clean View or Table (mart_sales) that has all calculated fields pre-computed.
  • BI tool should just visualize the data, not transform it.

❌ Anti-Pattern 3: Inconsistent Metric Definitions

What it looks like:

  • Marketing defines "Lead" as "Email capture".
  • Sales defines "Lead" as "Phone call qualification".
  • Dashboard shows conflicting numbers.

Why it fails:

  • Loss of trust in data.
  • Time wasted reconciling numbers.

Correct approach:

  • Data Dictionary: Document definitions explicitly.
  • Certified Datasets: Use a governed layer (e.g., Looker Explores, dbt Models) where the metric is defined once in code.


7. Quality Checklist

Visual Design:

  • Title & Description: Every chart has a clear title and subtitle explaining what it shows.
  • Context: Numbers include context (e.g., "% growth vs last month", "vs Target").
  • Color: Color is used intentionally (e.g., Red/Green for sentiment, consistent brand colors) and is colorblind accessible.
  • Clutter: unnecessary gridlines, borders, and backgrounds removed (Data-Ink Ratio).

Data Integrity:

  • Validation: Dashboard totals match source system totals (spot check).
  • Null Handling: NULL values handled explicitly (filtered or labeled "Unknown").
  • Filters: Date filters work correctly across all charts.
  • Duplicates: Join logic checked for fan-outs (duplicates).

Performance:

  • Load Time: Dashboard loads in < 5 seconds.
  • Query Cost: SQL queries are optimized (partitions used, select * avoided).
  • Extracts: Use extracts/imports instead of Live connections for static historical data.

Usability:

  • Tooltips: Hover tooltips provide useful additional info.
  • Mobile: Dashboard is readable on mobile/tablet if required.
  • Action: The dashboard answers "So What?" (leads to action).
how to use data-analyst

How to use data-analyst on Cursor

AI-first code editor with Composer

1

Prerequisites

Before installing skills in Cursor, ensure your development environment meets these requirements:

  • Cursor installed and configured on your development machine
  • Node.js version 16.0+ with npm package manager (verify with node --version)
  • Active project directory or workspace where you want to add data-analyst
2

Execute installation command

Execute the skills CLI command in your project's root directory to begin installation:

$npx skills add https://github.com/404kidwiz/claude-supercode-skills --skill data-analyst

The skills CLI fetches data-analyst from GitHub repository 404kidwiz/claude-supercode-skills and configures it for Cursor.

3

Select Cursor when prompted

The CLI will show a list of available agents. Use arrow keys to navigate and space to select Cursor:

◆ Which agents do you want to install to?
│ ── Universal (.agents/skills) ── always included ────
│ • Amp
│ • Antigravity
│ • Cline
│ • Codex
│ ●Cursor(selected)
│ • Cursor
│ • Windsurf
4

Verify installation

Confirm successful installation by checking the skill directory location:

.cursor/skills/data-analyst

Reload or restart Cursor to activate data-analyst. Access the skill through slash commands (e.g., /data-analyst) or your agent's skill management interface.

Security & Verification Notice

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 development environment. Always verify the publisher's identity, review recent commits, and test in isolated environments before production deployment.

List & Monetize Your Skill

Submit your Claude Code skill and start earning

GET_STARTED →

Use Cases

User Story & Requirements Generation

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

Competitive Analysis

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

Roadmap Prioritization

Evaluate features using frameworks (RICE, ICE, Kano) and create prioritized backlogs

Example

Score 20 feature ideas using RICE framework, generate prioritized roadmap with rationale

Make data-driven prioritization decisions faster

Stakeholder Communication

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

Implementation Guide

Prerequisites

  • Claude Desktop or compatible AI client
  • Access to product documentation and roadmap tools (Jira, Notion, etc.)
  • Understanding of product management frameworks (RICE, Jobs-to-be-Done, etc.)
  • Stakeholder contact information and communication channels

Time Estimate

30-60 minutes to see productivity improvements

Installation Steps

  1. 1.Install product management skill
  2. 2.Start with user story generation for known feature
  3. 3.Progress to competitive analysis: research 2-3 competitors
  4. 4.Use for roadmap prioritization: apply RICE/ICE scoring
  5. 5.Draft stakeholder communications and refine based on feedback
  6. 6.Build template library for recurring PM tasks
  7. 7.Share effective prompts with product team

Common Pitfalls

  • Not validating competitive research—verify facts before sharing
  • Accepting user stories without involving engineering team
  • Over-relying on frameworks without qualitative judgment
  • Not customizing outputs to company culture and communication style
  • Skipping stakeholder validation of generated requirements

Best Practices

✓ Do

  • +Validate research and competitive analysis with real data
  • +Collaborate with engineering when generating technical requirements
  • +Customize frameworks and templates to your company context
  • +Use skill for first drafts, refine with stakeholder input
  • +Document successful prompt patterns for PM tasks
  • +Combine AI efficiency with human judgment and intuition

✗ Don't

  • Don't publish competitive analysis without fact-checking
  • Don't finalize user stories without engineering review
  • Don't make prioritization decisions solely on AI scoring
  • Don't skip customer validation of generated requirements
  • Don't ignore company-specific context and culture

💡 Pro Tips

  • Provide context: company goals, constraints, customer feedback
  • Ask for alternatives: 'Show 3 ways to prioritize this roadmap'
  • Request stakeholder-specific formatting: 'Executive summary vs. engineering spec'
  • Use skill for 70% generation + 30% customization to company needs

When to Use This

✓ 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.

Learning Path

  1. 1Basic: user stories, feature specs, status updates
  2. 2Intermediate: competitive analysis, prioritization frameworks, PRDs
  3. 3Advanced: product strategy, go-to-market planning, OKR setting
  4. 4Expert: product vision, market positioning, business model innovation

Discussion

Product Hunt–style comments (not star reviews)
  • No comments yet — start the thread.
general reviews

Ratings

4.749 reviews
  • Olivia Rao· Dec 24, 2024

    I recommend data-analyst for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.

  • Hana Chen· Dec 20, 2024

    data-analyst reduced setup friction for our internal harness; good balance of opinion and flexibility.

  • Valentina Ramirez· Dec 12, 2024

    Registry listing for data-analyst matched our evaluation — installs cleanly and behaves as described in the markdown.

  • Michael Khan· Dec 12, 2024

    Keeps context tight: data-analyst is the kind of skill you can hand to a new teammate without a long onboarding doc.

  • Henry Rao· Nov 15, 2024

    Solid pick for teams standardizing on skills: data-analyst is focused, and the summary matches what you get after install.

  • Rahul Santra· Nov 11, 2024

    Useful defaults in data-analyst — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.

  • Liam Okafor· Nov 11, 2024

    data-analyst has been reliable in day-to-day use. Documentation quality is above average for community skills.

  • Michael Zhang· Nov 3, 2024

    data-analyst is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.

  • Michael Harris· Oct 22, 2024

    Solid pick for teams standardizing on skills: data-analyst is focused, and the summary matches what you get after install.

  • Henry Gill· Oct 6, 2024

    data-analyst is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.

showing 1-10 of 49

1 / 5