← ClaudeAtlas

worktrunklisted

Use this skill when the user asks about Worktrunk (wt), git worktree management, running parallel AI agents with worktrees, setting up wt hooks, configuring wt.toml, using `wt switch`, `wt list`, `wt merge`, `wt remove`, `wt step`, LLM commit messages, or integrating Worktrunk with your AI agent. Also trigger when the user wants to run multiple AI agent sessions in parallel across isolated git branches, or automate dev server / database / dependency setup per worktree. Always use this skill for any question involving the `wt` CLI, worktree lifecycle automation, or the worktrunk plugin.
jjmartres/ai-coding-agents · ★ 30 · AI & Automation · score 83
Install: claude install-skill jjmartres/ai-coding-agents
# Worktrunk Skill Worktrunk (`wt`) is a CLI for git worktree management designed to run AI agents (like Claude Code) in parallel across isolated branches. Think of it as making `git worktree` as easy as `git branch`. ## Quick Reference | Task | Command | | ------------------------------- | ----------------------------------- | | Create worktree + switch | `wt switch --create feat` | | Create worktree + launch Claude | `wt switch --create feat -x claude` | | List all worktrees | `wt list` | | Merge & clean up | `wt merge main` | | Remove current worktree | `wt remove` | | Commit staged changes | `wt step commit` | ## Installation ```bash # macOS/Linux (recommended) brew install worktrunk && wt config shell install # Cargo cargo install worktrunk && wt config shell install # Windows winget install max-sixty.worktrunk git-wt config shell install ``` Shell integration (`wt config shell install`) is required so that `wt switch` can actually change the shell's directory. ## Core Workflow ### 1. Create and Switch ```bash wt switch --create feature-auth # New branch + worktree wt switch --create feature-auth -x claude # + launch Claude in it wt switch existing-branch # Switch to existing worktree wt switch - # Previous