What problem does it solve? Frontend developers repeatedly write boilerplate components, manually audit bundle sizes, and set up project scaffolding from scratch, which slows down feature delivery and invites inconsistent patterns. ## Core Features & Use Cases - Component Generator: Scaffolds React and TypeScript components with configurable templates and built-in quality checks via scripts/component_generator.py. - Bundle Analyzer: Inspects a target project path and reports findings with optional JSON output via scripts/bundle_analyzer.py. - Frontend Scaffolder: Automates project setup tasks through scripts/frontend_scaffolder.py. - Reference Guides: Provides React patterns, Next.js optimization, and frontend best practices documentation for code reviews and implementation decisions. - Use Case: When building a new Next.js feature, generate the component structure, consult the React patterns reference for state management guidance, then run the bundle analyzer before shipping. ## Quick Start Ask the assistant to generate a new React component in your project and then run the bundle analyzer on the app directory to review optimization recommendations.