gsd-lite 0.3.10 → 0.3.13
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.
- package/.claude-plugin/marketplace.json +7 -2
- package/.claude-plugin/plugin.json +9 -2
- package/.mcp.json +0 -0
- package/README.md +2 -2
- package/agents/debugger.md +0 -0
- package/agents/executor.md +0 -0
- package/agents/researcher.md +0 -0
- package/agents/reviewer.md +0 -0
- package/commands/prd.md +0 -0
- package/commands/resume.md +0 -0
- package/commands/start.md +0 -0
- package/commands/status.md +0 -0
- package/commands/stop.md +0 -0
- package/hooks/context-monitor.js +0 -0
- package/hooks/gsd-context-monitor.cjs +0 -0
- package/hooks/gsd-session-init.cjs +0 -0
- package/hooks/gsd-statusline.cjs +0 -0
- package/hooks/hooks.json +0 -0
- package/install.js +0 -0
- package/launcher.js +0 -0
- package/package.json +4 -2
- package/references/anti-rationalization-full.md +0 -0
- package/references/evidence-spec.md +0 -0
- package/references/execution-loop.md +0 -0
- package/references/git-worktrees.md +0 -0
- package/references/questioning.md +0 -0
- package/references/review-classification.md +0 -0
- package/references/state-diagram.md +0 -0
- package/references/testing-patterns.md +0 -0
- package/src/schema.js +0 -0
- package/src/server.js +0 -0
- package/src/tools/orchestrator.js +0 -0
- package/src/tools/state.js +0 -0
- package/src/tools/verify.js +0 -0
- package/src/utils.js +0 -0
- package/uninstall.js +0 -0
- package/workflows/debugging.md +0 -0
- package/workflows/deviation-rules.md +0 -0
- package/workflows/research.md +0 -0
- package/workflows/review-cycle.md +0 -0
- package/workflows/tdd-cycle.md +0 -0
|
@@ -13,8 +13,13 @@
|
|
|
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.3.
|
|
17
|
-
"keywords": [
|
|
16
|
+
"version": "0.3.13",
|
|
17
|
+
"keywords": [
|
|
18
|
+
"orchestration",
|
|
19
|
+
"mcp",
|
|
20
|
+
"tdd",
|
|
21
|
+
"task-management"
|
|
22
|
+
],
|
|
18
23
|
"category": "Development workflows"
|
|
19
24
|
}
|
|
20
25
|
]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gsd",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.13",
|
|
4
4
|
"description": "AI orchestration tool for Claude Code — GSD management shell + Superpowers quality core",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "sdsrss",
|
|
@@ -8,5 +8,12 @@
|
|
|
8
8
|
},
|
|
9
9
|
"repository": "https://github.com/sdsrss/gsd-lite",
|
|
10
10
|
"license": "MIT",
|
|
11
|
-
"keywords": [
|
|
11
|
+
"keywords": [
|
|
12
|
+
"claude-code",
|
|
13
|
+
"orchestration",
|
|
14
|
+
"mcp",
|
|
15
|
+
"ai-agent",
|
|
16
|
+
"task-management",
|
|
17
|
+
"tdd"
|
|
18
|
+
]
|
|
12
19
|
}
|
package/.mcp.json
CHANGED
|
File without changes
|
package/README.md
CHANGED
|
@@ -84,7 +84,7 @@ User → discuss + research (confirm requirements) → approve plan → auto-exe
|
|
|
84
84
|
/plugin marketplace add sdsrss/gsd-lite
|
|
85
85
|
|
|
86
86
|
# Step 2: Install the plugin
|
|
87
|
-
/plugin install gsd
|
|
87
|
+
/plugin install gsd
|
|
88
88
|
```
|
|
89
89
|
|
|
90
90
|
Automatically registers all commands, agents, workflows, MCP server, and hooks. Run these commands inside a Claude Code session.
|
|
@@ -110,7 +110,7 @@ Uninstall: `node cli.js uninstall` or `npx gsd-lite uninstall`
|
|
|
110
110
|
|
|
111
111
|
```bash
|
|
112
112
|
# Plugin
|
|
113
|
-
/plugin update gsd
|
|
113
|
+
/plugin update gsd
|
|
114
114
|
|
|
115
115
|
# npx
|
|
116
116
|
npx gsd-lite install
|
package/agents/debugger.md
CHANGED
|
File without changes
|
package/agents/executor.md
CHANGED
|
File without changes
|
package/agents/researcher.md
CHANGED
|
File without changes
|
package/agents/reviewer.md
CHANGED
|
File without changes
|
package/commands/prd.md
CHANGED
|
File without changes
|
package/commands/resume.md
CHANGED
|
File without changes
|
package/commands/start.md
CHANGED
|
File without changes
|
package/commands/status.md
CHANGED
|
File without changes
|
package/commands/stop.md
CHANGED
|
File without changes
|
package/hooks/context-monitor.js
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
package/hooks/gsd-statusline.cjs
CHANGED
|
File without changes
|
package/hooks/hooks.json
CHANGED
|
File without changes
|
package/install.js
CHANGED
|
File without changes
|
package/launcher.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gsd-lite",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.13",
|
|
4
4
|
"description": "AI orchestration tool for Claude Code — GSD management shell + Superpowers quality core",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -11,7 +11,9 @@
|
|
|
11
11
|
"test:coverage": "c8 --check-coverage --lines 80 --branches 75 --reporter=text --reporter=lcov node --test tests/*.test.js",
|
|
12
12
|
"lint": "biome check src/ tests/ hooks/",
|
|
13
13
|
"lint:fix": "biome check --write src/ tests/ hooks/",
|
|
14
|
-
"start": "node src/server.js"
|
|
14
|
+
"start": "node src/server.js",
|
|
15
|
+
"version": "node scripts/sync-versions.js && git add .claude-plugin/plugin.json .claude-plugin/marketplace.json",
|
|
16
|
+
"prepublishOnly": "node scripts/sync-versions.js && npm run lint && npm test"
|
|
15
17
|
},
|
|
16
18
|
"repository": {
|
|
17
19
|
"type": "git",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
package/src/schema.js
CHANGED
|
File without changes
|
package/src/server.js
CHANGED
|
File without changes
|
|
File without changes
|
package/src/tools/state.js
CHANGED
|
File without changes
|
package/src/tools/verify.js
CHANGED
|
File without changes
|
package/src/utils.js
CHANGED
|
File without changes
|
package/uninstall.js
CHANGED
|
File without changes
|
package/workflows/debugging.md
CHANGED
|
File without changes
|
|
File without changes
|
package/workflows/research.md
CHANGED
|
File without changes
|
|
File without changes
|
package/workflows/tdd-cycle.md
CHANGED
|
File without changes
|