GitHub’s July 30 roundup covers VS Code 1.127 through 1.131 and makes agent work more visible, isolated, and reviewable. The biggest additions are not another chat button. They are worktree support across Copilot, Claude, and Codex sessions, subagent activity tracking, multi-chat sessions, and faster diff review.
What changed in the Agents window
- Open files and diffs beside the conversation with a shared tab bar.
- See additions and deletions per file and switch diff layouts.
- Start Copilot, Claude, or Codex in isolated Git worktrees.
- Group and reorder sessions.
- Inspect a subagent’s model, elapsed time, active tool, and conversation.
- Respond to failed CI and pull-request review updates from chat.
Multi-chat is more than UI polish
A single Claude agent session can contain related chats with separate histories and models. Developers can fork a conversation into a peer chat without re-explaining the original context. That makes alternate approaches easier to compare, but it also creates more state to govern. Teams need to know which branch produced the accepted patch.
| New capability | Good use | Guardrail |
|---|---|---|
| Worktree sessions | Parallel isolated changes | One owner for integration and tests |
| Peer chats | Compare two approaches | Record why one was selected |
| Subagent tracking | Inspect delegated work | Do not treat visibility as validation |
| BYOK in Agents | Provider choice | Apply enterprise data policy |
Other useful additions
Copilot vision is generally available for images and PDFs. Business and Enterprise users can see current-cycle AI credit usage. Messages beginning with an exclamation mark can run terminal commands. Prompt files can be migrated into reusable skills. Experimental dictation works across chat, editor, and terminal, with optional transcript cleanup.
A sensible rollout
Enable worktrees first, because isolation reduces collision risk. Define when subagents are allowed, require tests in each worktree, and keep merge authority with a person. Review BYOK data handling before allowing private repositories to reach a new provider.
Bottom line
VS Code’s July releases move agentic coding toward a managed workspace. The practical win is not maximum parallelism. It is being able to see, isolate, compare, and review concurrent agent work without losing the repository’s source of truth.