What problem does it solve? After generating components with theming, layout, dashboard, data-viz, and feedback skills, teams still face the manual work of wiring imports, enforcing design token usage, and scaffolding a runnable project. This Skill validates token compliance, generates project scaffolding, and wires components into a working application. ## Core Features & Use Cases - Token Validation: Runs validate_tokens.py to detect hardcoded colors, spacing, and font sizes that should use CSS custom properties, with strict mode and JSON output for CI/CD. - Project Scaffolding: Generates boilerplate for React/Vite, Next.js 14/15, Python FastAPI, or Rust Axum including entry points, theme providers, and build configuration. - Import Chain Wiring: Checks that tokens.css loads first, ThemeProvider wraps the app, and barrel exports exist via check_imports.py and generate_exports.py. - Use Case: After running a skill chain that produced tokens.css, Layout.tsx, KPICard.tsx, and Toast.tsx, use this Skill to validate the CSS, scaffold a Vite + React app, and wire everything into a buildable dashboard. ## Quick Start Assemble the components generated by the theming, layout, and dashboard skills into a working React Vite project and validate that all CSS uses design tokens.