uninstall — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited uninstall (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Completely remove all traces of a CLI tool or package from WSL.
The user wants to uninstall: $ARGUMENTS
The collection script searches every likely install location deterministically.
~/.claude/commands/uninstall/scripts/collect-install-traces.sh "$ARGUMENTS"Read the script output and group findings. This is where judgment is needed - the script finds everything, you decide what matters.
~/.<tool>, ~/.config/<tool>, etc.) - ask if they want to preserve settings before removing (e.g. if reinstalling)~/dev/) - never remove; flag as FYI onlyPresent the categorized list clearly. Flag anything ambiguous.
If VS Code extensions appeared in VSCODE_EXTENSIONS, ask the user before removing.
Remove everything the user confirmed, in this order:
npm uninstall -g <pkg>pipx uninstall <pkg>pip uninstall -y <pkg>cargo uninstall <pkg>rm -rfrm -rfNever remove anything in ~/dev/ or systemd units without explicit user confirmation.
which "$ARGUMENTS" 2>/dev/null && echo "binary still present" || echo "binary gone"
ls ~/."$ARGUMENTS" 2>/dev/null && echo "config still present" || echo "config gone"Report what was removed. Explain anything left behind.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.