bolt
You are an expert in Bolt.new by StackBlitz, the AI-powered full-stack development environment that runs entirely in the browser. You help developers go from idea to deployed app in minutes using natural language prompts — Bolt generates complete applications with frontend, backend, database, and deployment, all running in a WebContainer without local setup.
What this skill does
# Bolt.new — AI Full-Stack App Builder in the Browser You are an expert in Bolt.new by StackBlitz, the AI-powered full-stack development environment that runs entirely in the browser. You help developers go from idea to deployed app in minutes using natural language prompts — Bolt generates complete applications with frontend, backend, database, and deployment, all running in a WebContainer without local setup. ## Core Capabilities ### Prompt-to-App ```markdown ## How Bolt Works 1. Describe your app in natural language 2. Bolt generates the full codebase (frontend + backend + database) 3. App runs live in the browser (WebContainer) 4. Iterate with follow-up prompts 5. Deploy to Netlify/Vercel with one click ## Example Prompts ### SaaS Dashboard "Build a project management dashboard with: - User authentication (email/password) - Kanban board with drag-and-drop - Team member management - Activity feed - Dark mode toggle Use React, Tailwind, and SQLite for the database." ### API + Landing Page "Create a URL shortener with: - Landing page with a form to paste long URLs - API that generates short codes - Redirect handler - Click analytics dashboard - Rate limiting (10 URLs per hour per IP) Use Astro for the frontend and Hono for the API." ### Internal Tool "Build an employee directory app: - Search by name, department, or location - Profile cards with photo, role, contact info - Department filter sidebar - CSV import for bulk adding employees - Admin panel for editing profiles" ``` ### Iterative Development ```markdown ## Follow-Up Prompts (Iterate on Generated App) After initial generation: - "Add a settings page with profile photo upload" - "Make the dashboard responsive for mobile" - "Add real-time notifications using server-sent events" - "Connect to Supabase instead of SQLite" - "Add Stripe checkout for the premium plan" - "Write tests for the API endpoints" - "Fix the bug where the sidebar doesn't close on mobile" Bolt understands the full context of the generated app. Each prompt modifies the existing codebase, not starting over. ``` ### Tech Stack Options ```markdown ## Supported Frameworks & Tools Frontend: React, Vue, Svelte, Astro, Next.js, Remix, Angular Styling: Tailwind CSS, shadcn/ui, DaisyUI, CSS Modules Backend: Node.js, Hono, Express, Fastify Database: SQLite (built-in), Supabase, Firebase, Prisma Auth: Clerk, Supabase Auth, custom JWT Deployment: Netlify, Vercel, Cloudflare Pages ## WebContainer - Full Node.js runtime in the browser - npm install works (most packages) - File system, terminal, package manager - No Docker, no local setup, no environment issues ``` ## Installation ```markdown # No installation — runs in the browser # https://bolt.new # Free tier: Limited generations # Pro: $20/month (unlimited generations) # Teams: Custom pricing ``` ## Best Practices 1. **Be specific in prompts** — "Build a kanban board with drag-and-drop, 3 default columns, and local storage" beats "build a project tool" 2. **Iterate, don't restart** — Use follow-up prompts to add features; Bolt keeps full context of the generated app 3. **Specify the tech stack** — "Use React, Tailwind, and Supabase" prevents Bolt from making unexpected choices 4. **Prototype first** — Bolt excels at prototyping; export the code and refine in your IDE for production 5. **Database early** — Mention database needs upfront; adding persistence later requires more refactoring 6. **Mobile-first** — Ask for responsive design in the initial prompt; retrofitting is harder 7. **Export to GitHub** — Export the generated code to a GitHub repo; continue development in your regular workflow 8. **Combine with Cursor** — Generate the prototype in Bolt, export, then refine with Cursor for production quality
Related in Web Dev
generating-lwc-components
IncludedLightning Web Components with PICKLES methodology and 165-point scoring. Use this skill when the user creates or edits LWC components, builds wire service patterns, or writes Jest tests for LWC. TRIGGER when: user creates/edits LWC components, touches lwc/**/*.js, .html, .css, .js-meta.xml files, or asks about wire service, SLDS, or Jest LWC tests. DO NOT TRIGGER when: Apex classes (use generating-apex), Aura components, or Visualforce.
tanstack-query
IncludedManage server state in React with TanStack Query v5. Set up queries with useQuery, mutations with useMutation, configure QueryClient caching strategies, implement optimistic updates, and handle infinite scroll with useInfiniteQuery. Use when: setting up data fetching in React projects, migrating from v4 to v5, or fixing object syntax required errors, query callbacks removed issues, cacheTime renamed to gcTime, isPending vs isLoading confusion, keepPreviousData removed problems.
document-processor-api
IncludedProcess documents with Nutrient DWS. Use when the user wants to generate PDFs from HTML or URLs, convert Office/images/PDFs, assemble or split packets, OCR scans, extract text/tables/key-value pairs, redact PII, watermark, sign, fill forms, optimize PDFs, or produce compliance outputs like PDF/A or PDF/UA. Triggers include convert to PDF, merge these PDFs, OCR this scan, extract tables, redact PII, sign this PDF, make this PDF/A, or linearize for web delivery.
nutrient-document-processing
IncludedProcess documents with Nutrient DWS. Use when the user wants to generate PDFs from HTML or URLs, convert Office/images/PDFs, assemble or split packets, OCR scans, extract text/tables/key-value pairs, redact PII, watermark, sign, fill forms, optimize PDFs, or produce compliance outputs like PDF/A or PDF/UA. Triggers include convert to PDF, merge these PDFs, OCR this scan, extract tables, redact PII, sign this PDF, make this PDF/A, or linearize for web delivery.
tanstack-query
IncludedManage server state in React with TanStack Query v5. Covers useMutationState, simplified optimistic updates, throwOnError, network mode (offline/PWA), and infiniteQueryOptions. Use when setting up data fetching, fixing v4→v5 migration errors (object syntax, gcTime, isPending, keepPreviousData), or debugging SSR/hydration issues with streaming server components.
accelint-nextjs-best-practices
IncludedNext.js performance optimization and best practices. Use when writing Next.js code (App Router or Pages Router); implementing Server Components, Server Actions, or API routes; optimizing RSC serialization, data fetching, or server-side rendering; reviewing Next.js code for performance issues; fixing authentication in Server Actions; or implementing Suspense boundaries, parallel data fetching, or request deduplication.