| name | uninstall |
| version | 1.0.0 |
| description | Cleanly remove the Exosuit framework from a project while preserving project-specific content. |
| trigger | manual |
| depends-on | [] |
| references | [] |
| disable-model-invocation | true |
| user-invocable | true |
| allowed-tools | Read, Glob, Grep, Bash |
uninstall
Remove the Exosuit framework from this project.
Phase 0: Confirm Intent
This will remove framework files from the project. Present what will happen and require explicit confirmation before proceeding.
Ask the user to confirm using AskUserQuestion:
- "Full removal" — description: "Remove all framework files (.claude/, framework docs, scripts). Keep source code, tests, and project docs untouched."
- "Keep documentation" — description: "Remove framework machinery (.claude/) but keep generated docs (ARCHITECTURE.md, CODING_STANDARDS.md, GROUND_RULES.md, etc.)"
- "Cancel" — description: "Don't remove anything"
Phase 1: Inventory
Before removing, inventory what exists:
Framework Files (will be removed)
echo "=== Core Framework ==="
ls -d .claude/skills/ .claude/hooks/ .claude/rules/ .claude/agents/ .claude/prompts/ .claude/commands/ .claude/output-styles/ .claude/scripts/ 2>/dev/null
echo "=== Settings ==="
ls .claude/settings.json .claude/settings.local.json.template .claude/keybindings.json.template 2>/dev/null
echo "=== Scripts ==="
ls scripts/pm/*.sh 2>/dev/null
echo "=== Root Files ==="
ls install.sh AGENTS.md llms.txt CLAUDE.local.md.template 2>/dev/null
Project-Specific Content (will be PRESERVED)
echo "=== Preserved ==="
ls docs/architecture/ docs/reference/ docs/context/ docs/testing/ docs/sessions/ docs/adr/ docs/progress.md docs/technical-debt.md CLAUDE.md 2>/dev/null
Technology-Specific Skills (ask user)
echo "=== Technology Skills (project-specific) ==="
skill_dir .claude/skills/*/;
skill_name=$( )
bootstrap|sprint-start|story-cycle|sprint-end||handoff|brainstorm|ideate|research|skill-create|code-quality|test-validator|security-audit|architecture-check|manual-test|testing-cycle|UAT-cycle|claude-sense-check|debug-session|fix-issue|undo-work|commit|parallel-work|weekly-maintenance|retrospective|backlog-review|doctor|framework-upgrade|pr-status|skill-eval|refine-loop|optimize|quickstart|help-me|dashboard|custom-hooks|uninstall|performance-check)
;;
*)
;;