by fynnfluegge
Autonomous multi-session AI coding orchestration in the terminal
# Add to your Claude Code skills
git clone https://github.com/fynnfluegge/agtxcurl -fsSL https://raw.githubusercontent.com/fynnfluegge/agtx/main/install.sh | bash
cargo build --release
cp target/release/agtx ~/.local/bin/
# Run in any git repository
cd your-project
agtx
# Or run in dashboard mode (manage all projects)
agtx -g
No comments yet. Be the first to share your thoughts!
[!NOTE] Add
.agtx/to your project's.gitignoreto avoid committing worktrees and local task data.
| Key | Action |
|-----|--------|
| h/l or ←/→ | Move between columns |
| j/k or ↑/↓ | Move between tasks |
| o | Create new task |
| ↩ | Open task (view Claude session) |
| m | Move task forward in workflow |
| r | Resume task (Review → Running) |
| d | Show git diff |
| x | Delete task |
| / | Search tasks |
| e | Toggle project sidebar |
| q | Quit |
o): Enter title and descriptionm): Creates worktree, starts Claude in planning modem): Claude implements the planm): Opens PR with AI-generated descriptionm): Cleans up worktree and tmux after PR is mergedConfig file location: ~/.config/agtx/config.toml
# Default agent for new tasks
default_agent = "claude"
[worktree]
enabled = true
auto_cleanup = true
base_branch = "main"
[theme]
color_selected = "#FFFF99"
color_normal = "#00FFFF"
color_dimmed = "#666666"
color_text = "#FFFFFF"
color_accent = "#00FFFF"
color_description = "#E8909C"
Per-project settings can be placed in .agtx/config.toml at the project root:
# Files to co...