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.
git clone --depth 1 https://github.com/Marcel-Bich/marcel-bich-claude-marketplaceWrote 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.
[](https://agentmods.dev/commands/marcel-bich/marcel-bich-claude-marketplace/uninstall)<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.
<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>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.
| Model | Per session | Once 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 |
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" 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>
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.
- 11d ago First seen · 101 lines · 29 tokens per session scan C 66c3a5f77a4b
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.
Other commands, from other repositories
migrate
Generate and manage database migrations.
context-stats
Display context window usage and token statistics.
security-scan
Run security audit on codebase.
test-suite
Run comprehensive test suite with coverage analysis.
assemble-team
Assemble a pre-built agent team for parallel work - review, feature, debug, cross-platform, full-stack, or research.
run
Execute prompt(s) from ./prompts/ with automatic archiving - for structured prompt-based work.