Topic · A9
Warp 2.0: The First Agentic Terminal (Open-Sourced April 2026)
Warp 2.0 launched June 24, 2025 as the first Agentic Development Environment — a terminal that is also a coding agent. It was open-sourced under AGPL-3.0 on April 28, 2026 and the repo currently shows 56,000+ stars. Here's what it is, how it compares to Claude Code and Cursor, and how the same RuleSell ruleset works in all three.
Warp 2.0 is the terminal that decided to also be a coding agent.
Launched June 24, 2025 and open-sourced April 28, 2026, it's the project the Warp team has been telegraphing for two years — a rebuild of their terminal app around a coding agent that lives inside the prompt itself. The headline numbers are real: 71% on SWE-bench Verified, #1 on Terminal-Bench, and an AGPL-3.0 open-source release on April 28, 2026 (Warp's announcement). The GitHub repo currently shows 56,000+ stars (github.com/warpdotdev/warp). The launch post calls it the first Agentic Development Environment (warp.dev/blog/reimagining-coding-agentic-development-environment).
This page covers what Warp 2.0 actually is, how the SWE-bench number holds up to scrutiny, how it fits next to Claude Code and Cursor, and how the same RuleSell ruleset works across all three.
What Warp 2.0 actually is
The simplest framing: Warp 2.0 collapses the boundary between your shell and your coding agent. In a normal workflow, you have a terminal running shell commands and a separate agent (Claude Code in a different pane, Cursor in another window, Codex CLI in a third). Each context switch costs attention, and the agent doesn't see what you just typed in the shell.
Warp 2.0 puts both in the same window. The prompt accepts shell commands and agent instructions in the same buffer. When you type git status it runs as shell. When you type find the file that imports useAuth and refactor the import to use the barrel export it dispatches to the agent. The agent has read access to your scrollback, so what you ran a minute ago is part of its context.
Warp's launch post describes the surface as "Code, Agents, Terminal, and Drive in a single app" — Drive being a built-in file-sharing layer for code snippets and command history across a team. That's a bigger product surface than just a terminal, and it's worth being clear-eyed about: Warp 2.0 is a developer tool platform with a terminal as its primary UI, not just a terminal that grew agent features.
How the SWE-bench number holds up
71% on SWE-bench Verified is a strong claim. For context: most published Claude Code numbers on the same benchmark sit in the 60s, and Anthropic's flagship Claude 4.7 Opus runs around 70% in some configurations. So 71% from Warp puts it in the top tier of published systems. (Anthropic's own SWE-bench results and various community reproductions are the standard comparison points.)
A few caveats worth carrying:
- Vendor-published, not independently reproduced. The 71% is from Warp's launch post; we have not seen an independent reproduction yet. SWE-bench numbers can swing 5-10 points based on harness configuration (see /topic/agent-harness-engineering — the same model can swing 25.7 points on the same benchmark depending on harness).
- Verified vs. full. Warp claims SWE-bench Verified — the curated 500-issue subset. Full SWE-bench is harder and typically scores lower for the same system. The numbers are not interchangeable.
- Terminal-Bench is Warp's home turf. The #1 Terminal-Bench score is significant but the benchmark is newer and less standardized than SWE-bench. Treat it as a directional signal, not a settled ranking.
What AGPL-3.0 means for adoption
In May 2026, Warp open-sourced the project under AGPL-3.0. This is a deliberate license choice with real consequences:
- AGPL-3.0 is strong copyleft. Any modification that's offered as a network service requires source release. This blocks competitors from forking Warp into a closed-source SaaS.
- It limits enterprise adoption in AGPL-restricted shops. Many large companies prohibit AGPL software for production use because of the network-service clause. Those teams can run Warp locally but can't easily embed it in their own products.
- It protects Warp's hosted business. The hosted Warp service (paid tier) is where the company earns; the AGPL release keeps the project open without enabling a closed competitor.
Warp 2.0 vs Claude Code vs Cursor
The clean comparison, with no marketing:
- Claude Code: a CLI you run inside whatever terminal you already use. Best when your existing terminal setup matters (custom prompt, tmux, zsh customizations). Single-vendor model story (Claude).
- Cursor: a VS Code fork with deep agent integration. Best for IDE-centric workflows where the file tree and tabs are how you navigate. Multi-model via Cursor's model selector.
- Warp 2.0: the terminal itself, agent built in. Best when you live in the shell and want zero context switch. Multi-model via configurable backend.
What matters for RuleSell creators: a well-written ruleset is portable across all three. The format differs (CLAUDE.md vs .cursorrules vs Warp's agent config), but the substance — coding standards, project conventions, do/don't lists, examples — is reusable. RuleSell's multi-tool catalog is built around exactly this portability: write once, sell to all three audiences, earn payouts from each.
Where this fails / what we don't know
- Independent SWE-bench reproduction. As of this writing, the 71% number is vendor-published. We have no independent run to confirm.
- Production stability at scale. Warp 2.0 launched June 2025; the AGPL release was April 28, 2026. Six weeks of public production data is not enough to assess long-term reliability or churn.
- The Drive surface's real adoption. "Drive" — the team file-sharing layer — is part of the launch story but has no public usage data. It might be a meaningful product surface or it might be a feature on the marketing page.
- AGPL friction in practice. Whether AGPL-3.0 will actually limit Warp 2.0's penetration in enterprise versus just being noise in the procurement conversation is unknown. We'll know in 6-12 months.
What to read next
- /topic/cli-everything-wave — the broader meta-trend Warp 2.0 sits inside
- /topic/csi-2026-synchronized-output — the terminal-rendering spec Warp and its competitors all use
- /topic/agent-harness-engineering — why the same model scores differently in different harnesses
- /topic/dual-wielding-codex-claude-code — multi-CLI workflow patterns
- /for/warp — RuleSell rulesets targeted at Warp 2.0 users
- /for/claude-code — the comparable Claude Code catalog
Sources
- Warp blog, "Reimagining coding: agentic development environment" — warp.dev/blog. The launch post, SWE-bench claim, ADE framing.
- DEV Community, "Every AI Coding CLI in 2026: The Complete Map (30+ Tools Compared)" — dev.to. Warp's placement in the broader CLI landscape.
- Pinggy, "Top CLI Based AI Coding Agents" — pinggy.io/blog. Comparison context for Warp vs Claude Code vs Codex CLI vs Aider.
- SWE-bench project — swebench.com. Benchmark methodology and Verified subset definition.
- MindStudio, "Agent Harnesses Beat Model Upgrades" — mindstudio.ai/blog. 25.7pp harness-driven swing reference.
- AGPL-3.0 license text — gnu.org/licenses/agpl-3.0. Copyleft and network-service clause.
Related GitHub projects
claude-code
Claude Code is an agentic coding tool that lives in your terminal, understands your codebase, and helps you code faster by executing routine tasks, explaining complex code, and handling git workflows - all through natural language commands.
⭐ 122,880
everything-claude-code
The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.
⭐ 180,405
Frequently asked
- What is Warp 2.0?
- Warp 2.0 is what the company calls the first 'Agentic Development Environment' (ADE) — a terminal that is also a coding agent. It launched June 24, 2025, replaces the prior Warp terminal app, and bundles a built-in agent that can plan tasks, edit files, run commands, and review diffs without leaving the terminal window. Warp open-sourced the project under AGPL-3.0 on April 28, 2026 and the GitHub repo currently shows 56,000+ stars.
- How is Warp 2.0 different from Claude Code or Cursor?
- Claude Code is a CLI you run inside an existing terminal. Cursor is an IDE based on a VS Code fork. Warp 2.0 is the terminal itself — the agent runs inside the same surface where you type shell commands, so there's no context switch between 'shell mode' and 'agent mode'. The single-surface design matters for terminal-heavy workflows; it matters less if you live in an IDE.
- Did Warp 2.0 really score 71% on SWE-bench?
- Yes. Warp's launch post reports 71% on SWE-bench Verified plus a #1 score on Terminal-Bench. SWE-bench is the standard benchmark for agentic coding tasks against real GitHub issues; 71% is competitive with top systems and exceeds many published Claude Code numbers. Numbers come from Warp's own publication, so treat as a vendor claim until independently reproduced.
- Why does AGPL-3.0 matter for Warp 2.0?
- AGPL-3.0 is a copyleft license that requires anyone offering the software as a network service to publish their modifications. This blocks competitors from forking Warp into a closed SaaS, but also limits enterprise adoption in companies with AGPL restrictions. Warp made this choice deliberately — it keeps the project open while protecting the core business model around the hosted Warp service.
- Does RuleSell sell Warp rulesets?
- Yes — Warp is one of the tools the RuleSell multi-tool catalog supports. A ruleset written for Cursor (.cursorrules) or Claude Code (CLAUDE.md) is typically portable to Warp with minor format adaptation, and many RuleSell rulesets ship Warp-compatible variants out of the box. Creators earn Stripe Connect payouts on Warp-targeted sales the same way they do on Claude Code or Cursor sales.
- Can I use Warp 2.0 with Claude or GPT models?
- Yes. Warp 2.0's agent is model-agnostic — you can wire it up to Anthropic Claude, OpenAI GPT, or other backends. Warp also offers a managed agent option that abstracts model selection. This is the same multi-provider pattern that makes the broader CLI-everything wave possible (see [/topic/cli-everything-wave](/topic/cli-everything-wave)).