Integrated development environments are shifting how engineering teams handle post-coding tasks by shifting AI coding agents directly into pull request management.

Visual Studio Code version 1.136 alters the developer workflow by treating agent sessions as persistent units of work rather than isolated chat prompts.

In short

  • Agent sessions in VS Code 1.136 now persist past initial code generation to manage pull request lifecycle tasks.

  • Agent Merge handles unresolved review feedback, merge conflicts, and failed CI checks automatically within the workspace.

  • Multi-root workspace support for Copilot and Claude allows developers to manage complex project dependencies during agent execution.

  • Teams must configure agent permissions carefully to prevent unmonitored code merges into protected branches.

Extending Agent Sessions Beyond Code Generation

Traditional AI coding tools stop generating code once the initial prompt completes, leaving human developers to handle git diffs, review comments, and integration tests. VS Code 1.136 addresses this bottleneck by maintaining persistent agent sessions that track ongoing pull request status. This update treats the agent session as the primary unit of development work.

Developers receive direct notifications when an agent session requires intervention. The environment organizes related chats around specific pull requests, reducing the context switching required to track multiple AI operations across complex repositories.

Automating Pull Request Resolution with Agent Merge

The most notable addition in this release is Agent Merge, an experimental feature designed to monitor pull requests and task agents with clearing merge blockers. When required continuous integration checks fail or merge conflicts arise, the agent continues working to resolve the underlying code discrepancies.

The agent can address unresolved review feedback from human reviewers or automated linters. Once the blockers are cleared, developers can configure the tool to automatically merge the pull request or queue it for final sign-off, tightening the feedback loop between code generation and production deployment.

Managing Multi-Root Workspaces and Agent Oversight

Complex software architectures often span multiple repositories or package structures. VS Code 1.136 introduces experimental multi-root workspace support for both Copilot and Claude agent sessions, allowing agents to inspect and modify code across multiple related directories simultaneously.

While this capability improves velocity on multi-package projects, engineering leads must enforce strict review gates. Letting agents resolve review feedback and push merges autonomously requires clear guardrails to prevent regressions from slipping into production codebases.

As AI coding tools take on pull request resolution, engineering teams must balance automation speed with rigorous code review standards.

Proper configuration of agent permissions and CI gates remains essential to maintain architecture integrity.