gsd:uninstall

gsd:uninstall is a command for Claude Code from Marcel-Bich/marcel-bich-claude-marketplace. It costs 29 tokens per session (571 once invoked), scanned C, original, MIT.

A command that removes the GSD resources and commands from the active Claude configuration folder. GSD is a separately installed set of Claude commands and supporting files.

In plain words
What is it for?
Use it to check for and uninstall GSD commands and resources from the active Claude configuration directory.
Why use it?
It cleans out that installation when it is no longer wanted, after checking whether the relevant files exist and asking for confirmation.

Command for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: names the AskUserQuestion tool.

Part of the get-shit-done plugin — 1 command shipped together

Good fit Use it to check for and uninstall GSD commands and resources from the active Claude configuration directory.

Compare 6 commands from other repositories ↓
Install with agentmods
npx agentmods add commands/marcel-bich/marcel-bich-claude-marketplace/uninstall
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Clone the repo
git clone --depth 1 https://github.com/Marcel-Bich/marcel-bich-claude-marketplace

Made for: Claude Code.

Or install get-shit-done, the plugin that ships this one along with the rest of its 1 command.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for gsd:uninstall

README.md
[![agentmods](https://agentmods.dev/badge/commands/marcel-bich/marcel-bich-claude-marketplace/uninstall/github.svg)](https://agentmods.dev/commands/marcel-bich/marcel-bich-claude-marketplace/uninstall)
Your own site
<a href="https://agentmods.dev/commands/marcel-bich/marcel-bich-claude-marketplace/uninstall"><img src="https://agentmods.dev/badge/commands/marcel-bich/marcel-bich-claude-marketplace/uninstall/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for gsd:uninstall

Your own site · 80×15
<a href="https://agentmods.dev/commands/marcel-bich/marcel-bich-claude-marketplace/uninstall"><img src="https://agentmods.dev/badge/commands/marcel-bich/marcel-bich-claude-marketplace/uninstall.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 29 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 571 The whole file, excluding the scripts and references it only reads on demand.
Security scan C 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00029 $0.00571
Opus 5 $0.00015 $0.00285
Sonnet 5 $0.00006 $0.00114
Haiku 4.5 $0.00003 $0.00057

Measured 11d ago against content hash 66c3a5f77a4b, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade C, and why

gsd:uninstall scanned grade C with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Recursive force deletehighDestructive command

rm -rf with a variable or a broad path is one typo away from removing the wrong tree.

rm -rf "$GSD_BASE/commands/gsd"
plugins/get-shit-done/commands/uninstall.md · 101 lines

What it actually says

Remove GSD installation from the active Claude config dir (${CLAUDE_CONFIG_DIR:-$HOME/.claude}):

  • Commands from $GSD_BASE/commands/gsd/
  • Resources from $GSD_BASE/get-shit-done/

Check if GSD is installed:

GSD_BASE="${CLAUDE_CONFIG_DIR:-$HOME/.claude}"

if [ -d "$GSD_BASE/commands/gsd" ] || [ -d "$GSD_BASE/get-shit-done" ]; then
    echo "EXISTS"
    [ -d "$GSD_BASE/commands/gsd" ] && echo "commands: $(ls "$GSD_BASE"/commands/gsd/*.md 2>/dev/null | wc -l) files"
    [ -d "$GSD_BASE/get-shit-done" ] && echo "resources: present"
else
    echo "NOT_EXISTS"
fi

If NOT_EXISTS:

GSD is not installed.
Nothing to uninstall.

Exit.

If EXISTS:

Use AskUserQuestion:

  • header: "Uninstall"
  • question: "Remove GSD from the active Claude config dir (${CLAUDE_CONFIG_DIR:-$HOME/.claude})?"
  • options:
    • "Yes, remove" - Delete commands and resources
    • "Cancel" - Keep the installation

If "Yes, remove" selected:

GSD_BASE="${CLAUDE_CONFIG_DIR:-$HOME/.claude}"

rm -rf "$GSD_BASE/commands/gsd"
rm -rf "$GSD_BASE/get-shit-done"
echo "Removed GSD installation"

If removed:

GSD Uninstalled

Removed:
- $GSD_BASE/commands/gsd/
- $GSD_BASE/get-shit-done/
(GSD_BASE is the active Claude config dir: ${CLAUDE_CONFIG_DIR:-$HOME/.claude})

To reinstall: /gsd:setup

<success_criteria>

  • $GSD_BASE/commands/gsd/ no longer exists
  • $GSD_BASE/get-shit-done/ no longer exists
  • User informed of reinstall option

</success_criteria>

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 11d ago First seen · 101 lines · 29 tokens per session scan C 66c3a5f77a4b

Subscribe to this mod's changes

gsd:uninstall is a command published in the GitHub repository Marcel-Bich/marcel-bich-claude-marketplace (13 stars, last pushed yesterday), licensed MIT. It adds 29 tokens to every session and 571 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it C with 1 finding (recursive force delete). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.