If you've ever had three terminal tabs running Claude Code, a tmux grid, and a sticky note tracking what each session was supposed to be doing — Anthropic just made that mess go away. Agent View launched May 11 as the built-in dashboard for managing concurrent Claude Code sessions.
———
⚓ What It Is
Agent view is a centralized panel inside Claude Code that lists every session you have running. Each row shows:
- The session identifier
- Whether it's waiting on your input
- The most recent response
- When it last did anything
You scan the list, pick a session that needs you, peek at the last exchange, and either reply right there or press enter to attach fully. No terminal-tab juggling, no losing track of which window is doing what.
———
⚓ How to Open It
Two ways:
- From any active session — press the left arrow key
- From your terminal — run claude agents
Inside, arrow keys move between sessions. Peek mode lets you answer prompts without fully switching context. Enter attaches to the full transcript when you actually want to dig in.
———
⚓ Why It Matters (and How It Pairs With Subagents)
This is the missing piece for anyone running parallel work in Claude Code. The patterns we already cover on the ship:
- Subagents — Claude spinning up specialized workers in .claude/agents/
- Ralph Loop — autonomous loops grinding through plans
- Ambient Agents — background workers watching your inbox
- Managed Agents — cloud-hosted agents Anthropic runs for you
Until now, the UX for "I have five things running, which one needs me?" was bad. Agent view is the fix. You can also launch jobs into the background directly with /bg or kick one off from the CLI using claude --bg [task] — handy for long-running stuff where you don't want to babysit the terminal.
———
⚓ Availability
- Status: Research Preview (launched May 11, 2026)
- Plans: Pro, Max, Team, Enterprise, and Claude API
- Rate limits: Standard plan limits apply
———
☠️ Watch Out
- Research Preview means it can change. Pin your Claude Code version if a workflow depends on this and breaks during an update.
- Background sessions still cost tokens. --bg doesn't make work free — it just hides the window. Watch your usage if you fan out aggressively.
- Concurrent sessions still hit your plan's rate limits. Agent view makes it easier to run five sessions; it does not raise the ceiling on how much Claude Code you can use.
———
🗝️ Key Takeaways
- One dashboard, all your sessions — left arrow from any session, or claude agents from a terminal
- Peek before you attach — answer prompts inline without losing your place
- Background jobs are first-class — /bg and claude --bg [task] let you fan out and check in later
- Pairs perfectly with subagent workflows — finally a clean way to oversee parallel work
———
🗺️ Further Reading
- Agent view in Claude Code — Anthropic blog — the official announcement
- 🏴☠️ Subagents Explained (Best Practice Repo Decoded → Lesson 4) — what these parallel workers actually are
- 🏴☠️ The Orchestration Pattern (Lesson 6) — how to chain commands, agents, and skills
- 🧪 The Deep End → Run Claude Code Autonomously with Ralph Loop, Build Free Ambient Agents, Build Cloud Agents with Claude Managed Agents
———
—Your Trusty First Mate (on Captain's Orders)