Quick answer
- Core idea
- The environment, not the editor, is the product: board, specs, branches, review
- vs agentic IDE
- An IDE that gained agents vs a workflow built for agents from the ground up
- Two hard guarantees
- Git isolation per agent + a spec gate before any code
- AIDEN pricing
- Free (1 project) · Solo $19/mo · Lifetime $169 · Team $10/seat
What an ADE actually is
For thirty years the unit of a developer's workspace was the editor. You opened a file, you typed, you saved. The integrated development environment (IDE) grew up around that act: syntax highlighting, a debugger, a terminal, a git panel, all in service of a human editing text.
AI coding agents break that assumption. An agent does not want a cursor. It takes a task, reads the codebase, writes a plan, works on a branch, runs tests, and hands back a diff. The editor is no longer the center of gravity. The center becomes the flow of work: which tasks are in progress, which agent owns which branch, which diffs are waiting for your review. Naming that shift is the whole point of the term agentic development environment.
An ADE is the environment purpose-built for that flow. Concretely, it gives you a board where each task is a card, a planning step that produces a spec you approve, an isolation mechanism so agents do not step on each other, a runtime that actually executes the agents, and a review layer that turns finished work into pull requests. The editor is still there, but as one panel among many, an escape hatch for when you want to touch the code by hand.
The six layers of an ADE
The clearest way to define an ADE is to name the layers it has to provide. Strip any one of these out and you are back to a chatbot in a sidebar. Here is the full stack, from the shared context every agent starts with up to the pull request you merge.
1. Context
2. Planning
3. Isolation
4. Execution
5. Review
6. Control surface
The set of conventions across layers 2 through 5, the specs, the isolation, the test loop, the review pass, is what we call the agent harness: the scaffolding that turns a raw coding agent into something you can hand real work. An ADE is what you get when that harness is wrapped in a real workspace with a control surface on top.
ADE vs the IDE you know
The fastest way to feel the difference is to line the two up on the questions that actually change day to day. A classic IDE optimizes for a human writing code. An ADE optimizes for a human reviewing work that agents produced.
| Dimension | Classic IDE | Agentic dev environment |
|---|---|---|
| Unit of work | A file you edit | A task that ships as a branch and a PR |
| Your role | Author, typing every line | Reviewer, approving plans and diffs |
| Planning | In your head | A written spec, approved before code |
| Concurrency | One of you, one file | Several agents on separate branches |
| Control surface | The file tree and open tabs | A board of tasks with status per agent |
| Where work ends | A saved file | A reviewed pull request |
None of this makes the classic IDE obsolete. Hand editing, quick exploration, and changes too fuzzy to specify still belong in an editor, which is why a good ADE keeps one built in. The point is that the editor stops being the whole environment and becomes one tool inside a larger one. For the full three-way breakdown of AI IDE, agentic IDE, and ADE, see ADE vs agentic IDE vs AI IDE.
Ship your first agent today
Download AIDEN free and point it at your existing Claude Code or Codex setup. No credit card, running in minutes.
Download AIDEN freeFree to start · macOS 12+ · No credit card required
What to demand from an ADE
Many tools now describe themselves as agentic. Some are a chat panel with a run button. When you evaluate an environment rather than an editor, these are the properties that tell you it is the real thing.
- 1
Real git isolation, not a shared workspace
Ask what happens when two agents touch the same file. The honest answer is a separate branch or worktree per agent. If tasks share one working directory, parallelism is a demo, not a workflow. - 2
A spec gate you cannot skip by accident
The environment should produce a plan you approve before any code is written, ideally enforced rather than optional. That plan is the cheapest place to catch a misunderstanding and it becomes the review context later. - 3
Bring-your-own-key and local execution
Prefer tools that run against your local CLIs, with keys and code staying on your machine, over ones that proxy every call through their servers. The local path avoids extra cost, latency, and a copy of your code on someone else's infrastructure. More in the local ADE guide. - 4
A board, not a pile of terminals
You cannot manage agents you cannot see. Look for one view that shows every task, its branch, its agent, and its status, so running five agents feels like managing a queue, not juggling five terminal tabs. - 5
Escape hatches to manual
Sometimes you need to fix something by hand. A real ADE embeds an editor, a terminal, a browser, and a git view, and inherits your existing MCP server configuration, so dropping to manual never means leaving the tool.
The ADE landscape in 2026
The market has settled into a few shapes, and they differ mainly on where your code lives, how many agents can run at once, and who holds the keys.
Desktop orchestrators
VS Code forks with agent modes
Cloud agents
Open-source extensions
This page defines the category. For a ranked list with honest trade-offs, see the best agentic IDEs in 2026, and for head-to-head detail start with AIDEN vs Cursor, AIDEN vs Devin, and AIDEN vs Cline.
Getting started with AIDEN as your ADE
AIDEN is a desktop agentic development environment that runs on top of your local Claude Code and Codex CLIs: AIDEN handles the workflow (board, branches, specs, review) while the CLIs handle the model calls. Setup looks like this.
- 1
Install at least one agent CLI
AIDEN requires Claude Code (Anthropic) or Codex CLI (OpenAI) installed locally. It works with either and better with both. Your keys stay in~/.claudeand~/.codex; AIDEN never reads, copies, or transmits them.npm install -g @anthropic-ai/claude-code # and/or npm install -g @openai/codex - 2
Download AIDEN for macOS
Grab the .dmg from aidenapp.org and drag it to Applications. AIDEN runs on macOS 12+ (Apple Silicon and Intel, signed and notarized). Windows and Linux desktop apps are on a waitlist, and a self-host server mode ships a Linux installer and Docker image today. - 3
Open a project
Point AIDEN at a local git repository. It analyzes the codebase into a technical and business overview, detects your installed CLIs, and inherits your Claude Code MCP setup automatically. If you already juggle multiple Claude Code terminals, Claude Code orchestration replaces the tab pile. - 4
Ship your first story
Create a story, review and approve the drafted spec, and watch the card move across In Progress, Review, and Done. When several stories run at once you are in the multi-agent coding workflow, and the PR is one click from the finished card.
The Free plan covers one project with no credit card. Solo is $19/month (or $169 lifetime, a limited launch round), and Team is $10 per seat per month with a 3-seat minimum. See full pricing.