Featured image of post JetBrains Air: An Agentic IDE That Runs Multiple AI Agents in Parallel

JetBrains Air: An Agentic IDE That Runs Multiple AI Agents in Parallel

Introducing JetBrains Air, an agentic development environment that orchestrates Claude, Codex, Gemini, and Junie to run tasks concurrently across Local, Git Worktree, and Docker execution environments.

You have a bug to fix, tests to write, and a module to refactor. The old way is to do them one at a time, or juggle multiple terminals yourself. JetBrains Air lets you delegate each task to a different AI agent and run them all simultaneously without interference.

Air isn’t an AI panel bolted onto an existing IDE. It’s a new development environment designed from the ground up for delegating tasks to agents.

Supported Agents

Air ships with four agents:

AgentProviderStrength
Claude AgentAnthropicLong-context understanding, code generation
OpenAI CodexOpenAICode-specialized model
Gemini CLIGoogleConfigurable thinking mode for reasoning depth
JunieJetBrainsJetBrains’ own agent, included with AI subscription

Once a task starts, you can switch models but not providers. A Claude task can move from Sonnet to Opus, but can’t switch to Codex mid-task.

Air also supports the Agent Client Protocol (ACP), so more third-party agents can plug in over time.

Three Execution Environments

Each task runs in one of three environments:

Local Workspace

Runs directly in your working directory. Fastest startup, zero configuration, but agent changes hit your files directly.

Best for: quick iterations where isolation isn’t needed.

Git Worktree

Creates a separate working copy of the same repo, isolating changes to another branch.

Configuration lives in .air/worktree.json:

1
2
3
4
5
6
7
8
9
{
  "environment": [
    {"type": "env", "key": "NODE_ENV", "value": "test"},
    {"type": "envFile", "path": "~/.env.test"}
  ],
  "setup": {
    "macos": ["npm install"]
  }
}

Best for: running multiple tasks that touch the same files without conflicts.

Docker

Runs inside a container with complete isolation. Requires Docker Desktop.

Configuration lives in .air/docker.json:

1
2
3
4
5
6
7
8
{
  "image": "ubuntu:24.04",
  "environment": [
    {"type": "env", "key": "TEST", "value": "12345"}
  ],
  "setup": ["apt-get update", "apt-get install -y jq"],
  "user": {"user": "node", "group": "node"}
}

Custom images must include Git and /bin/sh.

Best for: full isolation where nothing should touch the host system.

Comparison

LocalWorktreeDocker
Startup speedFastestFastSlower
Isolation levelNoneFile/branchComplete
Configuration neededNoOptionalOptional
Depends on host envYesYesNo

Task Lifecycle

A task moves through these stages:

  1. Define: press ⌘+\ to create a new task, describe what you want in chat
  2. Add context: attach files, folders, Git commits, symbols, images, MCP servers
  3. Choose permission mode:
    • Ask Permission: prompts before every file edit or command
    • Auto-Edit: automatically accepts file changes
    • Plan: analyzes without making changes
    • Full Access: no prompts at all
  4. Execute: the agent starts working
  5. Input required: the agent pauses and notifies you when it needs a decision
  6. Done: review changes, commit, push

Use ⌘+1 to see all task states and switch between them.

Parallel Multitasking

This is Air’s core value proposition. You can run multiple tasks simultaneously:

  • One agent fixing a bug
  • Another writing tests
  • A third refactoring a module

Each task runs independently with its own agent session. When a task needs your attention, you get a notification. Handle it and switch back.

If multiple tasks touch the same files, use Git Worktree or Docker to prevent conflicts.

MCP Server Integration

Air supports Model Context Protocol for extending agent capabilities:

  1. Open settings with ⌘+,
  2. Navigate to AI | MCP Servers
  3. Click Add Global MCP Server
  4. Paste the server configuration in JSON format

This lets agents access databases, call APIs, or interact with external systems.

Web Preview

For web projects, Air includes a built-in preview. The dev server launches automatically and shows a preview window. You can switch between preview and source modes, with responsive sizing built in.

Pricing and Availability

  • Platform: macOS only for now; Windows and Linux planned for 2026
  • Cost: Air itself is free to download
  • AI billing:
    • JetBrains AI Pro subscribers get all agents included
    • You can bring your own API keys (Anthropic, OpenAI, Google)
    • If both are configured, your own keys are used first

Real-World Experience (From a JetBrains Developer)

Valerii Tepliakov, a developer on the Air team, shared his adoption journey:

  • Started skeptical β€” cared too much about code quality to trust AI output
  • Began with small, reversible tasks alongside IntelliJ IDEA
  • Gradually expanded scope, delegating multiple concurrent tasks
  • Eventually Air became his primary tool; IntelliJ reserved for debugging only

His key insight: agents struggle with architecture and design decisions. Make the foundational choices yourself, then delegate implementation details.

How Air Differs from Claude Code / Cursor

Air occupies a different niche:

  • Claude Code: single agent in a terminal, one task at a time
  • Cursor: AI embedded in an IDE, augmenting your editing experience
  • Air: multi-agent task manager where you’re the manager and agents are workers

Air doesn’t replace your IDE. It handles agent workflow; you keep using IntelliJ / VS Code for fine-grained editing and debugging.

When Air Makes Sense

  • Your project is large enough to have multiple independent tasks running in parallel
  • You’d rather review code than write it yourself
  • You want to compare agents (e.g., run the same task with Claude and Codex to see which produces better results)
  • Your team already decomposes work into well-defined tasks

If your workflow is “focus on one thing at a time, think while you code,” Air’s multi-task architecture may not be what you need.

References