What problem does it solve? Setting up Nuxt UI in a Nuxt 4 project requires coordinating package installation, pnpm build-script allowlists, Nuxt module registration, and CSS imports, which is error-prone when done manually. ## Core Features & Use Cases - Dependency Installation: Detects the project's package manager (pnpm, npm, yarn, bun) from lockfiles and installs @nuxt/ui, tailwindcss, and the @iconify-json/lucide icon collection. - Config and CSS Bootstrap: Adds @nuxt/ui to nuxt.config modules and ensures the global CSS entry imports both Tailwind CSS and Nuxt UI without duplicating existing entries. - pnpm Build Allowlist: Maintains pnpm-workspace.yaml allowBuilds entries for packages like esbuild and vue-demi, extensible via OPENCODE_PNPM_ALLOW_BUILDS. - Integration Verification: Checks that dependencies, the Nuxt module registration, and CSS imports are all present. - Use Case: After scaffolding a Nuxt 4 app, run this skill to wire in the Nuxt UI kit with icons and theming ready for building dashboards, forms, and app shells. ## Quick Start Add Nuxt UI to my Nuxt 4 project and configure the module, CSS imports, and lucide icons.