Microsoft released Visual Studio Code 1.123 on June 3, expanding its AI-assisted development capabilities with features that reflect the editor’s direction: toward a more agentic, context-aware workflow.

The update is relatively focused, but several additions stand out to developers who rely on Copilot and other AI models day to day.

A Million-Token Context Window

One of the headline changes is support for 1-million-token context windows for compatible models from Anthropic and OpenAI, including Claude Opus 4.7 and GPT-5.5. That’s a meaningful jump. Larger context lets you work with larger codebases and longer conversations without the model losing track of what came before.

There’s a trade-off. Microsoft notes that larger context windows consume more tokens per interaction, which matters for teams on usage-based billing. But for developers working on complex projects, the ability to keep more code in context without manual truncation is a practical productivity gain.

Session Sync and Chronicle

VS Code 1.123 adds session sync, which automatically backs up your chat sessions to GitHub. Sessions capture conversation history, files touched, repository context — including branch and timestamps — and referenced pull requests, issues, and commits.

The companion feature is Chronicle, accessed via /chronicle in chat. It lets developers query their session history in natural language, generate standup reports, search past work by topic or file, and get productivity suggestions based on coding patterns. For engineers who context-switch frequently or manage multiple projects, having a searchable record of past AI-assisted work could save real time.

Agents’ Window Goes Parallel

The Agents window — a companion interface for running and reviewing agent sessions — now supports multiple open sessions side by side. Developers can open sessions next to each other by dragging from the session list or using Alt+click. One session is always “active” at a time, meaning the Terminal, Files, and Changes views reflect that session’s state.

Sessions can be pinned to prevent them from being replaced when selecting others. A maximize action expands any session to full width without closing others. The feature is still in preview, but it addresses a real workflow gap: the ability to compare two agent runs or review completed work while running a new one.

Research Agent

Also in preview — and currently limited to Copilot CLI sessions in Insiders — is the research agent. Triggered via /research in chat, it performs deep research on a topic by pulling from the codebase, relevant GitHub repositories, and the web, then produces a cited Markdown report. It’s read-only by design, so it investigates without modifying code.

This is aimed at cases where a quick chat response isn’t enough — understanding an unfamiliar library, comparing implementation approaches, or learning how a specific API behaves in context.

Integrated Browser Updates

The integrated browser gets a small but useful update: you can now favorite pages and access them quickly from a redesigned URL bar that also shows open tabs. On the screenshot side, two new options complement the existing Add Screenshot to Chat feature — area screenshots and full-page screenshots (the latter is experimental and requires enabling a setting).

A Small But Useful Safety Net

VS Code 1.123 also adds a two-hour delay before automatically applying extension updates. The intent is to provide a buffer against problematic or potentially compromised releases. Extensions from Microsoft, GitHub, and OpenAI are exempt from the delay and still update immediately. You can still trigger an immediate manual update at any time.

What It Adds Up To

The session sync feature, in particular, signals something larger than just a productivity feature. Mitch Ashley, VP and Practice Lead for Software Lifecycle Engineering and AI-Native Software Engineering at The Futurum Group, sees it as foundational infrastructure for teams running agentic workflows.

“Capturing the conversation, files touched, and repository context behind each agent session turns the editor into a system of record for how software gets built,” Ashley said. “The development process becomes observable, and the reasoning behind a change becomes recoverable. That record is verification infrastructure. Teams adopting agentic coding can govern and audit agent output only to the degree they can reconstruct how it was produced, so the provenance of a change is becoming as important as the change itself.”

Taken together, VS Code 1.123 continues a clear pattern: Microsoft is embedding AI more deeply into the core development workflow rather than treating it as an add-on. Developers who spend significant time in VS Code with Copilot enabled will find practical value in most of these additions — and for teams moving toward agentic development, the session sync and Chronicle features may matter more than they appear at first glance.

Share.
Leave A Reply