Run Agents App in transient mode when VS Code is launched with --transient#312693
Merged
Run Agents App in transient mode when VS Code is launched with --transient#312693
Conversation
…sient When VS Code is launched with --transient, the Agents App now also runs in transient mode with its own dedicated temporary user data and extensions directories created under the same temp parent folder. - Add `--agents-user-data-dir` and `--agents-extensions-dir` CLI args - In --transient handling, create `agents-data/` and `agents-extensions/` subdirs alongside existing temp dirs and pass them via the new args - In `launchSiblingApp`, forward transient agents dirs as `--user-data-dir` and `--extensions-dir` to the sibling Agents process Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Contributor
📬 CODENOTIFYThe following users are being notified based on files changed in this PR: @deepak1556Matched files:
|
Contributor
There was a problem hiding this comment.
Pull request overview
Updates VS Code’s --transient launch flow so that when the Agents sibling application is launched, it can use its own transient user-data and extensions directories under the same temporary parent folder.
Changes:
- Add new CLI args:
--agents-user-data-dirand--agents-extensions-dir. - In
--transientlaunches, createagents-data/andagents-extensions/temp subfolders and include them in the relaunch hint. - When launching the sibling Agents app, forward these directories as
--user-data-dirand--extensions-dir.
Show a summary per file
| File | Description |
|---|---|
| src/vs/platform/native/electron-main/nativeHostMainService.ts | Forwards agent-specific transient directories to the sibling app as --user-data-dir / --extensions-dir. |
| src/vs/platform/environment/node/argv.ts | Registers the two new CLI args in the node argv option map. |
| src/vs/platform/environment/common/argv.ts | Extends NativeParsedArgs with the new agent-specific directory args. |
| src/vs/code/node/cli.ts | Generates agent-specific transient directories and includes them in argv + relaunch message under --transient. |
Copilot's findings
- Files reviewed: 4/4 changed files
- Comments generated: 1
…nts app To ensure the sibling Agents process is fully isolated in transient mode, forward shared-data-dir and agent-plugins-dir in addition to user-data-dir and extensions-dir. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
bpasero
approved these changes
Apr 27, 2026
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.
Summary
When VS Code is launched with
--transient, the Agents App now also runs in transient mode with its own dedicated temporary user data and extensions directories, created under the same temp parent folder.Changes
argv.ts(common + node): Add--agents-user-data-dirand--agents-extensions-dirCLI argscli.ts: In the--transientblock, createagents-data/andagents-extensions/subdirs alongside the existing temp dirs, pass them via the new args, and include them in the relaunch hint messagenativeHostMainService.ts: When launching the sibling Agents app (launchSiblingApp), forward the transient dirs as--user-data-dirand--extensions-dirso the Agents process also runs fully isolated in transient mode