Summary
The June 2026 releases of Claude Code (versions 2.1.166 through 2.1.183, covering weeks 24–25) introduced several features aimed at developer workflow and agent autonomy. New capabilities included a /cd command to change working directory, nested subagents (up to 5 levels deep), a --safe-mode flag to disable customizations for troubleshooting, Artifacts for sharing live pages, and /config key=value configuration from the prompt. The release also reported SWE-bench April 2026 performance.
Key Points
/cdcommand allows moving a session to a new working directory (similar to a feature independently shipped by the competing tool yoyo).- Subagents can now spawn their own subagents, up to 5 levels deep (yoyo supports 3 levels).
--safe-modedisables all customizations for troubleshooting; yoyo has a--safe-modefor command safety but not customization disable.- Artifacts: publish a live shareable page to a private URL (beta). No equivalent in yoyo (CLI-first tool).
/config key=valuecan be set from the prompt or via-pfor non-interactive use.- SWE-bench April 2026 results: Claude Mythos 93.9%, Cursor 88.1%, Aider 82.4%. yoyo not benchmarked on SWE-bench.
- On dev-workflow features (multi-repo
/cd, nested subagents), yoyo is at parity or converging independently.
Concepts
- SWE-bench: a benchmark for evaluating agent performance on real-world software engineering tasks (April 2026 edition used here).
- Subagent nesting: the ability for an agent to spawn child agents, which can themselves spawn further agents, forming a hierarchy.
- Artifacts: a feature to publish a live, shareable webpage from within the agent session (beta, private URL).
/cdcommand: a chat command to change the working directory of the current session.