List all active Claude workers and their git worktrees. Shows branch status, commits, and suggests next actions. Use to see what workers are running.
Lists all active Claude workers and their git worktrees with branch status, commits, and changes. Use `/workers` to see running workers and get cleanup or PR suggestions.
/plugin marketplace add schmug/karkinos/plugin install karkinos@karkinosThis skill is limited to using the following tools:
List and manage active Claude workers.
/workers
When the user invokes /workers, show the status of all worktrees and workers:
git worktree list
For each worktree (excluding main):
# For each worktree branch
git log <branch> --oneline -1
git diff main...<branch> --stat | tail -1
git rev-list --left-right --count main...<branch>
Display as a table:
| Worktree | Branch | Last Commit | Changes | Status |
|----------|--------|-------------|---------|--------|
| ../artemis-issue-42 | feat/issue-42-retry | abc123 Add retry | 3 files | +2 ahead |
| ../artemis-feat-logging | feat/add-logging | def456 Add logs | 5 files | +1 ahead |
Based on status, suggest:
Offer shortcuts:
/worker-cleanup <worktree> - Remove a specific worktree/worker-pr <branch> - Create PR from worker branch/worker-continue <worktree> "additional task" - Send more work../artemis-*)