You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Release 0.6.0: per-agent Update button, accurate updates, WSL option
- Add a per-agent Update button in the sidebar (next to Launch) for agents that
have a known update command: codex update, copilot update, kilo upgrade,
hermes update, claude update, npm reinstall for Crush.
- New updateCommand agent field with each CLI's official update command. autoUpdate
now runs it instead of a blind reinstall; self-updating CLIs run nothing.
- superCli.autoUpdate is now off by default (most CLIs self-update).
- New superCli.useWsl: on Windows, open agents in a WSL terminal (native VS Code
support); under WSL agents use their Unix install/update commands.
Copy file name to clipboardExpand all lines: package.json
+45-5Lines changed: 45 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@
3
3
"displayName": "Super CLI",
4
4
"description": "One VS Code extension to launch any coding agent CLI (Claude Code, Codex, Copilot, Antigravity, and your own) from a single side terminal.",
"description": "Optional command to update the CLI to its latest version (its official update/upgrade command, or an npm reinstall). Shown as an update button in the sidebar, and used by superCli.autoUpdate. Use a string, or an object with \"unix\" and \"windows\" keys for OS-specific commands.",
251
+
"oneOf": [
252
+
{
253
+
"type": "string"
254
+
},
255
+
{
256
+
"type": "object",
257
+
"properties": {
258
+
"unix": {
259
+
"type": "string"
260
+
},
261
+
"windows": {
262
+
"type": "string"
263
+
}
264
+
}
265
+
}
266
+
]
233
267
}
234
268
}
235
269
}
@@ -256,9 +290,15 @@
256
290
},
257
291
"superCli.autoUpdate": {
258
292
"type": "boolean",
259
-
"default": true,
293
+
"default": false,
294
+
"scope": "window",
295
+
"description": "Run each coding agent CLI's update command on launch, when it has one. Off by default, since most CLIs already update themselves. Enable to have Super CLI update them before launching."
296
+
},
297
+
"superCli.useWsl": {
298
+
"type": "boolean",
299
+
"default": false,
260
300
"scope": "window",
261
-
"description": "Update each coding agent CLI to its latest version on launch, using its install command (npm reinstall, or the official installer script). Disable to launch without updating."
301
+
"description": "On Windows, open coding agents in a WSL terminal instead of the default shell (uses VS Code's native WSL support). Ignored on macOS and Linux."
0 commit comments