Based on: GSD 1.33.0 base tree by TACHES (Lex Christopherson)
A performance-optimized plugin packaging of GSD for Claude Code. Reduces per-turn token overhead by ~92%, adds MCP-backed project state, and bundles everything into a single-install plugin.
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.
# Step 1: Add the marketplace
claude plugin marketplace add jnuyens/gsd-plugin
# Step 2: Install the plugin
claude plugin install gsd@gsd-pluginThat's it. This installs everything: slash commands, agent definitions, hooks, and an MCP server for project state. No manual configuration required. Enable auto-update for the marketplace in Claude Code settings to receive updates automatically.
- 60 slash commands (
/gsd:*) for project planning, execution, debugging, and verification - 21 agent definitions for specialized workflow roles (planner, executor, researcher, verifier, etc.)
- MCP server exposing project state as queryable resources and mutation tools
- Hooks for session-start context loading, workflow enforcement, and tool-use monitoring
- Templates and references for planning artifacts, summaries, and verification checklists
- Memory integration -- phase outcomes persist across sessions via Claude Code's memdir
| Aspect | Upstream GSD | This plugin |
|---|---|---|
| Install | npx get-shit-done-cc |
claude plugin marketplace add jnuyens/gsd-plugin && claude plugin install gsd@gsd-plugin |
| Context overhead | ~3,000-5,000 tokens/turn via CLAUDE.md | ~200 tokens (92% reduction) |
| Skill isolation | Inline execution | context: fork sub-agent isolation |
| State access | BashTool roundtrips to gsd-tools | MCP resources + tools |
| Memory | None | memdir auto-recall across sessions |
| Agent definitions | Inline prompt role descriptions | .claude/agents/*.md with typed frontmatter |
- Install:
claude plugin marketplace add jnuyens/gsd-plugin && claude plugin install gsd@gsd-plugin - Start a new project:
/gsd:new-project - Plan your first phase:
/gsd:plan-phase - Execute:
/gsd:execute-phase - Verify:
/gsd:verify-work
If you already have GSD installed (via npx get-shit-done-cc or ~/.claude/get-shit-done/), you can test this plugin version safely in an isolated environment.
Test the plugin from a fresh project directory without touching your existing install:
# 1. Clone this repo somewhere
git clone https://github.com/jnuyens/gsd-plugin.git ~/src/gsd-plugin
# 2. Move the legacy install out of the way (prevents duplicate commands)
mv ~/.claude/get-shit-done ~/.claude/get-shit-done-legacy
# 3. Create a throwaway test project
mkdir ~/test-gsd-plugin && cd ~/test-gsd-plugin
git init
# 4. Launch Claude Code with the plugin root override
CLAUDE_PLUGIN_ROOT=~/src/gsd-plugin claude --dangerously-skip-permissions
# 5. Inside the session, only plugin GSD commands are activeTo restore your legacy install after testing:
mv ~/.claude/get-shit-done-legacy ~/.claude/get-shit-doneThe CLAUDE_PLUGIN_ROOT env var tells the plugin's bin/lib/core.cjs to resolve all paths from the specified directory instead of the default plugin cache.
After launching with the plugin:
/gsd:help-- lists all 60 commands/gsd:progress-- shows project state (or prompts to create one)/gsd:new-project-- full project initialization flow- Check MCP resources are available (the GSD MCP server should auto-start via plugin manifest)
To revert to upstream GSD after testing:
# Remove the plugin
claude plugin uninstall gsd
# Your legacy ~/.claude/get-shit-done/ is still in place and workingEnable auto-update for the marketplace in Claude Code settings and updates will be applied automatically at startup. For manual updates:
# Step 1: Pull the latest marketplace catalog from GitHub
claude plugin marketplace update gsd-plugin
# Step 2: Reinstall the plugin to pick up the new version
claude plugin install gsd@gsd-pluginNote: Step 1 refreshes the marketplace index but does not upgrade the installed plugin. Step 2 is needed to install the new version.
If you previously installed GSD via get-shit-done-cc or manual setup, most migration happens automatically.
On your first session after installing the plugin, GSD auto-migrates:
- Moves
~/.claude/get-shit-done/to~/.claude/get-shit-done-legacy/(safe backup, not deleted) - Moves
~/.claude/commands/gsd/to~/.claude/commands/gsd-legacy/(prevents duplicate slash commands) - Removes legacy GSD skill directories (
gsd-*) from~/.claude/skills/ - Removes legacy GSD agent files (
gsd-*.md) from~/.claude/agents/ - Removes legacy GSD MCP server entries from your project's
.mcp.json - Removes legacy GSD hook entries from
~/.claude/settings.json - Removes legacy hook scripts (
gsd-check-update.js,gsd-context-monitor.js,gsd-prompt-guard.js,gsd-statusline.js) from~/.claude/hooks/
You'll see a summary of what was migrated in the session output.
claude plugin marketplace add jnuyens/gsd-plugin
claude plugin install gsd@gsd-pluginnpm uninstall -g get-shit-done-ccThe /gsd:update command is deprecated. Use claude plugin marketplace update gsd-plugin to update.
rm -rf ~/.claude/get-shit-done-legacy/To check for any remaining legacy artifacts:
node bin/gsd-tools.cjs migrateThis prints all legacy GSD artifacts found on your system. To remove them (with confirmation):
node bin/gsd-tools.cjs migrate --cleanAfter migration, verify the plugin is active:
- Start a new Claude Code session
- Run
/gsd:help-- should list all commands - Check that MCP resources are available (the GSD MCP server should auto-start)
- GSD (Get Shit Done) by TACHES (Lex Christopherson) -- the original workflow framework this plugin is based on
- Plugin packaging, MCP integration, token optimization, and memory system by Jasper Nuyens
MIT