List all Git worktrees with their status and details
List all Git worktrees with their branch, commit, and dirty status. Use this to quickly see all active worktrees and identify which ones have uncommitted changes.
/plugin marketplace add horuz-ai/claude-plugins/plugin install core@horuzgit/pwdgit rev-parse --show-toplevel 2>/dev/null || echo "Not in a git repo"git worktree list 2>/dev/null || echo "No worktrees found"git worktree list --porcelain 2>/dev/nullDisplay a comprehensive overview of all Git worktrees in this repository.
List all worktrees using git worktree list
For each worktree, show:
git -C [path] status --porcelain for each)Format the output nicely:
📁 Worktrees for [repo-name]
═══════════════════════════════════════
1. /path/to/main (main branch)
└─ ✅ Clean
2. /path/to/feat-something (feat/something)
└─ ⚠️ Has uncommitted changes
3. /path/to/pr-123 (pr-123)
└─ ✅ Clean
Show summary: