Source Intelligence

DisclaimerUnofficial, and not affiliated with Anthropic. Nearly all of this is read straight out of what ships: npm bundles, captured prompts, published docs. Anthropic's own notes go in verbatim, marked as theirs. The rest is my reading, and every entry carries the strings behind it. If one looks wrong, vote it down and say why.

All of v2.1.16 Home All releases olderv2.1.15 v2.1.17newer
Claude Code v2.1.16

New CLI Flags for Teammate Mode

What

New command-line flags for configuring teammate spawning behavior.

Usage
claude --teammate-mode tmux          # Force tmux backend
claude --teammate-mode in-process    # Force in-process backend
claude --teammate-mode auto          # Auto-select based on environment

# Used internally when spawning teammates:
claude --agent-id <id> --agent-name <name> --team-name <name>
claude --agent-color <color>
claude --plan-mode-required
claude --parent-session-id <id>
Details
  • --teammate-mode: Choose how teammates are spawned (tmux, in-process, auto)
  • --agent-id, --agent-name, --team-name: Identity flags for teammate sessions
  • --agent-color: Assign a color for the teammate's UI
  • --plan-mode-required: Require plan approval before implementation
  • --parent-session-id: Link to parent session for analytics
Evidence

CLI flag construction at lines 5617-5622, 7145-7193 with flags "--agent-id", "--agent-name", "--team-name", "--agent-color", "--plan-mode-required"

Strings lifted out of the shipped bundle, so the claim above can be checked against them.

See this entry in the whole of v2.1.16 →