Coder RemoteThe Coder Remote extension connects your editor to Coder workspaces with a single click.
Features
Getting StartedLaunch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Alternatively, manually install the VSIX from the latest release. All extension settings are under the URI HandlerThe extension registers a URI handler that can open workspaces from outside
the editor, such as links on the Coder dashboard. The scheme matches the
editor (
|
| Parameter | Required | Description |
|---|---|---|
owner |
Yes | Username of the workspace owner. |
workspace |
Yes | Name of the workspace. |
agent |
No | Agent name (not ID). If omitted or unmatched in a multi-agent workspace, a picker is shown. |
folder |
No | Absolute path inside the workspace to open. If omitted, a recently opened folder for this workspace is used (a picker is shown when there are several); with no recents, the window opens without a folder. |
openRecent |
No | Open the most recently used folder for this workspace, skipping the picker. True when present without a value or set to true. Ignored when folder is set. |
url |
No | Coder deployment URL. If omitted, the extension prompts for it (pre-filled with the current deployment). |
token |
No | Session token for authentication. If omitted, the existing session is used or a login flow is started. |
/openDevContainer
Opens a dev container running inside a workspace.
| Parameter | Required | Description |
|---|---|---|
owner |
Yes | Username of the workspace owner. |
workspace |
Yes | Name of the workspace. |
agent |
Yes | Agent name the dev container runs on. |
devContainerName |
Yes | Name of the dev container. |
devContainerFolder |
Yes | Folder to open inside the dev container. |
localWorkspaceFolder |
No | Local path of the dev container project. Required if localConfigFile is set. |
localConfigFile |
No | Local path to the devcontainer.json file. |
url, token |
No | Same as /open. |
