Help us improve
Share bugs, ideas, or general feedback.
npx claudepluginhub schmug/karkinos --plugin karkinosHow 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"
/team-summaryGenerates end-of-session summary of worker activity including completed issues, git commits, branches, worktrees status, and statistics.
/sc-worktreesManages Git worktrees for parallel development sessions: lists, creates, removes, or prunes via optional command argument (list, create, remove, prune).
/triageReviews git state across worktrees, stashes, and branches to inventory work in progress.
/statusChecks status of worktree tasks: lists active tmux sessions, git worktrees, branches, changed files, commits, and activity. Also shows details for specific sessions.
/workersRuns Docker-based workers on NimbusImage datasets via nimbusimage Python API for image annotations, properties, segmentation, spot detection, and job tracking.
Share bugs, ideas, or general feedback.
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: