fix: rename statusline.js to gsd-statusline.js for consistent hook naming

All GSD hooks now use gsd- prefix. Installer updated to clean up old
statusline.js file and hook registration from previous installs.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Lex Christopherson
2026-01-20 11:55:59 -06:00
parent 9a3a394f79
commit 900fc95efc
6 changed files with 177 additions and 14 deletions

View File

@@ -10,7 +10,8 @@
"commands",
"get-shit-done",
"agents",
"hooks"
"hooks/dist",
"scripts"
],
"keywords": [
"claude",
@@ -33,8 +34,13 @@
"engines": {
"node": ">=16.7.0"
},
"dependencies": {
"sql.js": "^1.12.0",
"@anthropic-ai/sdk": "^0.52.0"
"dependencies": {},
"devDependencies": {
"esbuild": "^0.24.0",
"sql.js": "^1.12.0"
},
"scripts": {
"build:hooks": "node scripts/build-hooks.js",
"prepublishOnly": "npm run build:hooks"
}
}