What problem does it solve? Setting up a Convex backend involves scaffolding, provisioning a deployment, wiring environment variables, and connecting a frontend provider, which is error-prone when done manually. This Skill walks through the entire setup path so a working Convex project runs in minutes. ## Core Features & Use Cases - New Project Scaffolding: Creates a complete app with npm create convex@latest using templates like react-vite-shadcn, nextjs-shadcn, or auth-enabled variants. - Existing App Integration: Installs the convex package, wires the ConvexProvider into React, Next.js, Vue, Svelte, or other frameworks, and configures the correct environment variables. - One-Shot Provisioning: Runs npx convex dev --once to provision an anonymous local deployment, push code, typecheck functions, and validate the schema in a single command. - Use Case: You have an existing Next.js app and want a reactive backend. The Skill installs Convex, adds the ConvexClientProvider to your root layout, provisions a local deployment, and verifies a query/mutation round-trip works. ## Quick Start Set up Convex for this project by scaffolding a new app or integrating it into my existing frontend, then verify the setup works.