惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

The Cloudflare Blog
L
LangChain Blog
WordPress大学
WordPress大学
V
V2EX
M
MIT News - Artificial intelligence
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Stack Overflow Blog
Stack Overflow Blog
J
Java Code Geeks
F
Fortinet All Blogs
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
腾讯CDC
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
D
Docker
Recent Announcements
Recent Announcements
GbyAI
GbyAI
博客园 - 叶小钗
小众软件
小众软件
Hugging Face - Blog
Hugging Face - Blog
T
The Blog of Author Tim Ferriss
人人都是产品经理
人人都是产品经理
Engineering at Meta
Engineering at Meta
Y
Y Combinator Blog
雷峰网
雷峰网
The GitHub Blog
The GitHub Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
JetBrains Air: An Agentic IDE That Runs Multiple AI Agent...
Recca Tsai · 2026-05-06 · via DEV Community

Recca Tsai

Originally published at recca0120.github.io

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:

Agent Provider Strength
Claude Agent Anthropic Long-context understanding, code generation
OpenAI Codex OpenAI Code-specialized model
Gemini CLI Google Configurable thinking mode for reasoning depth
Junie JetBrains JetBrains' 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:

{
  "environment": [
    {"type": "env", "key": "NODE_ENV", "value": "test"},
    {"type": "envFile", "path": "~/.env.test"}
  ],
  "setup": {
    "macos": ["npm install"]
  }
}

Enter fullscreen mode Exit fullscreen mode

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:

{
  "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"}
}

Enter fullscreen mode Exit fullscreen mode

Custom images must include Git and /bin/sh.

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

Comparison

Local Worktree Docker
Startup speed Fastest Fast Slower
Isolation level None File/branch Complete
Configuration needed No Optional Optional
Depends on host env Yes Yes No

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