Parallel AI task pods via git worktrees
Project description
taskpods: Parallel AI Task Pods via Git Worktrees
taskpods is a tiny command‑line tool that lets you spawn disposable "AI pods" in your Git repository. Each pod is its own worktree and branch, so you can run Copilot, Cursor, or Claude Code on isolated tasks without polluting your main branch. When you're done, you can commit and push the work to a pull request or nuke the pod entirely.
Features
- Instant sandbox:
taskpods start <name>creates a new worktree under.taskpods/<name>and checks out a branchpods/<name>from a base branch (defaultmain). - Clean exit:
taskpods done <name>stages, commits, and pushes everything in the pod, optionally opening a GitHub pull request via [ghCLI], then removes the worktree. - Abort button:
taskpods abort <name>deletes an unpushed pod and its branch without a trace. - Status overview:
taskpods listshows your active pods and where they live in the file system. - House‑keeping:
taskpods pruneremoves pods whose branches have been merged into their base branch.
Installation
Quick Install (Recommended)
Install from PyPI:
pip install taskpods
Alternative Installation Methods
From GitHub (latest development version):
pip install git+https://github.com/yanairon/taskpods.git
Manual installation:
# Download and install manually
curl -O https://raw.githubusercontent.com/yanairon/taskpods/main/taskpods.py
chmod +x taskpods.py
sudo mv taskpods.py /usr/local/bin/taskpods
Requirements:
- Python 3.9+
- Git 2.5+ with worktree support
- A Git repository with a remote named
origin
Usage
Create a new pod
taskpods start fix‑typos
This will:
- Fetch the latest changes from
mainand fast‑forward your localmain. - Create a new branch
pods/fix‑typosfrommain. - Add a Git worktree at
.taskpods/fix‑typos. - Drop you into a new editor window (Cursor if available, otherwise VS Code) with the worktree opened.
Finish a pod and create a pull request
taskpods done fix‑typos -m "Fix docs typos" --remove
This will stage and commit all changes in the worktree with the given message, push the branch to origin, open a pull request via the [gh CLI] (if installed), and remove the worktree. The branch remains so you can still interact with the PR.
Abort a pod
taskpods abort fix‑typos
If the branch hasn't been pushed to origin, this will delete the worktree and local branch. It refuses to abort pods whose branches are already on origin to avoid data loss.
List active pods
taskpods list
Lists all worktrees under .taskpods, showing the pod name, branch, and path.
Prune merged pods
taskpods prune
Finds pods whose remote branches are fully merged into their base branch and removes their worktrees.
Requirements
- Python 3.9+ – This script uses only the standard library.
- Git – You need Git installed with worktree support (Git 2.5+). The repository must already be initialised with a remote named
origin. - Editor (optional) – The script will try to open your preferred editor. You can configure it via:
- Environment variable:
export TASKPODS_EDITOR="vim" - Configuration file:
~/.taskpodsrc - Command line:
taskpods start my-feature --editor vim - Auto-detection: Falls back to common editors if none configured
- Environment variable:
ghCLI (optional) – If installed,taskpods donewill automatically open a GitHub pull request. Otherwise, it simply pushes the branch and prints a success message.
Editor Configuration
Environment Variable
export TASKPODS_EDITOR="vim"
export TASKPODS_EDITOR="code"
export TASKPODS_EDITOR="cursor"
Configuration File
Create ~/.taskpodsrc:
{
"editor": "vim",
"default_base": "main"
}
Command Line
taskpods start my-feature --editor vim
taskpods start my-feature --editor code
taskpods start my-feature --editor cursor
Supported Editors
- Modern: Cursor, VS Code, Sublime Text, Atom
- Terminal: Vim, Neovim, Emacs
- Custom: Any editor available in your PATH
Support
License
This project is released under the MIT License. See the LICENSE file for details.
Why worktrees?
Git worktrees let you have multiple branches checked out in separate directories without duplicating your entire .git object store. They're faster than clones, don't waste disk space, and make cleanup trivial. taskpods wraps a handful of git worktree commands with sensible defaults and adds quality‑of‑life features like automatic PR creation and safe aborts.
DISCLAIMER
This tool is provided "as is" with no warranty. It writes to your Git repository and could potentially cause data loss if used incorrectly. Read the code, use it at your own risk, and always back up anything important before experimenting.
Development
For contributors and developers:
Setting up the development environment
git clone https://github.com/yanairon/taskpods.git
cd taskpods
pip install -e ".[dev]"
pre-commit install
Running tests
# Run all tests
make test
# Run tests with coverage
make test-cov
# Run all quality checks
make check
Code quality
The project uses several tools to maintain code quality:
- Black - Code formatting
- Flake8 - Linting
- MyPy - Type checking
- Pre-commit - Automated quality checks
Run make format to format code and make lint to check for issues.
Contributing
Contributions, bug reports, and feature requests are welcome! Feel free to open an issue or submit a pull request.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file taskpods-0.3.0.tar.gz.
File metadata
- Download URL: taskpods-0.3.0.tar.gz
- Upload date:
- Size: 13.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
736a51ee45a1e0c432ae983b3a9329380dd063ed4587aca6dc373e83c79183b4
|
|
| MD5 |
87028822b681f1d423385177908685f1
|
|
| BLAKE2b-256 |
a21e51174b870dc1040486583ca67b6259860755690ce72777ab77d640ea0fc4
|
File details
Details for the file taskpods-0.3.0-py3-none-any.whl.
File metadata
- Download URL: taskpods-0.3.0-py3-none-any.whl
- Upload date:
- Size: 11.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d119ffe2196c141fa06644e2e5eaebf4671193fdb8e3f001a5771e77946d64dd
|
|
| MD5 |
68a765c1c3156c3fdabbbcd2af007eb1
|
|
| BLAKE2b-256 |
6d991d5b429547aced1727b5456a3417d8ef34ef558ee2d44ef65b03e57cc118
|