Remove GSD resources from ~/.claude/
Removes GSD commands and resources from ~/.claude/ directory.
/plugin marketplace add Marcel-Bich/marcel-bich-claude-marketplace/plugin install get-shit-done@marcel-bich-claude-marketplaceRemove GSD installation:
Check if GSD is installed:
if [ -d ~/.claude/commands/gsd ] || [ -d ~/.claude/get-shit-done ]; then
echo "EXISTS"
[ -d ~/.claude/commands/gsd ] && echo "commands: $(ls ~/.claude/commands/gsd/*.md 2>/dev/null | wc -l) files"
[ -d ~/.claude/get-shit-done ] && echo "resources: present"
else
echo "NOT_EXISTS"
fi
</step>
<step name="confirm">
If NOT_EXISTS:
GSD is not installed.
Nothing to uninstall.
Exit.
If EXISTS:
Use AskUserQuestion:
If "Yes, remove" selected:
rm -rf ~/.claude/commands/gsd
rm -rf ~/.claude/get-shit-done
echo "Removed GSD installation"
</step>
<step name="done">
If removed:
GSD Uninstalled
Removed:
- ~/.claude/commands/gsd/
- ~/.claude/get-shit-done/
To reinstall: /gsd:setup
</step>
</process>
<success_criteria>
</success_criteria>