Quick Start: Your First Parallel Session¶
Time: 5 minutes
This tutorial walks you through running multiple AI backend instances in parallel on a real project.
Prerequisites¶
- Claudio installed (
claudio --helpworks) - Preferred backend CLI authenticated (Claude Code or Codex)
- A Git repository to work in
Step 1: Set Up Your Project¶
Navigate to a Git repository. For this tutorial, we'll use a simple example:
# Create a test project (or use your own)
mkdir claudio-demo
cd claudio-demo
git init
# Create some starter files
echo '# My App' > README.md
mkdir src
echo 'console.log("Hello");' > src/index.js
git add . && git commit -m "initial commit"
Step 2: Initialize Claudio¶
You should see:
Step 3: Start a Session¶
The TUI launches. You'll see an empty dashboard waiting for instances.
Step 4: Add Your First Instance¶
Press a to add an instance. Enter:
Watch as Claudio: 1. Creates a worktree in .claudio/worktrees/ 2. Creates a new branch 3. Starts the configured backend with your task
Step 5: Add a Second Instance¶
While the first is working, press a again:
Now you have two instances running in parallel!
Step 6: Monitor Progress¶
- Press
1or2to switch between instances - Use
j/kto scroll through output - Press
dto see the diff of changes
Watch both instances work simultaneously.
Step 7: Create a PR¶
When an instance shows [completed]:
- Select it with
1or2 - Press
xto stop - Choose "Create PR" (if you have
ghconfigured)
Or just keep the branch for manual review.
Step 8: Clean Up¶
Press q to quit. Choose to stop remaining instances.
Clean up resources:
What You Learned¶
- Initialize:
claudio initsets up the project - Start:
claudio start <name>launches the TUI - Add instances: Press
ato add parallel tasks - Navigate: Use
Tab/Shift+Tab,j/kto move around - View changes: Press
dfor diffs - Create PRs: Press
xto stop and create PR - Cleanup:
claudio cleanupremoves stale resources
Next Steps¶
- Feature Development Tutorial - Build a complete feature
- Instance Management Guide - Deep dive into instances
- Configuration Guide - Customize Claudio