
Parallel Worktrees
- 118 installs
- 99 repo stars
- Updated August 4, 2026
- thebeardedbearsas/claude-craft
Helps with ai & agent building tasks.
About
parallel-worktrees is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.
- parallel-worktrees
- AI & Agent Building
- AI-coding skill
Parallel Worktrees by the numbers
- 118 all-time installs (skills.sh)
- Ranked #3,882 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
- Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/thebeardedbearsas/claude-craft --skill parallel-worktreesAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 118 |
|---|---|
| repo stars | ★ 99 |
| Last updated | August 4, 2026 |
| Repository | thebeardedbearsas/claude-craft ↗ |
What it does
Helps with ai & agent building tasks.
Files
Parallel Worktrees
Productivity pattern for running multiple Claude Code sessions on the same repository.
See ../../rules/12-context-management.md for detailed documentation.
Quick Reference
Setup
# Create worktree for a feature branch
git worktree add ../feature-name feature/branch-name
# Launch Claude in the worktree
cd ../feature-name && claudeWriter/Reviewer Pattern
| Terminal | Role | Command |
|---|---|---|
| Terminal 1 | Writer | cd ../feature-auth && claude "Implement feature" |
| Terminal 2 | Reviewer | cd ../review-auth && claude "Review the code" |
Best Practices
- 3-5 worktrees maximum
- One worktree = one task
- Remove completed worktrees:
git worktree remove ../feature-name - Never share sessions between worktrees
Cleanup
# List all worktrees
git worktree list
# Remove a worktree
git worktree remove ../feature-name
# Prune stale worktree entries
git worktree pruneRelated skills
AI & Agent Buildingagents