VS Code: Agent Host Gets Its Session Architecture Rewired
A large multi-week effort to make the Agent Host orchestrator own session and chat lifecycle landed, alongside a cluster of fixes for session state leaking across workspaces, telemetry privacy, and stale UI. The through-line: as agent sessions get more complex, ownership and isolation boundaries needed hardening.
Duration: PT2M53S
Episode overview
This episode is a short developer briefing from VS Code.
It explains recent repository work in plain language.
- Show: VS Code
- Published: 2026-08-12T13:05:47Z
- Audio duration: PT2M53S
Transcript excerpt
This excerpt keeps the crawler page concise. Listen to the episode or use the RSS feed for the full update.
Good morning. It's August 12th, and today's codebase activity is dominated by one theme: Agent Host session management is getting a structural overhaul.
The biggest piece is Sandeep Somavarapu's massive rework, commit 150119b, which moves session ownership into the orchestrator so agents talk only in chats, not sessions directly. This is dozens of incremental commits — introducing a session registry, collapsing provisioning into a single chat-creation call, and…
Second theme: telemetry hygiene. Amunger's PR #330362 hashes session identifiers and buckets provider names into fixed categories before anything gets emitted. Roblourens' PR #330332 normalizes hung-turn activity names and API endpoints so telemetry stops mistakenly treating slash-shaped strings as file paths. And…
Third, smaller but worth noting: vijayupadya's PR #330389 re-lands the TAS assignments endpoint after a proxy-related regression forced a revert — the fix routes both new and legacy endpoints through the same proxy-aware transport this time.
On the lighter side, the chat pet got new physics — wall throws in PR #330275 and animation cleanup in PR #330399 — alongside real UX fixes like Ctrl+F search across chat…
What…