← ClaudeAtlas

list-agent-worktreeslisted

List All Agent Worktrees
stevengonsalvez/agents-in-a-box · ★ 14 · AI & Automation · score 68
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" ```