refactor(vscode): rename extension to GSD-2
This commit is contained in:
parent
6e90e8d83b
commit
3f88619fac
4 changed files with 9 additions and 9 deletions
|
|
@ -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
|
||||
|
||||
|
|
|
|||
4
vscode-extension/package-lock.json
generated
4
vscode-extension/package-lock.json
generated
|
|
@ -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": {
|
||||
|
|
|
|||
|
|
@ -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
|
||||
}
|
||||
],
|
||||
|
|
|
|||
|
|
@ -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) => {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue