← Claude Docs

Week 20 · May 11–15, 2026 - Claude Code Docs

Claude Docs · June 3, 2026
Claude Code agents now displays a unified dashboard for managing multiple parallel sessions, showing their status as running, blocked, or completed. A new /goal feature enables Claude to automatically continue working across turns until specified completion conditions are met without manual prompting. Fast mode has been upgraded to run on Opus 4.7 by default, delivering approximately 2.5x faster performance while maintaining unchanged pricing.

Detailed Analysis

Claude Code's Week 20 release (May 11–15, 2026) introduces two headline features that meaningfully expand its autonomous capabilities: a multi-agent dashboard called "claude agents" and a goal-driven execution system. The agent dashboard provides a unified interface for managing multiple concurrent Claude Code sessions, displaying their status—running, blocked, or complete—as a list of rows that users can monitor and selectively engage. Each background session persists independently of a terminal, enabling developers to dispatch several distinct workstreams simultaneously, such as a bug fix, a pull request review, and a flaky-test investigation, and only intervene when a session requires human input. The goal-setting feature complements this by allowing users to define a completion condition in natural language; Claude then autonomously iterates across turns, with a fast model verifying after each turn whether the condition has been met, continuing work until the goal is satisfied rather than returning control to the user at each step.

The upgrade of `/fast` mode from Opus 4.6 to Opus 4.7 as the default reflects continued iterative improvement in model performance without disrupting pricing. Fast mode, priced at $30/$150 per million tokens, is positioned for high-throughput use cases like rapid iteration and live debugging, and the 4.7 upgrade delivers the same quality-to-speed ratio—approximately 2.5x faster than standard mode—on an improved underlying model. Anthropic provides an environment variable override for users who need to pin to the prior model version, a practical concession to production stability concerns.

The supporting changes in this release reveal a systematic effort to harden the plugin and hook ecosystem for professional and enterprise use. New dispatch flags for `claude agents` give developers fine-grained control over how background sessions are configured, covering directory scoping, model selection, permission modes, and MCP configuration. Hook improvements—including the `string[]` exec form that bypasses shell interpretation to eliminate quoting vulnerabilities, the `continueOnBlock` option that feeds rejection reasons back to Claude rather than terminating a turn, and the `terminalSequence` field for out-of-band desktop notifications—collectively address real friction points in automated pipeline construction. The restriction of Remote Control, scheduling, and Claude.ai MCP connectors when API key authentication is active represents an important architectural boundary, cleanly separating the developer/API surface from the consumer Claude.ai surface.

These developments fit within a broader industry trajectory toward ambient, long-running AI agents that require minimal per-step human direction. The goal-condition pattern Claude Code is implementing—defining a verifiable end state and letting the model loop until it is reached—mirrors approaches being explored across the agentic AI landscape, where the central design challenge is specifying intent precisely enough for autonomous execution while maintaining human oversight at meaningful checkpoints. Claude Code's agent dashboard makes that oversight tractable at scale by surfacing session state without requiring users to babysit individual terminals. The plugin ecosystem enhancements further suggest Anthropic is building toward a model where Claude Code becomes an extensible platform rather than a single-purpose tool, with third-party skill and LSP integrations that can be audited for token cost and component inventory before deployment.

Read original article →