スキル一覧に戻る
schmug

workers

by schmug

Parallel Claude Code workers using git worktrees 🦀

0🍴 0📅 2026年1月2日
GitHubで見るManusで実行

SKILL.md


name: workers description: List all active Claude workers and their git worktrees. Shows branch status, commits, and suggests next actions. Use to see what workers are running. allowed-tools: Bash, Read

Workers Skill

List and manage active Claude workers.

Usage

/workers

Instructions

When the user invokes /workers, show the status of all worktrees and workers:

1. List Git Worktrees

git worktree list

2. Show Worker Details

For each worktree (excluding main):

  • Branch name and last commit
  • Files changed vs main
  • Whether it's ahead/behind 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>

3. Format Output

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 |

4. Suggest Actions

Based on status, suggest:

  • Workers with commits → "Ready for PR?"
  • Stale worktrees (no recent commits) → "Clean up?"
  • Workers behind main → "Rebase needed"

5. Quick Actions

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

Notes

  • Only shows worktrees in the parent directory (../artemis-*)
  • Main repo worktree is always excluded from the list
  • Worktrees can be filtered by status if needed

スコア

総合スコア

55/100

リポジトリの品質指標に基づく評価

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

+10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

0/5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

レビュー

💬

レビュー機能は近日公開予定です