Prerequisites
Before you start, make sure you have:- Termpad installed on your machine
- A git repository you want to work with
- At least one AI coding tool (Claude Code, Gemini CLI, etc.)
Step 1: Add a Project
Your project now appears in the sidebar with your main branch shown.
Step 2: Create Your First Worktree
A worktree is an isolated workspace with its own git worktree and terminals. Each worktree runs independently, so changes in one worktree don’t affect others.Step 3: Launch an AI Agent
Your worktree is ready. Now launch your AI coding tool in the terminal.- Claude Code
- Gemini CLI
- Other Tools
Step 4: Create More Worktrees
While your first AI is working, create additional worktrees for parallel work.Create another worktree
Click Add Worktree again and give it a different branch name (e.g.,
feature/user-profile).Each worktree gets its own git worktree, so there’s no risk of merge conflicts between worktrees while you work.
Step 5: Review and Merge
When an AI finishes its task, review the changes before merging.Open the diff viewer
Click on a worktree to see what files changed. The diff viewer is located in the top right corner of the source control header.Use the diff viewer to review the code and add comments on specific lines. Once you’ve annotated all the issues, click the copy button at the top to copy all comments automatically, then paste them into your AI agent CLI to generate fixes.