← スキル一覧に戻る

git-worktree
by ex-machina-co
OpenCode plugin for Orca + Specialists agent orchestration
⭐ 1🍴 0📅 2026年1月21日
SKILL.md
name: git-worktree description: Git worktree workflow helpers for parallel development on multiple branches
Git Worktree Workflow
Worktrees enable working on multiple branches simultaneously without stashing or switching.
Branch Naming Convention
Use semantic prefixes based on the type of work:
| Prefix | Use When | Example |
|---|---|---|
feat/ | New functionality, enhancements, additions | feat/user-auth |
fix/ | Bug fixes, corrections, repairs | fix/login-redirect |
enhancement/ | Maintenance, dependencies, config updates | enhancement/update-deps |
refactor/ | Code restructuring without behavior change | refactor/api-handlers |
docs/ | Documentation only | docs/api-reference |
test/ | Adding or updating tests | test/auth-coverage |
ci/ | CI/CD pipeline changes | ci/github-actions |
style/ | Formatting, whitespace (no code change) | style/lint-fixes |
perf/ | Performance improvements | perf/query-optimization |
Layout
opencode-orca/
├── worktrees/ # Worktree container (gitignored)
│ ├── feat-login/ # Branch: feat/login
│ └── fix-build/ # Branch: fix/build
├── src/
└── ...
Commands
| Command | Description |
|---|---|
bun run wt:new <branch> [base] | Create worktree (auto bun install) |
bun run wt:list | List all worktrees |
bun run wt:rm <dirname> | Remove worktree and prune |
Examples
# Create new feature branch from main
bun run wt:new feat/auth
# Create hotfix from production tag
bun run wt:new hotfix/urgent v1.2.0
# Attach to existing branch
bun run wt:new existing-branch
# List worktrees
bun run wt:list
# Remove worktree (by folder name)
bun run wt:rm feat-auth
Updating a Worktree from Main
When main has new commits you want in your feature branch:
cd worktrees/feat-login
# Fetch latest
git fetch origin
# Merge
git merge origin/main
Or from anywhere using -C:
git -C worktrees/feat-login fetch origin
git -C worktrees/feat-login merge origin/main
Notes
- Branch names are sanitized:
feat/login→feat-loginfolder - Dependencies are installed automatically on creation
- Each worktree is independent — no shared node_modules with the main repo
スコア
総合スコア
60/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未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
レビュー
💬
レビュー機能は近日公開予定です