refactor(vscode): rename extension to GSD-2

This commit is contained in:
Jeremy McSpadden 2026-03-16 19:12:13 -05:00
parent 6e90e8d83b
commit 3f88619fac
4 changed files with 9 additions and 9 deletions

View file

@ -1,6 +1,6 @@
# GSD — VS Code Extension # GSD-2 — VS Code Extension
Control the [GSD coding agent](https://github.com/gsd-build/gsd-2) directly from VS Code. Run autonomous coding sessions, chat with `@gsd` in VS Code Chat, and monitor your agent from a sidebar dashboard — all without leaving the editor. Control the [GSD-2 coding agent](https://github.com/gsd-build/gsd-2) directly from VS Code. Run autonomous coding sessions, chat with `@gsd` in VS Code Chat, and monitor your agent from a sidebar dashboard — all without leaving the editor.
## Requirements ## Requirements

View file

@ -1,11 +1,11 @@
{ {
"name": "gsd-vscode", "name": "gsd-2",
"version": "0.1.0", "version": "0.1.0",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "gsd-vscode", "name": "gsd-2",
"version": "0.1.0", "version": "0.1.0",
"license": "MIT", "license": "MIT",
"devDependencies": { "devDependencies": {

View file

@ -1,7 +1,7 @@
{ {
"name": "gsd-vscode", "name": "gsd-2",
"displayName": "GSD - Get Shit Done", "displayName": "GSD-2",
"description": "VS Code integration for the GSD coding agent — sidebar dashboard, @gsd chat participant, and 15 commands", "description": "VS Code integration for the GSD-2 coding agent — sidebar dashboard, @gsd chat participant, and 15 commands",
"publisher": "gsd-build", "publisher": "gsd-build",
"version": "0.1.0", "version": "0.1.0",
"license": "MIT", "license": "MIT",
@ -142,7 +142,7 @@
"id": "gsd.agent", "id": "gsd.agent",
"name": "gsd", "name": "gsd",
"fullName": "GSD Agent", "fullName": "GSD Agent",
"description": "Get Shit Done coding agent", "description": "GSD-2 coding agent",
"isSticky": true "isSticky": true
} }
], ],

View file

@ -28,7 +28,7 @@ export function activate(context: vscode.ExtensionContext): void {
context.subscriptions.push(client); context.subscriptions.push(client);
// Log stderr to an output channel // Log stderr to an output channel
const outputChannel = vscode.window.createOutputChannel("GSD Agent"); const outputChannel = vscode.window.createOutputChannel("GSD-2 Agent");
context.subscriptions.push(outputChannel); context.subscriptions.push(outputChannel);
client.onError((msg) => { client.onError((msg) => {