Now in Public Beta

One AI at a time?
That's so 2024.

Run Claude Code, Codex, Gemini, or any AI CLI in parallel. Each session gets its own git worktree. No conflicts. No waiting.

Works with Claude, Gemini, Codex & more
Termpad
Repositories(2)
my-saas-app
feature/auth
fix/api-bug
main
landing-page
feature/auth
Claude Code
Codex
$ claude
╭─────────────────────────────────╮
│ Claude Code v1.0.58 │
╰─────────────────────────────────╯
> Implementing authentication flow...
✓ Created src/auth/login.ts
✓ Created src/auth/session.ts
◐ Updating middleware...
Scroll
The Problem

AI coding assistants are powerful.But they're slow.

You think in parallel. Your AI works in sequence.That mismatch costs you hours every week.

Sequential workflows

One task at a time. Always waiting.

Task 1: Auth flowWorking...
Task 2: API endpointsQueued
Task 3: Unit testsQueued
Estimated completion~45 min

Git conflicts

Multiple AIs, same branch = chaos.

api.tsCONFLICT
<<<<<<< HEAD
const api = new API();
=======
const api = createAPI();
>>>>>>> feature/auth

Merge conflict in 3 files. Manual resolution required.

Context switching

Jumping between tasks kills flow.

Claude
VS Code
Browser
Slack
Terminal
Docs
Switching context...~23 min lost per switch

Manual worktree setup

Tedious, error-prone, time-consuming.

Terminal
$ git worktree add ../feat-auth -b feature/auth
$ cd ../feat-auth && npm install
$ git worktree add ../fix-bug -b fix/bug
error: 'fix/bug' is already checked out at '/project'
$ git worktree list
$ # wait, which one was which again?
The Solution

Parallel AI workflows.Powered by git worktrees.

Live Status

Track every AI session from the sidebar. See which agents are running, waiting for input, or idle.

Session Status
3 active
feature/auth
Claude Code
Running
fix/api-bug
Codex
Waiting
refactor/db
Gemini
Idle
Running
Waiting
Idle

Code Review

Review AI changes before pushing. Add comments, then copy them to the AI to fix.

Review Changes
+42-12
src/auth/login.ts
12export async function login(
+ credentials: LoginCredentials
+): Promise<Session> {
- // TODO: implement
SuggestionLine 14

Add input validation before processing credentials to prevent injection attacks.

Git Built-in

Stage, commit, push without leaving Termpad. Real-time sync status included.

Source Control
feature/authorigin
30
Staged3 files
Asrc/auth/login.ts
Asrc/auth/session.ts
Asrc/middleware.ts
feat: implement user authentication

Every Platform

Windows · macOS · Linux

Every AI CLI

Works with any terminal-based agent

ClaudeCodexGemini
How It Works

Four steps to parallel.

1
Repositories(1)
my-saas-app
Add repo

Add Project

Point Termpad to any git repository.

2
my-saas-app
feature/auth
fix/api-bug
main

Create Sessions

Spin up multiple sessions, each in its own isolated worktree.

3
Claude Code
> Building auth...
✓ login.ts
✓ session.ts
◐ middleware...

Run AI Agents

Launch Claude Code, Codex, or any AI CLI in each terminal. They work simultaneously, isolated from each other.

4
feature/auth+3 ahead
Alogin.ts
Asession.ts

Merge & Ship

Review changes, merge branches, clean up worktrees. Termpad handles the git complexity.

Use Cases

Built for how
developers actually work.

See how Termpad transforms your workflow with real parallel sessions.

Feature Development

AI builds login while you architect the dashboard. Ship 3x faster.

Termpad
Sessions
feature/auth
feature/dashboard
feature/api
Claude
> Building auth module...
✓ Created LoginForm.tsx
✓ Created useAuth.ts
✓ Created AuthContext.tsx
◐ Writing tests...

Bug Fixing

Triage 3 bugs simultaneously with 3 AI sessions. No context switching.

Termpad
Bug Fixes
fix/api-500
fix/ui-glitch
fix/data-sync
API Bug
Analyzing...
✓ Found null check
✓ Patched
UI Glitch
Debugging...
✓ Fixed z-index
◐ Testing
Data Sync
Tracing...
✓ Race condition
◐ Fixing

Code Review

AI reviews a PR in one session while you keep coding in another.

Termpad
Workflow
pr-review
feature/new
PR Review
Reviewing PR #142...
✓ No security issues
✓ Tests pass
! Consider edge case
Line 42: Add null check
Development
> Adding new endpoint
✓ Route created
✓ Handler written
◐ Documenting...

Experimentation

Test different AI approaches to the same problem in parallel.

Termpad
Experiments
approach-A
approach-B
Approach AClaude
Recursive solution
✓ Clean code
! O(n²) space
Benchmark:142ms
Approach BCodex
Iterative solution
✓ O(n) space
✓ Faster
Benchmark:89ms

Before & After

See the difference Termpad makes.

Without Termpad
Wait for AI to finish each task
Manual worktree management
Context switching between windows
Git conflicts from parallel work
With Termpad
Run 3-5 AI tasks simultaneously
One-click worktree creation
Unified dashboard for all sessions
Isolated branches, clean merges
Free Download

Ready to go parallel?

Download Termpad and start running multiple AI agents in parallel. Works with Claude, Gemini, Codex, and any coding CLI.

Download for Windows

Heads up: You may see a security warning during installation. Termpad is in public beta and as a solo developer, I haven't purchased code-signing certificates yet — this is expected and the app is safe. To bypass the warning:

  • Windows: Click “More info” → “Run anyway”
  • macOS: Right-click the app → “Open” → “Open anyway”
  • Linux: You're probably fine
Works with any coding CLI
ClaudeGeminiCodex& more