Ship small, reviewable PR stacks quickly without giving up safety.
stax installs both binaries: stax and the short alias st. This README uses st.
- Live docs: cesarferreira.github.io/stax
- Docs index in this repo: docs/index.md
Why stax
- Replace one giant PR with a clean stack of small, focused PRs
- Keep shipping while lower-stack PRs are still in review
- Navigate the full stack and diffs from an interactive TUI
- Restack/merge with transactional safety and fast recovery (
st undo,st redo) - Run stack-aware merge/cascade workflows with CI/readiness checks
- Generate PR bodies and standup summaries with your preferred AI agent
- Work across multiple worktrees, including parallel AI worktree lanes
Install
# Homebrew (macOS/Linux)
# Or cargo-binstall
Prebuilt binaries (no package manager needed)
Download the latest binary from GitHub Releases:
# macOS (Apple Silicon)
|
# macOS (Intel)
|
# Linux (x86_64)
|
# Move binary to ~/.local/bin and symlink `st` alias
# If ~/.local/bin is not on your PATH, add it:
# echo 'export PATH="$HOME/.local/bin:$PATH"' >> ~/.zshrc # or ~/.bashrc
Verify install:
60-Second Quick Start
Set up GitHub auth first (required for PR creation, CI checks, and review metadata).
# Option A (recommended): import GitHub CLI auth
# Option B: enter token interactively
# Option C: env var
By default, stax does not use ambient GITHUB_TOKEN unless you opt in with auth.allow_github_token_env = true.
# 1. Create stacked branches
# 2. Inspect stack
# ◉ auth-ui 1↑
# ○ auth-api 1↑
# ○ main
# 3. Submit PRs for whole stack
# 4. After auth-api PR is merged on GitHub...
# Pull trunk, detect the merge, delete auth-api, reparent auth-ui → main
# Rebase auth-ui onto updated main
# Or do both in one shot:
Result: two stacked branches, submitted as two linked PRs. After the bottom PR is merged, sync detects it, cleans up, and restack rebases the remaining branch onto trunk.
Picked the wrong trunk branch? Run st trunk main to switch it, or st init --trunk <branch> to reconfigure from scratch.
Next steps:
Core Commands
| Command | What it does |
|---|---|
st |
Launch interactive TUI |
st ls |
Show stack with PR/rebase status |
st ll |
Show stack with PR URLs and details |
st create <name> |
Create a branch stacked on current |
st ss |
Submit full stack and create/update PRs |
st merge |
Merge PRs from stack bottom to current |
st merge --when-ready |
Wait/poll until mergeable, then merge |
st rs |
Sync trunk and clean merged branches (no rebasing) |
st rs --restack |
Sync trunk, clean merged branches, then rebase stack |
st restack |
Rebase current stack onto parents locally (--stop-here skips descendants) |
st cascade |
Restack, push, and create/update PRs |
st undo / st redo |
Recover or re-apply risky operations |
st standup |
Summarize recent engineering activity |
st pr |
Open the current branch PR in the browser |
st pr list |
Show open pull requests in the current repo |
st issue list |
Show open issues in the current repo |
st generate --pr-body [--no-prompt] |
Generate PR body with AI |
st run <cmd> (alias: st test <cmd>) |
Run a command on each branch in stack |
For complete command and flag reference: docs/commands/core.md and docs/commands/reference.md.
Key Capabilities
Cascade Stack Merge
Merge from stack bottom up to your current branch with safety checks for CI/readiness.
# Merge from bottom -> current branch
# Wait for readiness explicitly before merging
# Merge full stack regardless of current position
Read more: docs/workflows/merge-and-cascade.md
Safe History Rewriting (Undo/Redo)
stax snapshots branch state before destructive operations (restack, submit, reorder) so recovery is immediate when something goes wrong.
Read more: docs/safety/undo-redo.md
Interactive TUI
Launch with no arguments to browse stacks, inspect diffs, and run common operations without leaving the terminal.
Read more: docs/interface/tui.md
Developer Worktrees
Work on multiple stacks in parallel without losing context. st worktree (alias st wt) creates and manages Git worktree lanes for existing or new branches, with shell integration for transparent cd.
# Open the worktree dashboard (interactive terminals only)
# One-time shell integration setup
# Create a fresh random lane or a named lane
# List all worktrees (* = current)
# Jump to a worktree (transparent cd via shell function)
# or the quick alias:
# Remove when done
Shortcuts: st w (list), st wtc [branch] (create), st wtgo <name> (go), st wtrm <name> (remove). In an interactive terminal, bare st wt opens the worktree dashboard and uses tmux-backed re-entry for lanes.
Read more: docs/workflows/multi-worktree.md
Worktree Lanes For AI
Run 2, 3, or 8 AI coding sessions in parallel without sharing one working directory.
Each lane is an isolated Git worktree with a real branch behind it. When stax creates the branch for a lane, it also writes normal stax metadata, so that lane shows up in st ls, participates in restack/sync/undo, and can be reopened instantly with st wt go.
# Spin up three lanes in parallel
# They are normal stax branches, not hidden scratch dirs
# Trunk moved while they were running? Restack every managed lane
# Jump back into any lane and continue exactly where you left off
# Rich status + cleanup
Read more: docs/workflows/agent-worktrees.md
AI PR Body + Standup Summary
Use your configured AI agent to draft PR bodies and generate daily standup summaries.
# Generate/update PR body from branch diff + context
# Generate/update PR body without the review prompt
# Spoken-style standup summary
Read more: docs/integrations/pr-templates-and-ai.md and docs/workflows/reporting.md
Docs Map
If you want to...
- Install and configure quickly: docs/getting-started/install.md
- Learn stacked branch concepts: docs/concepts/stacked-branches.md
- Use day-to-day commands: docs/commands/core.md
- Explore full command/flag reference: docs/commands/reference.md
- Navigate branches efficiently: docs/commands/navigation.md
- Merge, cascade, and keep stacks healthy: docs/workflows/merge-and-cascade.md
- Work across multiple worktrees: docs/workflows/multi-worktree.md
- Use developer worktrees (
st worktree): docs/workflows/multi-worktree.md - Run several AI worktree lanes in parallel: docs/workflows/agent-worktrees.md
- Configure auth/branch naming/remote behavior: docs/configuration/index.md
- Validate and repair metadata health: docs/commands/stack-health.md
Integrations
AI/editor integration guides:
- Claude Code: docs/integrations/claude-code.md
- Codex: docs/integrations/codex.md
- Gemini CLI: docs/integrations/gemini-cli.md
- OpenCode: docs/integrations/opencode.md
- PR templates + AI generation: docs/integrations/pr-templates-and-ai.md
Shared skill/instruction file used across agents: skills.md
Performance & Compatibility
st lsis benchmarked against alternative stacked-branch CLIs and is typically much faster in this repo's benchmark setup.- stax is freephite/graphite compatible for common stacked-branch workflows.
Details:
- Benchmarks: docs/reference/benchmarks.md
- Compatibility: docs/compatibility/freephite-graphite.md
Configuration
Config file location:
~/.config/stax/config.toml
Common settings include branch naming format, submit stack-links placement, auth source preferences, and enterprise GitHub API host overrides.
Example:
[]
= "body" # "comment" | "body" | "both" | "off"
If you want stax to reset and immediately re-prompt for the AI agent/model, run:
Use st config --reset-ai --no-prompt to only clear the saved pairing without opening the picker.
Read full config reference: docs/configuration/index.md
Contributing & License
- License: MIT
- Before opening a PR, run the repo test command policy from AGENTS.md:
# or
For project docs and architecture, start at docs/index.md.