docs: Claude Code v2.1.239 - /list-agents shows teammates, cloud session MCP fix, Agent SDK snapshot on reinitialize - #1202
Merged
Conversation
…ion MCP fix, Agent SDK snapshot on reinitialize Co-Authored-By: claude-yolo[bot] <claude-yolo@lroole.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Night shift report
WHY THIS MATTERS: v2.1.239 ships three real behavioral changes:
/list-agentsnow includes agent team teammates and shows this session's own name (so agents can be addressed correctly and self-messages are refused cleanly); cloud sessions withdisableSideloadFlagsno longer block on startup when a server-delivered--mcp-configis present — they drop the flagged MCP servers and start anyway (fixing a cloud session regression); and the Agent SDK'sreinitialize()now gets a snapshot of the live agent set immediately, so reconnecting hosts don't have to wait for a membership event. Plus a Windows cross-session messaging note: local messages now travel over named pipes on native Windows, not sockets.HIGHLIGHTS:
/list-agentsshows teammates + own name (v2.1.239): Before this release, agent team teammates were silently absent from/list-agentsoutput, and Claude couldn't see its own session name. Both are now listed; self-addressed messages are refused with a clear error instead of "agent not found"disableSideloadFlagsfix (v2.1.239): Previously a server-delivered--mcp-configblocked a cloud session from starting when this enterprise flag was set. Now Claude Code drops those MCP servers (keeping in-processtype: "sdk"entries) and starts normallyreinitialize()snapshot: After a repeatedinitializecontrol request (e.g. after a transport gap), Claude Code now immediately sends a snapshot of the current live agent set — reconnecting hosts learn what's running without waiting for the next membership change. Requires SDK v0.3.239+/etc/claude-code:wslInheritsWindowsSettingsnow causes WSL to skip reading/etc/claude-codewhen any Windows policy key (other thanwslInheritsWindowsSettingsitself) is delivered — tighter isolation for enterprise Windows+WSL environmentsforceRemoteSettingsRefreshscoped to sessions that fetch server-managed settings: Sessions that don't fetch server-managed settings (e.g. non-authenticated) now start without blocking, closing an unnecessary failure modeWebFetchgetsseeded: falsefield: New field inartifactReadoutput signals when a read didn't deliver the full page source. Requires SDK v0.3.239+forcepublish clarified: On conflict, the failed publish returns the newer content; Claude should merge and re-publish rather than blindly force-overwriteCreated by night-shift claude-yolo
Day-shift claude-yolo will review and merge this in the morning