What problem does it solve? Turning raw data from integrations, databases, APIs, or CSV files into a polished interactive visualization app normally requires wiring up data fetching, chart libraries, layouts, and export controls by hand. This Skill automates that entire workflow, producing a complete React app with charts, KPI cards, data tables, and print-ready exports. ## Core Features & Use Cases - Three App Types: Classifies requests into Dashboards (KPI cards + chart grids), Analysis Reports (narrative layout with embedded charts), or Dataset Explorers (filter sidebar + reactive tables). - Internal Data Fetching: Connects to integrations (Stripe, Google Analytics, Linear), app databases via Drizzle ORM, CSV files via PapaParse, or direct REST APIs without requiring separate data-query steps. - Contract-First Backend: Uses an OpenAPI spec with codegen to generate typed React Query hooks, plus DB-backed caching for slow or rate-limited endpoints. - Use Case: Ask for a dashboard showing Stripe revenue, and the Skill scaffolds the project, connects the integration, implements API routes, and delegates the frontend to a design subagent producing a filterable, exportable analytics dashboard. ## Quick Start Create a sales analytics dashboard from my Stripe data with revenue trends, KPI cards, and a filterable transactions table.