← Back to all entries
2026-02-08 🧭 Daily News

Agent Teams Flag Rolls Out to All Max & Plugin Marketplace Opens

Agent Teams Flag Rolls Out to All Max & Plugin Marketplace Opens — visual for 2026-02-08

🧭 Agent Teams Experimental Flag Enabled for All Max Subscribers — No Waitlist

Following Thursday's Agent Teams launch with the Opus 4.6 release, Anthropic has enabled the CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS flag for all Claude Code Max subscribers — no waitlist, effective immediately. The first weekend of community access has already produced a wave of shared worktree configurations on GitHub and developer forums, particularly for common migration patterns: React version upgrades, API versioning refactors, and test suite parallelisation.

Anthropic's engineering blog noted that the lead-agent orchestration model — where a primary agent decomposes a task and delegates to subagents in isolated worktrees — was inspired by internal workflows used to build Claude itself. This weekend's community experimentation is providing early signal on how developers adapt the pattern outside of Anthropic's controlled environment.

Community patterns emerging: The most effective shared configurations use one agent per bounded module with a shared AGENTS.md file describing interfaces, and require each subagent to write integration tests before touching implementation. This "test-first contract" pattern is cited in multiple community posts as the key to preventing agent drift.

Claude Code agent teams multi-agent retrospective

🧭 Claude Code Plugin Marketplace Opens with npm Registry Support

Alongside the Agent Teams rollout, Anthropic has launched the Claude Code plugin marketplace with support for npm-hosted packages. Any developer can now publish a Claude Code skill as a standard npm package using the claude-code-plugin keyword, making it discoverable in the registry. Plugins can expose new slash commands, pre-built MCP connectors, or domain-specific agent personas.

Enterprise workspace administrators gain a control plane to allow-list or block-list plugins by package name or publisher — addressing compliance teams' concerns about unapproved tools entering their Claude Code deployments. The marketplace mirrors VS Code's extension ecosystem in spirit, and directly addresses a recurring developer request: the ability to share and version project-specific Claude Code configurations across teams without informal dotfile distribution.

Claude Code plugins marketplace developer tools retrospective