list-agent-worktreeslisted
Install: claude install-skill stevengonsalvez/agents-in-a-box
# /list-agent-worktrees - List All Agent Worktrees
Shows all active agent worktrees with their paths and branches.
## Usage
```bash
/list-agent-worktrees
```
## Implementation
```bash
#!/bin/bash
git worktree list | grep "worktrees/agent-" || echo "No agent worktrees found"
```