How this command is triggered — by the user, by Claude, or both
Slash command
/karkinos:workersThe summary Claude sees in its command listing — used to decide when to auto-load this command
# /workers List all active Claude workers and their git worktrees. ## Instructions 1. List all worktrees: 2. For each non-main worktree, show: - Branch name - Last commit: `git log <branch> --oneline -1` - Commits ahead of main: `git rev-list main..<branch> --count` - Uncommitted changes: `git -C <worktree-path> status --short` 3. Format as table: 4. Suggest actions: - Workers with commits → "Ready for PR?" - Clean worktrees with no commits → "Clean up?" - Worktrees with uncommitted changes → "Work in progress"
List all active Claude workers and their git worktrees.
List all worktrees:
git worktree list
For each non-main worktree, show:
git log <branch> --oneline -1git rev-list main..<branch> --countgit -C <worktree-path> status --shortFormat as table:
| Worktree | Branch | Last Commit | Ahead | Status |
|----------|--------|-------------|-------|--------|
| ../artemis-issue-42 | feat/issue-42 | abc123 Fix bug | +2 | clean |
Suggest actions:
npx claudepluginhub schmug/karkinos --plugin karkinos/spawn-workersAnalyzes task dependencies and spawns parallel worker sessions to tackle issues concurrently, supporting both Claude and Codex agents.
/sc-worktreesManages Git worktrees for parallel development, supporting both native Claude isolation and manual workflows with subcommands for list, create, remove, and prune.
/triageReviews git state across worktrees, stashes, and branches to inventory work in progress.
/statusChecks the status of background worktree tasks — lists active tmux sessions and git worktrees with branch, changed files, recent commits, and last activity. Also accepts a session name for detailed status.
/worktreeManages git worktrees: lists all (default), shows status, reviews changes, merges to main, or discards feature worktrees.
/workersRuns Docker-based computational workers on NimbusImage datasets for segmentation, spot detection, and property computation. Also supports listing workers and tracking job status.