-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
372 lines (372 loc) · 12.5 KB
/
Copy pathpackage.json
File metadata and controls
372 lines (372 loc) · 12.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
{
"name": "vscode-super-cli",
"displayName": "Super CLI — AI Coding Agent Launcher (Claude Code, Codex, Copilot)",
"description": "Launch any AI coding-agent CLI — Claude Code, Codex, GitHub Copilot, Cursor, Crush, OpenCode and more — from one sidebar and side terminal. Works in VS Code, Cursor, Antigravity & Windsurf on Windows, macOS & Linux.",
"publisher": "mikesoft",
"version": "0.8.0",
"repository": {
"type": "git",
"url": "https://github.com/TheStreamCode/super-cli.git"
},
"author": {
"name": "Michael Gasperini",
"url": "https://mikesoft.it"
},
"bugs": {
"url": "https://github.com/TheStreamCode/super-cli/issues"
},
"homepage": "https://mikesoft.it",
"sponsor": {
"url": "https://github.com/sponsors/TheStreamCode"
},
"license": "MIT",
"icon": "media/icon.png",
"galleryBanner": {
"color": "#0F172A",
"theme": "dark"
},
"pricing": "Free",
"engines": {
"vscode": "^1.93.0"
},
"capabilities": {
"untrustedWorkspaces": {
"supported": "limited",
"description": "Launching a coding agent runs terminal commands in the current workspace. The launcher is disabled until the workspace is trusted.",
"restrictedConfigurations": [
"superCli.agents"
]
}
},
"categories": [
"AI",
"Chat",
"Other"
],
"keywords": [
"ai",
"coding agent",
"ai agent",
"claude code",
"cli",
"terminal",
"copilot",
"cursor",
"codex",
"launcher",
"ai cli",
"antigravity",
"grok",
"opencode",
"droid",
"crush",
"hermes",
"mimo",
"pi",
"vscode"
],
"main": "./out/extension.js",
"activationEvents": [
"onStartupFinished"
],
"contributes": {
"viewsContainers": {
"activitybar": [
{
"id": "superCli",
"title": "Super CLI",
"icon": "media/sidebar-mark.svg"
}
]
},
"views": {
"superCli": [
{
"id": "superCli.agents",
"name": "Coding Agents"
}
]
},
"commands": [
{
"command": "superCli.launch",
"title": "Launch Coding Agent",
"category": "Super CLI",
"icon": {
"light": "./media/toolbar-mark.svg",
"dark": "./media/toolbar-mark.svg"
}
},
{
"command": "superCli.launchAgent",
"title": "Launch Agent",
"category": "Super CLI",
"icon": "$(play)"
},
{
"command": "superCli.launchFavorite",
"title": "Launch Favorite Agent",
"category": "Super CLI"
},
{
"command": "superCli.setFavorite",
"title": "Set as Favorite",
"category": "Super CLI",
"icon": "$(star-empty)"
},
{
"command": "superCli.unsetFavorite",
"title": "Remove Favorite",
"category": "Super CLI",
"icon": "$(star-full)"
},
{
"command": "superCli.updateAgent",
"title": "Update Agent",
"category": "Super CLI",
"icon": "$(arrow-circle-up)"
},
{
"command": "superCli.refresh",
"title": "Refresh Agents",
"category": "Super CLI",
"icon": "$(refresh)"
},
{
"command": "superCli.openSettings",
"title": "Open Settings",
"category": "Super CLI",
"icon": "$(gear)"
}
],
"menus": {
"editor/title": [
{
"command": "superCli.launch",
"group": "navigation"
}
],
"view/title": [
{
"command": "superCli.refresh",
"when": "view == superCli.agents",
"group": "navigation"
},
{
"command": "superCli.openSettings",
"when": "view == superCli.agents",
"group": "navigation"
}
],
"view/item/context": [
{
"command": "superCli.launchAgent",
"when": "view == superCli.agents && viewItem =~ /agent/",
"group": "inline@1"
},
{
"command": "superCli.setFavorite",
"when": "view == superCli.agents && viewItem =~ /^agent(?!.*favorite)/",
"group": "inline@2"
},
{
"command": "superCli.unsetFavorite",
"when": "view == superCli.agents && viewItem =~ /favorite/",
"group": "inline@2"
},
{
"command": "superCli.updateAgent",
"when": "view == superCli.agents && viewItem =~ /updatable/",
"group": "inline@3"
}
],
"commandPalette": [
{
"command": "superCli.launchAgent",
"when": "false"
},
{
"command": "superCli.setFavorite",
"when": "false"
},
{
"command": "superCli.unsetFavorite",
"when": "false"
},
{
"command": "superCli.updateAgent",
"when": "false"
},
{
"command": "superCli.refresh",
"when": "false"
}
]
},
"keybindings": [
{
"command": "superCli.launchFavorite",
"key": "ctrl+alt+a",
"mac": "cmd+alt+a"
}
],
"configuration": {
"title": "Super CLI",
"properties": {
"superCli.agents": {
"type": "array",
"scope": "machine",
"default": [],
"markdownDescription": "Coding agent CLIs to make available in the launcher. Each entry adds a new agent or, when it reuses a built-in `id`, overrides that built-in. Only the user (global) value is read; workspace overrides are ignored for security.\n\nExample:\n```json\n\"superCli.agents\": [\n { \"id\": \"my-agent\", \"label\": \"My Agent\", \"command\": \"my-agent\" }\n]\n```",
"items": {
"type": "object",
"required": [
"id",
"label",
"command"
],
"properties": {
"id": {
"type": "string",
"description": "Unique identifier. Reuse a built-in id (claude, codex, copilot, grok, kilo, antigravity, opencode, command-code, cursor, droid, crush, hermes, mimo, pi) to override that built-in."
},
"label": {
"type": "string",
"description": "Display name shown in the sidebar and the launcher."
},
"command": {
"type": "string",
"description": "Command that starts the CLI. On Windows, quote executable paths that contain spaces."
},
"icon": {
"type": "string",
"description": "Optional VS Code ThemeIcon id, for example sparkle or rocket. Defaults to a terminal icon."
},
"installCommand": {
"description": "Optional command used to install the CLI when it is missing. Use a string for a cross-platform command (e.g. npm), or an object with \"unix\" and \"windows\" keys for OS-specific installers.",
"oneOf": [
{
"type": "string"
},
{
"type": "object",
"properties": {
"unix": {
"type": "string",
"description": "Install command for macOS and Linux."
},
"windows": {
"type": "string",
"description": "Install command for Windows."
}
}
}
]
},
"autoInstall": {
"type": "boolean",
"default": false,
"description": "Offer a guided install when the command is not found. Installation only starts after explicit confirmation."
},
"ensureConfig": {
"type": "object",
"description": "Optional. Before launching, ensure a JSON config file contains certain keys (added only when missing). Useful to opt out of a CLI's companion editor-extension auto-install via its own config switch.",
"required": [
"file",
"defaults"
],
"properties": {
"file": {
"type": "string",
"description": "Path to the JSON config file. A leading ~ expands to the home directory."
},
"defaults": {
"type": "object",
"description": "Keys to ensure are present in the file. Existing keys are never overwritten."
}
}
},
"env": {
"type": "object",
"description": "Optional environment variables to set for the agent's terminal. Useful to opt out of a CLI's IDE-extension auto-install via its own environment variable.",
"additionalProperties": {
"type": "string"
}
},
"updateCommand": {
"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 next to the agent in the sidebar. Use a string, or an object with \"unix\" and \"windows\" keys for OS-specific commands.",
"oneOf": [
{
"type": "string"
},
{
"type": "object",
"properties": {
"unix": {
"type": "string",
"description": "Update command for macOS and Linux."
},
"windows": {
"type": "string",
"description": "Update command for Windows."
}
}
}
]
}
}
}
},
"superCli.useBuiltins": {
"type": "boolean",
"scope": "machine",
"default": true,
"description": "Include the built-in agent presets (Claude Code, Codex, Copilot, Grok, Kilo, Antigravity, OpenCode, Command Code, Cursor, Droid, Crush, Hermes, MiMo Code, Pi) in the launcher."
},
"superCli.favoriteAgent": {
"type": "string",
"scope": "machine",
"default": "",
"markdownDescription": "Id of the favorite agent launched by the `Launch Favorite Agent` command (default keybinding `Ctrl+Alt+A`, `Cmd+Alt+A` on macOS; remap it from Keyboard Shortcuts). Set this with the star (★) button next to an agent in the sidebar rather than editing it by hand."
},
"superCli.terminalLocation": {
"type": "string",
"enum": [
"beside",
"panel"
],
"enumDescriptions": [
"Open the agent in a terminal beside the active editor.",
"Open the agent in the bottom panel."
],
"default": "beside",
"scope": "window",
"description": "Where to open the terminal that runs the coding agent."
},
"superCli.useWsl": {
"type": "boolean",
"default": false,
"scope": "window",
"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."
}
}
}
},
"scripts": {
"compile": "node ./node_modules/typescript/bin/tsc -p . --pretty false",
"watch": "node ./node_modules/typescript/bin/tsc --watch -p . --pretty false",
"test": "node ./node_modules/typescript/bin/tsc -p . --pretty false && node --test test/*.test.js && node ./test/integration/runTest.js",
"test:unit": "node ./node_modules/typescript/bin/tsc -p . --pretty false && node --test test/*.test.js",
"test:integration": "node ./node_modules/typescript/bin/tsc -p . --pretty false && node ./test/integration/runTest.js",
"vscode:prepublish": "node ./node_modules/typescript/bin/tsc -p . --pretty false",
"package": "node ./node_modules/@vscode/vsce/vsce package",
"check": "node ./node_modules/typescript/bin/tsc -p . --pretty false && node --test test/*.test.js && node ./test/integration/runTest.js && node ./node_modules/@vscode/vsce/vsce ls"
},
"devDependencies": {
"@vscode/test-electron": "^2.5.2",
"@types/node": "^22.0.0",
"@types/vscode": "^1.93.0",
"@vscode/vsce": "^3.0.0",
"typescript": "^5.0.0"
}
}