Skip to content

Commit 08477e0

Browse files
committed
docs(quick-260420-7js): upgrade gsd-plugin to version 2.38.1 matching upstream
- Bump version 2.37.1 -> 2.38.1 in package.json, plugin.json, marketplace.json - README: "Based on" GSD 1.37.1 -> 1.38.1, skill count 59/60 -> 81 - .planning/PROJECT.md: Context line + last-updated footer to GSD 1.38.1 Per the plugin_major = upstream_major + 1 versioning scheme established in v2.37.1 (260418-r6d): upstream GSD 1.38.1 ships here as plugin 2.38.1.
1 parent fb935ea commit 08477e0

5 files changed

Lines changed: 10 additions & 10 deletions

File tree

.claude-plugin/marketplace.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"name": "gsd",
1212
"source": "./",
1313
"description": "Get Shit Done -- structured workflow plugin for Claude Code with planning, execution, verification, and MCP-backed project state",
14-
"version": "2.37.1",
14+
"version": "2.38.1",
1515
"author": {
1616
"name": "Jasper Nuyens"
1717
},

.claude-plugin/plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "gsd",
3-
"version": "2.37.1",
3+
"version": "2.38.1",
44
"description": "Get Shit Done -- a structured workflow plugin for Claude Code that adds planning, execution, and verification commands with MCP-backed project state",
55
"author": {
66
"name": "Jasper Nuyens"

.planning/PROJECT.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ Shipped v1.0 with 3 phases, 10 plans, 27 tasks over 7 days.
6161
Tech stack: Node.js CJS (bin/lib), MCP server (stdio JSON-RPC), Claude Code plugin system.
6262
~14k LOC in bin/*.cjs, ~573 LOC MCP server, 60 self-contained skill files (~21k LOC).
6363
Published as [jnuyens/gsd-plugin](https://github.com/jnuyens/gsd-plugin) on GitHub.
64-
Based on [GSD 1.37.1](https://github.com/gsd-build/get-shit-done) by TACHES (Lex Christopherson).
64+
Based on [GSD 1.38.1](https://github.com/gsd-build/get-shit-done) by TACHES (Lex Christopherson).
6565

6666
## Constraints
6767

@@ -110,4 +110,4 @@ This document evolves at phase transitions and milestone boundaries.
110110
5. Smoke-test: `node -e "require('./bin/lib/core.cjs')"` + verify local patches (resolveGsdRoot, resolveGsdDataDir, resolveGsdAsset)
111111

112112
---
113-
*Last updated: 2026-04-18 after upstream sync to GSD 1.37.1*
113+
*Last updated: 2026-04-20 after upstream sync to GSD 1.38.1*

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# GSD Plugin -- Get Shit Done for Claude Code
22

3-
**Based on:** [GSD 1.37.1](https://github.com/gsd-build/get-shit-done/releases/tag/v1.37.1) base tree by **TACHES** (Lex Christopherson)
3+
**Based on:** [GSD 1.38.1](https://github.com/gsd-build/get-shit-done/releases/tag/v1.38.1) base tree by **TACHES** (Lex Christopherson)
44

5-
**Plugin version:** `2.37.1`
5+
**Plugin version:** `2.38.1`
66

77
A performance-optimized plugin packaging of [GSD](https://github.com/gsd-build/get-shit-done) for Claude Code. Reduces per-turn token overhead by ~92%, adds MCP-backed project state, and bundles everything into a single-install plugin.
88

@@ -16,7 +16,7 @@ plugin_minor = upstream_minor
1616
plugin_patch = upstream_patch
1717
```
1818

19-
So upstream GSD `1.37.1` ships here as plugin `2.37.1`. When upstream advances to `2.x`, this plugin will move to `3.x`. Patch-level changes that are plugin-only (not tied to an upstream sync) bump the patch number further (e.g. `2.37.2`).
19+
So upstream GSD `1.38.1` ships here as plugin `2.38.1`. When upstream advances to `2.x`, this plugin will move to `3.x`. Patch-level changes that are plugin-only (not tied to an upstream sync) bump the patch number further (e.g. `2.38.2`).
2020

2121
This project repackages the GSD workflow system as a native Claude Code plugin with additional optimizations: skill isolation via `context: fork`, structured MCP tools replacing prompt injection, and cross-session memory via memdir.
2222

@@ -47,7 +47,7 @@ That's it. This installs everything: slash commands, agent definitions, hooks, a
4747

4848
## What GSD Plugin provides
4949

50-
- **59 slash commands** (`/gsd:*`) for project planning, execution, debugging, and verification
50+
- **81 slash commands** (`/gsd:*`) for project planning, execution, debugging, and verification
5151
- **21 agent definitions** for specialized workflow roles (planner, executor, researcher, verifier, etc.)
5252
- **MCP server** exposing project state as queryable resources and mutation tools
5353
- **Hooks** for session-start context loading, workflow enforcement, checkpoint on compact, and tool-use monitoring
@@ -110,7 +110,7 @@ The `CLAUDE_PLUGIN_ROOT` env var tells the plugin's `bin/lib/core.cjs` to resolv
110110

111111
After launching with the plugin:
112112

113-
1. `/gsd:help` -- lists all 60 commands
113+
1. `/gsd:help` -- lists all 81 commands
114114
2. `/gsd:progress` -- shows project state (or prompts to create one)
115115
3. `/gsd:new-project` -- full project initialization flow
116116
4. Check MCP resources are available (the GSD MCP server should auto-start via plugin manifest)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "gsd-plugin",
3-
"version": "2.37.1",
3+
"version": "2.38.1",
44
"description": "Performance-optimized plugin packaging of GSD (Get Shit Done) for Claude Code",
55
"private": true,
66
"scripts": {

0 commit comments

Comments
 (0)