uninstalllisted
Install: claude install-skill joris887/exosuit
______________________________________________________________________
## uninstall
Remove the Exosuit framework from this project.
## Phase 0: Confirm Intent
<HARD-GATE>
This will remove framework files from the project. Present what will happen and require explicit confirmation before proceeding.
</HARD-GATE>
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)
```bash
# Core framework
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
# Settings and config
echo "=== Settings ==="
ls .claude/settings.json .claude/settings.local.json.template .claude/keybindings.json.template 2>/dev/null
# Framework scripts
echo "=== Scripts ==="
ls scripts/pm/*.sh 2>/dev/null
# Framework root files
echo "=== Root Files ==="
ls install.sh AGENTS.md llms.txt CLAUDE.local.md.template 2>/dev/null
```
### Project-Specific Content (will be PRESERVED)
```bash
echo "=== Preserved ==="
ls docs