What problem does it solve? Building React interfaces with HeroUI v2 requires correct provider setup, Tailwind plugin configuration, and knowledge of the v2-specific flat props API, which differs significantly from v3 and causes frequent integration errors. ## Core Features & Use Cases - Component Implementation Guidance: Covers 47 HeroUI v2 components (Button, Modal, Card, Table, etc.) with correct flat props, onPress handlers, and classNames slot styling. - Setup & Theming: Provides installation steps, HeroUIProvider configuration, Tailwind v3/v4 plugin setup, dark mode via next-themes, and custom semantic color themes. - Live Docs Fetching: Scripts retrieve up-to-date component documentation from v2.heroui.com and list available components. - Use Case: When adding a Modal with form validation to a Next.js app, the Skill ensures you wrap the app in HeroUIProvider, use isOpen/onOpenChange props, and avoid v3 compound-component patterns. ## Quick Start Ask the assistant to build a HeroUI v2 card with a button and modal for your React app, including provider and theme setup.