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.72 Home All releases olderv2.1.71 v2.1.73newer
Claude Code v2.1.72

Remote Control Spawn Mode Overhaul

What

The remote control --spawn-worktree-sessions and --spawn-same-dir-sessions flags are replaced with a unified --spawn <mode> flag and a new --capacity flag.

Usage
claude remote-control --spawn=worktree --capacity=4
claude remote-control --spawn=same-dir
claude remote-control --spawn=session
Details
  • --spawn accepts same-dir (default), worktree, or session
  • --capacity sets the max concurrent sessions (not valid with --spawn=session, which has fixed capacity 1)
  • New --create-session-in-dir / --no-create-session-in-dir flag controls whether a session is pre-created in the current directory
  • Interactive spawn mode picker (w to toggle spawn mode) when starting remote control
  • Spawn mode preference is saved per-project
  • Falls back to same-dir if saved mode is worktree but the directory isn't a git repo
  • Error message updated: "Error: Multi-session Remote Control is not enabled for your account yet."
Evidence

New spawn mode infrastructure (search for "spawn mode", "--spawn", "--capacity")

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.72 →