gsd-lite 0.5.7 → 0.5.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"name": "gsd",
|
|
14
14
|
"source": "./",
|
|
15
15
|
"description": "AI orchestration tool — GSD management shell + Superpowers quality core. 5 commands, 4 agents, 5 workflows, MCP server, context monitoring.",
|
|
16
|
-
"version": "0.5.
|
|
16
|
+
"version": "0.5.8",
|
|
17
17
|
"keywords": [
|
|
18
18
|
"orchestration",
|
|
19
19
|
"mcp",
|
package/commands/doctor.md
CHANGED
|
@@ -28,7 +28,10 @@ Call the `health` MCP tool:
|
|
|
28
28
|
|
|
29
29
|
Check if GSD hooks are registered in Claude settings:
|
|
30
30
|
- Read `~/.claude/settings.json` (or `~/.claude/settings.local.json`)
|
|
31
|
-
-
|
|
31
|
+
- StatusLine check (check BOTH paths):
|
|
32
|
+
1. Direct: `statusLine` entry containing `gsd-statusline`
|
|
33
|
+
2. Composite: read `~/.cache/code-graph/statusline-registry.json` — if any entry's `command` contains `gsd-statusline`, it is registered through the composite statusline system
|
|
34
|
+
- Either path present: StatusLine = registered
|
|
32
35
|
- Check for `PostToolUse` hook entry containing `gsd-context-monitor`
|
|
33
36
|
- Both present: record PASS
|
|
34
37
|
- Partial: record WARN with which hook is missing
|
|
@@ -50,10 +53,14 @@ Check if `.gsd/.state-lock` exists:
|
|
|
50
53
|
## STEP 5: Auto-Update Status
|
|
51
54
|
|
|
52
55
|
Check for update-related information:
|
|
53
|
-
- Read
|
|
54
|
-
-
|
|
55
|
-
-
|
|
56
|
-
-
|
|
56
|
+
- Read the `health` tool response for running server version
|
|
57
|
+
- Read `package.json` in the current project root for source version (if in a dev repo with `.git`)
|
|
58
|
+
- Read `~/.claude/gsd/package.json` for runtime version (if exists)
|
|
59
|
+
- Compare all available versions:
|
|
60
|
+
- All match: record PASS with version number
|
|
61
|
+
- Server version < source version: record WARN "MCP server running v{x} but source is v{y}. Run /mcp to restart"
|
|
62
|
+
- Runtime < server: record WARN "Runtime dir outdated: v{x} vs server v{y}"
|
|
63
|
+
- Any mismatch: record WARN with details
|
|
57
64
|
- If `~/.claude/gsd/.update-pending` exists: record INFO "Update pending, will apply on next session"
|
|
58
65
|
- If cannot determine: record INFO "Update status unavailable"
|
|
59
66
|
|