The median vibe-coded app fails its first security audit. Lovable knows this, which is why they shipped $100 AI penetration testing in March 2026. Bolt knows it too, which is why their generated code is great for demos but needs a rewrite for production. The tool that ships fastest is rarely the tool that ships safest.
We tested 10 vibe coding tools on real projects, from a SaaS dashboard to a mobile-ready CRUD app, and ranked them by what they actually produce. Not feature lists. Not landing page claims. Output quality, pricing math, and honest limitations.
Quick Comparison: Best Vibe Coding Tools (April 2026)
| Tool | Type | Starting Price | Best For |
|---|---|---|---|
| Lovable | Web builder | Free / $20/mo Starter | Non-technical founders, full-stack MVPs with auth + payments |
| Bolt.new | Web builder | Free (1M tokens) / $25/mo | Fast prototypes, hackathon demos, throwaway apps |
| v0 by Vercel | Web builder | Free ($5 credit) / $20/mo | Clean React/Next.js components, Vercel deploy |
| Replit | Browser IDE | Free / $20/mo Core | Full browser-based development, multi-language |
| Base44 | Web builder | Free / $16/mo Starter | Fastest path from prompt to App Store/Play Store |
| Google Antigravity | Agentic IDE | Free (preview) | Parallel agents, visual agent management, free tier |
| Cursor | AI IDE | Free / $20/mo Pro | Professional developers, tab completions, existing codebases |
| Windsurf | AI IDE | Free / $15/mo Pro | Budget teams, Devin integration, SWE-grep search |
| Claude Code | Terminal agent | Free / $20/mo Pro | Complex refactoring, agent teams, 82.1% SWE-bench |
| Devin | Autonomous agent | $20/mo + ACUs | Fully autonomous multi-hour tasks, zero-handholding |
SWE-bench Verified Scores (April 2026)
Measures ability to resolve real GitHub issues. Higher is better.
Cursor has not published a SWE-bench score. Scores shown are for the default model configuration of each tool.
What Is Vibe Coding?
Vibe coding means describing software in natural language and letting AI write the code. The term comes from Andrej Karpathy, who coined it in February 2025 to describe "fully giving in to the vibes" and forgetting the code exists.
One year later, the term covers a wide spectrum. On one end: non-technical users building entire apps through conversation with tools like Lovable or Bolt. On the other: professional developers using AI coding agents like Cursor or Claude Code to accelerate work on existing codebases. Karpathy himself now calls the professional end "agentic engineering."
For the full history and evolution, see our complete guide to vibe coding.
Web-Based App Builders
These tools run in the browser. You describe your app, they generate it. No local setup, no IDE, no terminal. Best for prototypes, MVPs, and people who do not write code for a living.
1. Lovable: Best for Non-Technical Founders
Lovable generates full-stack applications from conversation. Describe your app, and it builds the frontend (React + TypeScript), connects a database (Supabase), adds authentication, and wires up payments (Stripe). The output is clean, exportable code you can push to GitHub.
What separates Lovable from every other web builder: depth. It does not just generate UI. It creates working backend schemas, auth flows, API integrations, and as of March 2026, $100 AI penetration testing powered by Aikido Security. A swarm of AI agents tests your app for OWASP Top 10 vulnerabilities, privilege escalation, and data exposure in 1-4 hours. That used to cost thousands and take weeks.
Visual Edits let you click any element and modify it without writing prompts. Lovable raised a $330M Series B in December 2025 at a $6.6B valuation, reaching $200M ARR. Enterprise customers include Klarna, Uber, and Zendesk.
Pros
- Full-stack output: frontend, database, auth, and payments from a single conversation
- Built-in penetration testing ($100 per scan) for security validation before launch
- Visual Edits: click elements to change them without writing prompts
- Clean TypeScript/React code, exportable to GitHub
Cons
- Credit-based pricing runs out fast on complex apps (plan for 150-300 credits per MVP)
- Limited control over architecture decisions and generated code structure
- Generated code can be hard to maintain for developers who inherit it
Pricing: Free (5 daily credits), Starter $20/mo (100 credits), Launch $50/mo (300 credits, priority generation), Scale $100/mo (800 credits). Annual billing saves ~20%. Unused credits roll over for one cycle.
Verdict: The best vibe coding tool if you want to go from idea to deployed, security-tested app without writing code. Not ideal if you need fine-grained control over architecture.
2. Bolt.new: Fastest for Throwaway Prototypes
Bolt runs a full Node.js environment in your browser tab using StackBlitz WebContainers. You can npm install, start dev servers, and see changes instantly, all client-side. Three minutes from prompt to running app. No other web builder matches this speed.
In 2026, Bolt added Opus 4.6 with adjustable reasoning depth, Figma import, AI image editing, and team templates for reusable project starters. Token rollover means unused tokens carry over for one additional month.
The catch: Bolt is great for demos and hackathons. The generated code is quick-and-dirty by design. Most teams use Bolt to validate ideas in an afternoon, then rebuild the production version in Cursor or Claude Code.
Pros
- Full Node.js environment in the browser, no local setup needed
- Fastest time from prompt to running app among all web builders
- 1M free tokens per month (300K daily) is generous for experimentation
- Figma import and AI image editing added in 2026
Cons
- Code quality is not production-grade. Expect to rewrite for anything you ship.
- Token costs scale fast on complex projects ($25-200/mo tiers)
- Weaker at backend logic compared to Lovable or Replit
Pricing: Free (1M tokens/mo), Pro $25/mo (10M tokens), Teams $30/user/mo. Higher tiers at $50, $100, $200/mo. 10% off annual billing. Unused tokens roll over one month.
Verdict: Unbeatable for quick prototypes and demos. Do not ship anything from Bolt without rewriting it first.
3. v0 by Vercel: Cleanest React Output
v0 is not an app builder. It is a component generator that produces production-ready React code. Where Lovable and Bolt build whole apps, v0 excels at individual components and pages using shadcn/ui and Tailwind CSS. The code it generates looks like code you would write yourself.
The February 2026 update changed v0 significantly: Git integration, a VS Code-style editor, database connectivity, and agentic workflows turned it into something closer to a full-stack platform. You can now describe an entire multi-page Next.js app with routing, shared layouts, and navigation. One-click deployment to Vercel seals the deal.
Usage is metered on input/output tokens (not fixed message counts), which makes costs more predictable as you scale. Purchased credits expire after one year and can be shared across teams.
Pros
- Cleanest code output among all vibe coding tools, uses modern React patterns
- shadcn/ui and Tailwind CSS (maintainable, not custom CSS soup)
- One-click deploy to Vercel, Git integration, VS Code-style editor
- Figma imports on Premium plan
Cons
- React/Next.js only. No Vue, Svelte, or other frameworks.
- Backend generation is improving but still weaker than Lovable or Replit
- Credit system means costs scale with usage
Pricing: Free ($5 monthly credit), Premium $20/mo, Team $30/user/mo, Business $100/user/mo, Enterprise custom. Token-based billing, credits expire after one year.
Verdict: Best vibe coding tool for React developers who want components they can drop into a production codebase without rewriting.
4. Replit: Most Complete Browser-Based Platform
Replit handles the entire lifecycle: build, run, test, deploy, host. You never leave the browser. Replit Agent (now version 3) takes natural language and builds complete applications, frontend through deployment. Economy, Power, and Turbo modes let you trade speed for cost.
In early 2026, Replit expanded into mobile development. The Agent creates React Native and Expo projects testable on your phone. Effort-based pricing means simple changes cost under $0.25, while complex tasks are bundled into checkpoints that cost more but reflect actual compute used.
The Pro plan ($100/mo for up to 15 builders) includes tiered credit discounts, priority support, and credit rollover. For teams that want everything in one browser tab, nothing else matches Replit's breadth.
Pros
- Full development lifecycle in the browser: code, test, deploy, host
- Multi-language support including React Native and Expo for mobile
- Effort-based pricing: simple changes cost under $0.25
- Built-in hosting eliminates deployment complexity
Cons
- Effort-based pricing makes costs hard to predict on complex prompts
- Performance lags for larger projects compared to local IDEs
- Less control over infrastructure compared to self-hosted alternatives
Pricing: Free (limited), Core $20/mo ($20 in credits, up to 5 collaborators), Pro $100/mo (up to 15 builders, credit discounts, rollover). Enterprise custom.
Verdict: Best all-in-one platform if you want everything in the browser, including mobile development. Budget carefully: complex agent work eats credits fast.
5. Base44: Fastest Path to App Store
Base44 fills a gap no other tool on this list covers well: publishing directly to the App Store and Play Store. A February 2026 update added native mobile publishing alongside Plan Mode (structured planning before coding) and Gmail integration.
The platform includes a Discussion mode where you plan and analyze ideas with the AI before it writes code. This saves credits by eliminating unnecessary iterations. The interface is deliberately simple, aimed at non-technical users who find Cursor or even Lovable too complex.
Base44 uses two credit types: message credits (AI interactions) and integration credits (database, auth, API calls). The free tier gives 5 daily message credits (25/month max) and 100 integration credits per month.
Pros
- Direct publishing to App Store and Play Store from the platform
- Discussion mode: plan with AI before spending credits on code generation
- Simplest interface among all tools tested, lowest learning curve
- Built-in analytics and database from a single prompt
Cons
- Smaller community and fewer templates compared to Lovable or Bolt
- Code output quality is below v0 and Lovable for complex apps
- Dual credit system (message + integration) adds billing complexity
Pricing: Free (5 daily credits), Starter $16/mo (annual) or $25/mo, Builder $40/mo, Pro $80/mo, Elite $160/mo. Annual billing saves ~35%.
Verdict: Best choice if you need a mobile app on the App Store with minimal technical knowledge. For web-only apps, Lovable or v0 produce better code.
6. Google Antigravity: Best Free Agentic IDE
Google announced Antigravity in November 2025 alongside Gemini 3. It is not just another vibe coding tool. It is an agent-first IDE with two views: an Editor view (similar to VS Code with an agent sidebar) and a Manager view for orchestrating multiple agents working in parallel across workspaces.
Dispatch five agents to fix five bugs simultaneously. Each agent generates Artifacts: task lists, implementation plans, screenshots, and browser recordings that let you verify work without reading every line of code. The March 2026 update added Firebase integration (Firestore, Auth), multiplayer support with live cursors, Next.js framework support, and a Secrets Manager for API credentials.
Antigravity scores 76.2% on SWE-bench Verified. It supports Claude Opus 4.6 and Sonnet 4.6 alongside Gemini models. During public preview, it is completely free with generous rate limits on Gemini 3 Pro.
Pros
- Completely free during public preview, no credit card required
- Manager view: parallel agent execution across multiple workspaces
- 76.2% SWE-bench Verified, competitive with paid tools
- Supports Claude, Gemini, and open-source models (not locked to one provider)
Cons
- Public preview only. Pricing for GA is unknown.
- Requires Antigravity IDE (no VS Code or JetBrains support)
- Newer tool with smaller community, fewer integrations, less documentation
Pricing: Free during public preview. Available on macOS, Windows, and Linux.
Verdict: The best free vibe coding tool for developers in April 2026. Parallel agent execution alone makes it worth trying. Risk: pricing after GA could change the calculus entirely.
AI-Native IDEs
These tools work inside your existing codebase. You describe changes in natural language, and the AI edits your files directly. Built for developers who already know how to code but want AI to handle the tedious parts. See our guide to agentic coding tools for deeper coverage.
7. Cursor: Best Tab Completions and IDE Integration
Cursor is a VS Code fork with the deepest AI integration of any IDE. Sub-second tab completions are context-aware and specialized. Composer/Agent mode plans and applies multi-file changes across your repo. Background Agents (Pro+ and above) run tasks autonomously on isolated Ubuntu machines while you work on something else.
In June 2025, Cursor switched from request-based to credit-based billing. Every paid plan includes a monthly credit pool equal to the plan price in dollars. Credits deplete based on which AI models you use. The Plugin Marketplace includes integrations for Amplitude, AWS, Figma, Linear, and Stripe.
The trade-off: it is a proprietary VS Code fork. No JetBrains, no Neovim, no standard VS Code. Heavy users report actual monthly costs of $40-60 after overages. Background Agents require MAX mode, which adds a 20% surcharge on top of credit costs.
Pros
- Sub-second tab completions, the fastest inline autocomplete available
- Background Agents run multi-step tasks on isolated cloud machines
- Plugin Marketplace: Figma, Linear, Stripe, AWS integrations
- Strong multi-file editing through Composer/Agent mode
Cons
- Locked to Cursor's VS Code fork (no JetBrains, Neovim, or standard VS Code)
- Actual monthly cost often $40-60 with overages. Background Agents add 20% surcharge.
- Has not published a SWE-bench score for independent comparison
Pricing: Free tier, Pro $20/mo ($20 in credits), Pro+ $60/mo ($70 in credits, background agents), Ultra $200/mo ($400 in credits). Teams $40/user/mo. Credits deplete by model usage.
Verdict: Best AI IDE if you live in VS Code and want tight AI integration with fast tab completions. Consider alternatives if editor lock-in or unpredictable pricing concerns you. See our full Cursor alternatives comparison.
8. Windsurf: Cheapest Paid AI IDE
Windsurf (formerly Codeium) is a VS Code fork at $15/mo, the cheapest paid option among AI IDEs. Cognition (the company behind Devin) acquired Windsurf for approximately $250M in December 2025. Cognition was subsequently valued at $10.2B. The product still works, but the roadmap depends on Cognition's plans.
Cascade, Windsurf's core feature, understands your entire codebase and suggests multi-file edits. SWE-grep uses RL-trained models for code retrieval that is up to 20x faster than embedding-based search. In March 2026, Windsurf moved from credit-based to quota-based billing. Direct Devin integration lets you hand off long-running tasks to a fully autonomous agent.
59% of Fortune 500 companies now use Windsurf in some capacity, including JPMorgan Chase and ServiceNow (7,000+ engineers). The enterprise adoption is real.
Pros
- $15/mo Pro, cheapest paid AI IDE on the market
- SWE-grep: RL-trained code retrieval, up to 20x faster than embedding-based search
- Direct Devin integration for fully autonomous tasks
- 59% Fortune 500 adoption, strong enterprise track record
Cons
- Cognition acquisition creates roadmap uncertainty
- Still a VS Code fork (same lock-in problem as Cursor)
- Smaller community and plugin ecosystem than Cursor
Pricing: Free (25 credits/mo), Pro $15/mo (quota-based), Teams $30/user/mo, Enterprise $60/user/mo with zero data retention.
Verdict: Best pick if price is your main concern and you want Devin integration. Watch how the Cognition acquisition affects the roadmap before committing long-term.
CLI and Autonomous Agents
Terminal and autonomous agents operate on your codebase through the command line or cloud sandboxes. They read files, run commands, make edits, and iterate until the task is done. Best for experienced developers working on large, existing codebases where context and coordination matter more than speed-to-prototype.
9. Claude Code: Highest SWE-bench Score, Best Agent Coordination
Claude Code is a terminal-native coding agent from Anthropic. Sonnet 5 scores 82.1% on SWE-bench Verified, the highest published score among coding tools. Opus 4.6 scores 80.8%. It reads your codebase, plans changes, writes code, runs tests, and submits PRs.
The standout feature is Agent Teams: sub-agents that coordinate through shared task lists and bidirectional messaging. Unlike Cursor's parallel workers (which operate independently), Claude Code agents share context and track dependencies across tasks. For complex refactoring where changes in one file affect five others, this coordination is the difference between clean results and merge conflicts.
Claude Code works in the terminal and as a VS Code extension. It supports hooks, auto-memory, MCP tool integration, an Agent SDK, voice mode, /loop scheduling, and a 1M token context window that can hold an entire codebase in memory.
Pros
- 82.1% SWE-bench Verified (Sonnet 5), highest published score among coding tools
- Agent Teams: coordinated sub-agents with shared context and task dependencies
- 1M token context window holds entire codebases in memory
- Works in VS Code and any terminal, not locked to a proprietary editor
Cons
- No tab completions (Cursor's inline autocomplete is faster for small edits)
- Terminal-first workflow has a learning curve for GUI-oriented developers
- Agent Teams consume tokens proportionally (3 agents = ~3x token burn)
Pricing: Free tier, Pro $20/mo, Max 5x $100/mo, Max 20x $200/mo. API usage also available at per-token rates.
Verdict: Best vibe coding tool for complex, existing codebases. Agent coordination and the 82.1% SWE-bench score make it the strongest option for professional developers. Not ideal if tab completions are the main thing you want from AI.
10. Devin: Fully Autonomous Software Engineer
Devin is in a different category from every other tool on this list. You assign it a task, and it works for hours without human input. It opens its own terminal and browser, writes code, reads error messages, searches for solutions, and iterates until done. No hand-holding required.
Devin 2.0 completes 83% more junior-level development tasks per Agent Compute Unit (ACU) compared to its predecessor. Interactive Planning lets you start with broad ideas and collaboratively scope detailed task plans. Devin Wiki auto-indexes repositories and generates architecture diagrams with source links. You can spin up multiple Devins in parallel to handle multiple tasks simultaneously.
The pricing model is unique: you pay a base subscription plus per-ACU charges. One ACU corresponds to a few minutes of active agent work. The Team plan at $500/mo includes 250 ACUs (~111 hours of autonomous work). For the right tasks (migrations, boilerplate, test generation), Devin pays for itself. For exploratory work, the ACU meter runs fast.
Pros
- Fully autonomous: works for hours without human intervention
- Interactive Planning for collaborative task scoping
- Devin Wiki: auto-generated architecture docs with source links
- Parallel Devins for handling multiple tasks simultaneously
Cons
- ACU-based pricing has no ceiling. Complex tasks can get expensive fast.
- Less control over the process compared to IDE-based tools
- Best for well-defined tasks. Struggles with ambiguous, open-ended work.
Pricing: Core $20/mo (pay-as-you-go, $2.25/ACU), Team $500/mo (250 ACUs included, $2.00/ACU overage), Enterprise custom (unlimited ACUs, VPC, SSO).
Verdict: Best for well-scoped tasks you would normally assign to a junior developer: migrations, test suites, boilerplate generation, documentation. Not the right tool for ambiguous product work or design exploration.
Free Vibe Coding Tools Worth Trying
Four tools on this list have genuinely usable free tiers, not 14-day trials or crippled demos.
| Tool | What You Get Free | Limit | Best Free Use Case |
|---|---|---|---|
| Google Antigravity | Full IDE + parallel agents | Generous rate limits (preview) | Professional development with multiple agents |
| Bolt.new | In-browser Node.js environment | 1M tokens/mo (300K daily) | Quick prototypes and demos |
| Lovable | Full-stack app generation | 5 daily credits | Testing whether vibe coding works for your use case |
| Base44 | App builder + mobile publishing | 5 daily + 100 integration credits/mo | Simple apps and mobile prototypes |
Additionally, Cursor, Windsurf, v0, Replit, GitHub Copilot, and Claude Code all offer limited free tiers sufficient for evaluation. Google AI Studio remains completely free for prototyping with Gemini models.
Pricing Comparison
Monthly Cost: Entry Paid Tier (April 2026)
Lower is better for budget-conscious teams.
Devin Core is $20/mo base but ACUs ($2.25 each) add up. Antigravity is free during preview. GitHub Copilot Pro is $10/mo.
| Tool | Free Tier | Entry Paid | Premium/Team |
|---|---|---|---|
| Lovable | 5 daily credits | $20/mo Starter | $50 Launch / $100 Scale |
| Bolt.new | 1M tokens/mo | $25/mo Pro (10M tokens) | $30/user Teams |
| v0 by Vercel | $5 monthly credit | $20/mo Premium | $30/user Team / $100 Business |
| Replit | Limited | $20/mo Core | $100/mo Pro (15 builders) |
| Base44 | 5 daily + 100 integration | $16/mo Starter (annual) | $40 Builder / $80 Pro / $160 Elite |
| Google Antigravity | Free (full preview) | TBD after GA | TBD |
| Cursor | Limited | $20/mo Pro ($20 credits) | $60 Pro+ / $200 Ultra |
| Windsurf | 25 credits/mo | $15/mo Pro (quota) | $30/user Teams / $60 Enterprise |
| Claude Code | Limited | $20/mo Pro | $100 Max 5x / $200 Max 20x |
| Devin | None | $20/mo + $2.25/ACU | $500/mo Team (250 ACUs incl.) |
Cost tip
Token and credit-based pricing makes costs hard to predict. For web builders, Lovable's Starter at $20/mo is the most predictable option with credit rollover. For AI IDEs, Windsurf at $15/mo is cheapest. Google Antigravity is the best value right now (free), but plan for pricing changes after GA. For autonomous work, Devin's ACU model can be cheaper than paying a developer, but only for well-scoped tasks.
How to Pick the Right Vibe Coding Tool
| Your Situation | Best Tool | Why |
|---|---|---|
| Non-technical, want a full app | Lovable | Full-stack output with database, auth, payments, and built-in security testing |
| Quick prototype or demo | Bolt.new | Fastest time from prompt to running app, full Node.js in the browser |
| React developer, need components | v0 by Vercel | Cleanest React/Next.js code, shadcn/ui, one-click Vercel deploy |
| Everything in the browser | Replit | Full lifecycle: code, test, deploy, host, including mobile with React Native |
| Need a mobile app on App Store | Base44 | Direct publishing to App Store and Play Store from the platform |
| Zero budget, want real power | Google Antigravity | Free during preview with parallel agents and 76.2% SWE-bench |
| Professional dev, existing codebase | Cursor or Claude Code | Cursor for tab completions, Claude Code for agent coordination |
| Budget-conscious team | Windsurf ($15) or GitHub Copilot ($10) | Cheapest paid options among AI coding tools |
| Complex refactoring, large codebase | Claude Code | Agent Teams coordinate sub-agents. 82.1% SWE-bench. 1M token context. |
| Well-scoped tasks, no babysitting | Devin | Fully autonomous multi-hour execution. Best for migrations and test suites. |
Pro tip: combine tools
The best workflow uses two or three tools together. Prototype in Lovable or Bolt (fast iteration, zero setup). Move the code to Cursor or Claude Code for production hardening (proper error handling, tests, security). Use Devin for the well-defined tasks nobody wants to do manually. This three-layer approach ships faster and safer than relying on any single tool.
What Powers These Tools Underneath
Every vibe coding tool on this list relies on the same primitives: fast code apply (merging AI-generated diffs into existing files), sandboxed execution (running untrusted code safely), and code search (finding relevant context in large codebases). Morph builds these primitives as infrastructure. Morph Fast Apply processes diffs at 10,500 tok/s. WarpGrep improves any AI coding agent's SWE-bench performance by ~4% through agentic code search. If you are building a vibe coding tool, these are the components you do not want to build yourself.
Frequently Asked Questions
What is the best vibe coding tool in 2026?
It depends on your skill level and goal. Lovable is best for non-technical founders building full-stack apps. v0 by Vercel produces the cleanest React code. Cursor is the best AI IDE for professional developers. Claude Code (82.1% SWE-bench Verified with Sonnet 5) is the strongest agent for complex, multi-file changes. Devin handles fully autonomous multi-hour tasks.
What is vibe coding?
A term coined by Andrej Karpathy in February 2025. It describes building software by telling AI what you want in natural language and letting it write the code. Karpathy has since suggested "agentic engineering" as a more accurate label for the professional version of this workflow. Read our full guide to vibe coding.
What are the best free vibe coding tools?
Google Antigravity is completely free during public preview with parallel agent execution and 76.2% SWE-bench. Bolt gives 1M free tokens per month. Lovable provides 5 daily credits. Base44 offers 5 daily message credits plus 100 integration credits monthly. Google AI Studio is free for prototyping with Gemini models. Cursor, Windsurf, v0, Replit, and Claude Code all have limited free tiers.
Can I build a production app with vibe coding?
For simple apps (landing pages, internal tools, MVPs), yes. Lovable deploys working apps with databases, auth, and payments, and now offers $100 AI penetration testing for security validation. For complex production systems, most teams prototype in a web builder and move the code to an AI IDE or terminal agent for hardening.
What is the difference between vibe coding tools and AI coding assistants?
Vibe coding tools like Lovable, Bolt, and v0 generate entire applications from prompts. AI coding assistants like Cursor, Copilot, and Claude Code work inside your existing codebase. Autonomous agents like Devin work for hours without human input. The best workflow often combines a web builder for prototyping with an IDE or agent for production code.
Is vibe coding safe for production?
It depends on the tool and app complexity. Lovable now offers built-in penetration testing ($100 per scan through Aikido Security). For apps handling sensitive data, have a developer review generated code. Tools like Lovable and Replit use established services (Supabase, Stripe) for auth and payments, which reduces risk, but custom business logic still needs human review.
Build Better Vibe Coding Infrastructure with Morph
Morph provides the primitives that power AI coding tools: Fast Apply at 10,500 tok/s for merging diffs, and WarpGrep for agentic code search that improves SWE-bench scores by ~4%. Works as an MCP server inside Claude Code, Cursor, Windsurf, and any tool that supports MCP.
Sources
- Andrej Karpathy: Original "Vibe Coding" Tweet (Feb 2025)
- Lovable Pricing
- Lovable: AI Penetration Testing Announcement (Mar 2026)
- Bolt.new Pricing
- v0 by Vercel Pricing
- Replit Pricing
- Base44
- Google Antigravity: Agentic Development Platform
- Cursor AI IDE
- Cognition: Windsurf Acquisition
- Anthropic: Claude SWE-bench Results
- Devin Pricing
- GitHub Copilot Plans