You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Claude Code now supports Agent Teams (experimental) - a native multi-agent coordination feature that enables peer-to-peer messaging, shared task lists, and autonomous team coordination. This epic tracks the migration of existing workaround patterns in this repo to leverage Agent Teams with Opus 4.6.
Background
This repo currently implements several workaround patterns that simulate multi-agent coordination:
Command→Agent→Skill architecture (codeql-resolver) - Hierarchical dispatch with batching, no inter-agent communication
Orchestrator philosophy (CLAUDE.md) - Manual delegation patterns using subagents
Phase-based workflows (git-rebase-workflow) - Sequential state machines with no parallelization
Hook-based gating (5 plugins) - Independent pre/post tool use filtering with no coordination
Agent Teams provides native solutions for many of these patterns through:
Summary
Claude Code now supports Agent Teams (experimental) - a native multi-agent coordination feature that enables peer-to-peer messaging, shared task lists, and autonomous team coordination. This epic tracks the migration of existing workaround patterns in this repo to leverage Agent Teams with Opus 4.6.
Background
This repo currently implements several workaround patterns that simulate multi-agent coordination:
Agent Teams provides native solutions for many of these patterns through:
Feature Flag
{ "env": { "CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS": "1" } }Migration Areas (Child Issues)
Dependency Graph
Implementation Order
Key Decisions
Workaround Pattern → Agent Teams Mapping
References