vtcode 0.98.7

A Rust-based terminal coding agent with modular architecture supporting multiple LLM providers
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
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
{
  "name": "vtcode-companion",
  "displayName": "VT Code",
  "description": "VS Code extension for VT Code, a Rust-based terminal coding agent with semantic code intelligence and multi-provider AI support. Provides deep integration with the VT Code AI coding assistant for enhanced productivity.",
  "version": "0.50.13",
  "publisher": "nguyenxuanvinh",
  "repository": {
    "type": "git",
    "url": "https://github.com/vinhnx/vtcode"
  },
  "sponsor": {
    "url": "https://buymeacoffee.com/vinhnx"
  },
  "icon": "media/vtcode-icon-marketplace.png",
  "engines": {
    "vscode": "^1.87.0"
  },
  "files": [
    "dist/**/*",
    "media/**/*",
    "LICENSE.txt"
  ],
  "categories": [
    "Other",
    "Chat",
    "AI"
  ],
  "keywords": [
    "vtcode",
    "agent",
    "ai",
    "productivity",
    "coding agent",
    "terminal",
    "semantic code intelligence",
    "tree-sitter",
    "llm",
    "openai",
    "anthropic",
    "gemini",
    "ai coding",
    "code assistant",
    "rust",
    "security"
  ],
  "activationEvents": [
    "workspaceContains:vtcode.toml",
    "onView:vtcodeQuickActionsView",
    "onView:vtcodeWorkspaceStatusView",
    "onCommand:vtcode.openQuickActions",
    "onCommand:vtcode.askAgent",
    "onCommand:vtcode.askSelection",
    "onCommand:vtcode.openConfig",
    "onCommand:vtcode.openDocumentation",
    "onCommand:vtcode.openDeepWiki",
    "onCommand:vtcode.openWalkthrough",
    "onCommand:vtcode.openInstallGuide",
    "onCommand:vtcode.trustWorkspace",
    "onCommand:vtcode.toggleHumanInTheLoop",
    "onCommand:vtcode.openToolsPolicyGuide",
    "onCommand:vtcode.openToolsPolicyConfig",
    "onCommand:vtcode.configureMcpProviders",
    "onCommand:vtcode.launchAgentTerminal",
    "onCommand:vtcode.runAnalyze",
    "onCommand:vtcode.runTaskTrackerTask",
    "onCommand:vtcode.refreshQuickActions"
  ],
  "main": "./dist/extension.js",
  "capabilities": {
    "untrustedWorkspaces": {
      "supported": true,
      "description": "VT Code limits CLI automation to trusted workspaces.",
      "restrictedConfigurations": [
        "vtcode.commandPath"
      ]
    }
  },
  "contributes": {
    "languages": [
      {
        "id": "vtcode-config",
        "aliases": [
          "VT Code Config",
          "vtcode.toml"
        ],
        "filenames": [
          "vtcode.toml"
        ],
        "configuration": "./language-configuration.json"
      }
    ],
    "grammars": [
      {
        "language": "vtcode-config",
        "scopeName": "source.toml",
        "path": "./syntaxes/vtcode.tmLanguage.json"
      }
    ],
    "taskDefinitions": [
      {
        "type": "vtcode",
        "required": [
          "command"
        ],
        "properties": {
          "command": {
            "type": "string",
            "enum": [
              "task-tracker"
            ],
            "description": "VT Code CLI command to execute."
          },
          "summary": {
            "type": "string",
            "description": "Optional summary passed to the task_tracker tool."
          },
          "steps": {
            "type": "array",
            "description": "Optional list of plan steps provided to task_tracker.",
            "items": {
              "type": "string"
            }
          },
          "label": {
            "type": "string",
            "description": "Custom label displayed in the Run Task picker."
          }
        }
      }
    ],
    "languageModelTools": [
      {
        "name": "vtcode-taskTracker",
        "displayName": "VT Code Task Tracker",
        "modelDescription": "Synchronize the workspace TODO plan using the VT Code CLI task_tracker workflow.",
        "inputSchema": {
          "type": "object",
          "properties": {
            "summary": {
              "type": "string",
              "description": "Brief summary of the desired plan update."
            },
            "steps": {
              "type": "array",
              "description": "Optional list of plan steps to include when updating the workspace plan.",
              "items": {
                "type": "string"
              }
            }
          },
          "additionalProperties": false
        }
      }
    ],
    "mcpServerDefinitionProviders": [
      {
        "id": "vtcode.workspaceMcp",
        "label": "VT Code Workspace MCP Providers"
      }
    ],
    "commands": [
      {
        "command": "vtcode.openQuickActions",
        "title": "Open Quick Actions",
        "category": "VT Code",
        "icon": "$(rocket)"
      },
      {
        "command": "vtcode.trustWorkspace",
        "title": "Trust Workspace for VT Code",
        "category": "VT Code",
        "icon": "$(shield)"
      },
      {
        "command": "vtcode.verifyWorkspaceTrust",
        "title": "Verify Workspace Trust Flow",
        "category": "VT Code",
        "icon": "$(shield-check)"
      },
      {
        "command": "vtcode.flushIdeContextSnapshot",
        "title": "Refresh IDE Context Snapshot",
        "category": "VT Code",
        "icon": "$(symbol-structure)"
      },
      {
        "command": "vtcode.askAgent",
        "title": "Ask the Agent",
        "category": "VT Code",
        "icon": "$(comment-discussion)"
      },
      {
        "command": "vtcode.askSelection",
        "title": "Ask About Selection",
        "shortTitle": "Ask with VT Code",
        "category": "VT Code",
        "icon": "$(comment)"
      },
      {
        "command": "vtcode.openConfig",
        "title": "Open Configuration",
        "category": "VT Code",
        "icon": "$(gear)"
      },
      {
        "command": "vtcode.openDocumentation",
        "title": "Open Documentation",
        "category": "VT Code",
        "icon": "$(book)"
      },
      {
        "command": "vtcode.openDeepWiki",
        "title": "Open DeepWiki Overview",
        "category": "VT Code",
        "icon": "$(globe)"
      },
      {
        "command": "vtcode.openWalkthrough",
        "title": "Getting Started Walkthrough",
        "category": "VT Code",
        "icon": "$(question)"
      },
      {
        "command": "vtcode.refreshQuickActions",
        "title": "Refresh Quick Actions",
        "category": "VT Code",
        "icon": "$(refresh)"
      },
      {
        "command": "vtcode.openInstallGuide",
        "title": "View CLI Installation Guide",
        "category": "VT Code",
        "icon": "$(tools)"
      },
      {
        "command": "vtcode.launchAgentTerminal",
        "title": "Launch Agent Terminal",
        "category": "VT Code",
        "icon": "$(terminal)"
      },
      {
        "command": "vtcode.runAnalyze",
        "title": "Analyze Workspace",
        "category": "VT Code",
        "icon": "$(pulse)"
      },
      {
        "command": "vtcode.runTaskTrackerTask",
        "title": "Run Task Tracker with VT Code Task",
        "category": "VT Code",
        "icon": "$(checklist)"
      },
      {
        "command": "vtcode.toggleHumanInTheLoop",
        "title": "Toggle Human-in-the-Loop",
        "category": "VT Code",
        "icon": "$(shield)"
      },
      {
        "command": "vtcode.openToolsPolicyGuide",
        "title": "Open Tool Policy Guide",
        "category": "VT Code",
        "icon": "$(book)"
      },
      {
        "command": "vtcode.openToolsPolicyConfig",
        "title": "Open Tool Policy Configuration",
        "category": "VT Code",
        "icon": "$(settings-gear)"
      },
      {
        "command": "vtcode.configureMcpProviders",
        "title": "Configure MCP Providers",
        "category": "VT Code",
        "icon": "$(plug)"
      }
    ],
    "menus": {
      "editor/context": [
        {
          "command": "vtcode.askSelection",
          "when": "editorHasSelection && vtcode.cliAvailable && vtcode.workspaceTrusted",
          "group": "navigation@20"
        }
      ],
      "editor/title": [
        {
          "command": "vtcode.askSelection",
          "when": "editorHasSelection && vtcode.cliAvailable && vtcode.workspaceTrusted",
          "group": "navigation@20"
        }
      ],
      "commandPalette": [
        {
          "command": "vtcode.askAgent",
          "when": "vtcode.cliAvailable && vtcode.workspaceTrusted"
        },
        {
          "command": "vtcode.askSelection",
          "when": "editorHasSelection && vtcode.cliAvailable && vtcode.workspaceTrusted"
        },
        {
          "command": "vtcode.launchAgentTerminal",
          "when": "vtcode.cliAvailable && vtcode.workspaceTrusted"
        },
        {
          "command": "vtcode.runAnalyze",
          "when": "vtcode.cliAvailable && vtcode.workspaceTrusted"
        },
        {
          "command": "vtcode.openInstallGuide",
          "when": "!vtcode.cliAvailable || !vtcode.workspaceTrusted"
        },
        {
          "command": "vtcode.toggleHumanInTheLoop",
          "when": "vtcode.configAvailable && vtcode.workspaceTrusted"
        },
        {
          "command": "vtcode.openToolsPolicyConfig",
          "when": "vtcode.configAvailable"
        },
        {
          "command": "vtcode.runTaskTrackerTask",
          "when": "vtcode.cliAvailable && vtcode.workspaceTrusted"
        },
        {
          "command": "vtcode.openToolsPolicyGuide"
        },
        {
          "command": "vtcode.configureMcpProviders",
          "when": "vtcode.configAvailable && vtcode.workspaceTrusted"
        }
      ],
      "view/title": [
        {
          "command": "vtcode.refreshQuickActions",
          "when": "view == vtcodeQuickActionsView",
          "group": "navigation@10"
        },
        {
          "command": "vtcode.openWalkthrough",
          "when": "view == vtcodeQuickActionsView",
          "group": "navigation@20"
        },
        {
          "command": "vtcode.openInstallGuide",
          "when": "view == vtcodeQuickActionsView && (!vtcode.cliAvailable || !vtcode.workspaceTrusted)",
          "group": "navigation@30"
        },
        {
          "command": "vtcode.launchAgentTerminal",
          "when": "view == vtcodeQuickActionsView && vtcode.cliAvailable && vtcode.workspaceTrusted",
          "group": "navigation@15"
        },
        {
          "command": "vtcode.runAnalyze",
          "when": "view == vtcodeQuickActionsView && vtcode.cliAvailable && vtcode.workspaceTrusted",
          "group": "navigation@25"
        },
        {
          "command": "vtcode.runTaskTrackerTask",
          "when": "view == vtcodeQuickActionsView && vtcode.cliAvailable && vtcode.workspaceTrusted",
          "group": "navigation@18"
        },
        {
          "command": "vtcode.configureMcpProviders",
          "when": "view == vtcodeQuickActionsView && vtcode.configAvailable && vtcode.workspaceTrusted",
          "group": "navigation@35"
        },
        {
          "command": "vtcode.toggleHumanInTheLoop",
          "when": "view == vtcodeQuickActionsView && vtcode.configAvailable && vtcode.workspaceTrusted",
          "group": "navigation@40"
        }
      ]
    },
    "viewsContainers": {
      "activitybar": [
        {
          "id": "vtcode",
          "title": "VT Code",
          "icon": "media/vtcode-activitybar.svg",
          "when": "workbenchState != 'empty'"
        }
      ],
      "secondary": [
        {
          "id": "vtcode",
          "title": "VT Code",
          "icon": "media/vtcode-activitybar.svg",
          "when": "workbenchState != 'empty'"
        }
      ]
    },
    "views": {
      "vtcode": [
        {
          "id": "vtcodeWorkspaceStatusView",
          "name": "Workspace Status",
          "when": "workbenchState != 'empty'"
        },
        {
          "id": "vtcodeQuickActionsView",
          "name": "Quick Actions",
          "when": "workbenchState != 'empty'"
        }
      ]
    },
    "walkthroughs": [
      {
        "id": "vtcode.walkthrough",
        "title": "Get started with VT Code",
        "description": "Learn how VT Code streamlines agent collaboration inside VS Code.",
        "steps": [
          {
            "id": "vtcode.walkthrough.quickActions",
            "title": "Open quick actions",
            "description": "Use the VT Code quick actions view or command palette to explore helpful shortcuts.",
            "media": {
              "type": "markdown",
              "markdown": "Use **VT Code: Open Quick Actions** from the Command Palette or the status bar to explore available shortcuts."
            },
            "completionEvents": [
              "onCommand:vtcode.openQuickActions"
            ]
          },
          {
            "id": "vtcode.walkthrough.askAgent",
            "title": "Ask the VT Code agent",
            "description": "Send a question from VS Code and review the response in the VT Code output channel.",
            "media": {
              "type": "markdown",
              "markdown": "Select **VT Code: Ask the Agent** to stream a response directly into the VT Code output channel."
            },
            "completionEvents": [
              "onCommand:vtcode.askAgent"
            ]
          },
          {
            "id": "vtcode.walkthrough.askSelection",
            "title": "Ask about highlighted code",
            "description": "Highlight code and ask VT Code to summarize or explain the selection.",
            "media": {
              "type": "markdown",
              "markdown": "Highlight a block of code, right-click, and choose **Ask About Selection with VT Code**."
            },
            "completionEvents": [
              "onCommand:vtcode.askSelection"
            ]
          },
          {
            "id": "vtcode.walkthrough.config",
            "title": "Review vtcode.toml",
            "description": "Open your workspace configuration to adjust VT Code preferences.",
            "media": {
              "type": "markdown",
              "markdown": "Run [VT Code: Open Configuration](command:vtcode.openConfig) to jump directly into the workspace `vtcode.toml`."
            },
            "completionEvents": [
              "onCommand:vtcode.openConfig"
            ]
          }
        ]
      }
    ],
    "colors": [
      {
        "id": "vtcode.statusBarBackground",
        "description": "Background color for the VT Code status bar entry when the CLI is available.",
        "defaults": {
          "dark": "#1D4ED8",
          "light": "#2563EB",
          "highContrast": "#1E40AF"
        }
      },
      {
        "id": "vtcode.statusBarForeground",
        "description": "Foreground color for the VT Code status bar entry when the CLI is available.",
        "defaults": {
          "dark": "#FFFFFF",
          "light": "#FFFFFF",
          "highContrast": "#FFFFFF"
        }
      }
    ],
    "configuration": {
      "type": "object",
      "title": "VT Code",
      "properties": {
        "vtcode.commandPath": {
          "type": "string",
          "default": "vtcode",
          "description": "Executable used to run VT Code commands. Change this if VT Code is installed with a custom path."
        }
      }
    }
  },
  "scripts": {
    "vscode:prepublish": "echo \"Skipping build - using precompiled files\"",
    "bundle": "node ./esbuild.mjs",
    "compile": "echo \"Skipping compilation - using precompiled files\"",
    "watch": "node ./esbuild.mjs --watch",
    "typecheck": "echo \"Skipping typecheck - using precompiled files\"",
    "lint": "echo \"Skipping lint - using precompiled files\"",
    "test": "echo \"Skipping tests - using precompiled files\"",
    "package": "vsce package",
    "release": "./release.sh",
    "release:patch": "./release.sh patch",
    "release:minor": "./release.sh minor",
    "release:major": "./release.sh major"
  },
  "dependencies": {
    "@iarna/toml": "^2.2.5",
    "node-pty": "^1.0.0"
  },
  "devDependencies": {
    "@types/glob": "^9.0.0",
    "@types/mocha": "^10.0.6",
    "@types/node": "^24.9.1",
    "@types/vscode": "^1.87.0",
    "@typescript-eslint/eslint-plugin": "^8.46.2",
    "@typescript-eslint/parser": "^8.46.2",
    "@vscode/test-electron": "^2.4.0",
    "@vscode/vsce": "^3.0.0",
    "esbuild": "^0.25.11",
    "eslint": "^9.38.0",
    "glob": "^11.0.3",
    "mocha": "^11.7.4",
    "ovsx": "^0.10.9",
    "typescript": "^5.3.3"
  }
}