Set up parallel coding sessions using git worktrees for zero dead time. Use when blocked on tests, builds, or wanting to explore multiple approaches simultaneously.
Install with Tessl CLI
npx tessl i github:rohitg00/pro-workflow --skill parallel-worktrees86
Does it follow best practices?
If you maintain this skill, you can automatically optimize it using the tessl CLI to improve its score:
npx tessl skill review --optimize ./path/to/skillValidation for skill structure
Zero dead time. While one session runs tests, work on something else.
Use when waiting on tests, long builds, exploring approaches, or needing to review and develop simultaneously.
Claude Code:
claude --worktree # or claude -w (auto-creates isolated worktree)Cursor / Any editor:
git worktree add ../project-feat feature-branch
# Open the new worktree folder in a second editor windowBoth approaches create an isolated working copy where changes don't interfere with your main session.
These features are Claude Code-specific (skip if using Cursor):
claude -w auto-creates and cleans up worktreesisolation: worktree in agent frontmatterCtrl+F kills all background agents (two-press confirmation)Ctrl+B sends a task to backgroundgit worktree listgit worktree list
git worktree add ../project-feat feature-branch
git worktree add ../project-fix bugfix-branch
git worktree add ../project-exp -b experiment
git worktree remove ../project-feat
git worktree pruneTerminal 1: ~/project → Main work
Terminal 2: ~/project-feat → Feature development
Terminal 3: ~/project-fix → Bug fixesEach worktree runs its own AI session independently.
| Scenario | Action |
|---|---|
| Tests running (2+ min) | Start new feature in worktree |
| Long build | Debug issue in parallel |
| Exploring approaches | Compare 2-3 simultaneously |
| Review + new work | Reviewer in one, dev in other |
| Waiting on CI | Start next task in worktree |
git worktree prune).aad0763
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.