From 3f88619fac8f3add80479288de0928d4da8b2c09 Mon Sep 17 00:00:00 2001 From: Jeremy McSpadden Date: Mon, 16 Mar 2026 19:12:13 -0500 Subject: [PATCH] refactor(vscode): rename extension to GSD-2 --- vscode-extension/README.md | 4 ++-- vscode-extension/package-lock.json | 4 ++-- vscode-extension/package.json | 8 ++++---- vscode-extension/src/extension.ts | 2 +- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/vscode-extension/README.md b/vscode-extension/README.md index 6502ae089..6e0a0a824 100644 --- a/vscode-extension/README.md +++ b/vscode-extension/README.md @@ -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 diff --git a/vscode-extension/package-lock.json b/vscode-extension/package-lock.json index 268b81ecd..67102cd86 100644 --- a/vscode-extension/package-lock.json +++ b/vscode-extension/package-lock.json @@ -1,11 +1,11 @@ { - "name": "gsd-vscode", + "name": "gsd-2", "version": "0.1.0", "lockfileVersion": 3, "requires": true, "packages": { "": { - "name": "gsd-vscode", + "name": "gsd-2", "version": "0.1.0", "license": "MIT", "devDependencies": { diff --git a/vscode-extension/package.json b/vscode-extension/package.json index 0a8ac72ab..8b957ec4a 100644 --- a/vscode-extension/package.json +++ b/vscode-extension/package.json @@ -1,7 +1,7 @@ { - "name": "gsd-vscode", - "displayName": "GSD - Get Shit Done", - "description": "VS Code integration for the GSD coding agent — sidebar dashboard, @gsd chat participant, and 15 commands", + "name": "gsd-2", + "displayName": "GSD-2", + "description": "VS Code integration for the GSD-2 coding agent — sidebar dashboard, @gsd chat participant, and 15 commands", "publisher": "gsd-build", "version": "0.1.0", "license": "MIT", @@ -142,7 +142,7 @@ "id": "gsd.agent", "name": "gsd", "fullName": "GSD Agent", - "description": "Get Shit Done coding agent", + "description": "GSD-2 coding agent", "isSticky": true } ], diff --git a/vscode-extension/src/extension.ts b/vscode-extension/src/extension.ts index 0f2d2de65..ce89ab08e 100644 --- a/vscode-extension/src/extension.ts +++ b/vscode-extension/src/extension.ts @@ -28,7 +28,7 @@ export function activate(context: vscode.ExtensionContext): void { context.subscriptions.push(client); // 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); client.onError((msg) => {