plugin-remover · git:20260911.03c3cb8 · 2026-09-11 · sha256 6afca1abd32ff1aa

plugin-remover git:20260911.03c3cb8A

Immutable. This exact content is served forever at /api/v1/blob/6afca1abd32ff1aa.

---
name: plugin-remover
plugin: plugin-manager
description: Interactively select and uninstall agent plugins and skills from the local .agents/ environment.
allowed-tools: Bash, Read, Write
---

# Plugin Remover

Safely uninstalls plugins from agent environments and synchronizes tracking registries.

## Quick Start

### 1. Interactive Removal (Recommended)
Launch the interactive removal menu:
```bash
python3 scripts/plugin_remove.py
```

### 2. Headless Specific Removal
Remove a specific plugin without prompting:
```bash
python3 scripts/plugin_remove.py --plugins <plugin-name> --yes
```

### 3. Full Cleanup (Remove All)
Remove all tracked plugins and clean orphaned artifacts:
```bash
python3 scripts/plugin_remove.py --all --yes
```

## Progressive Disclosure & References

- **CLI Reference & Cleanup Protocol**: See `references/remover-cli-guide.md` for registry scrubbing rules and orphan cleanup behavior.
- **Acceptance Criteria**: See `references/acceptance-criteria.md` for structural invariants.
- **Fallback Procedures**: See `references/fallback-tree.md` for fallback and recovery trees.