
We recently released agent plugins for the Aviator CLI that bring stacked PR workflows to coding agents like Claude Code.
What the plugin does
The av-cli plugin teaches Claude Code and other coding agents how to use the Aviator CLI ( av ) for branch and PR management. Once installed, the agent will:
- Detect av-initialized repos and automatically use av commands instead of raw git
- Create branches within your stack using av branch so dependencies stay intact
- Open PRs with correct base branches via av pr — no more manually fixing targets
- Keep stacks in sync with av sync when parent branches change
- Handle merge conflicts using --continue , --abort , and --skip flags
- Adopt remote branches with av adopt --remote for collaborating on shared stacks
Getting started
Install from the Claude Code plugin marketplace:
/plugin marketplace add aviator-co/agent-plugins/plugin install av-cli
Prerequisites: Aviator CLI installed, repo initialized with av init , and GitHub CLI or a GitHub PAT for auth.
The plugin activates automatically in av-initialized repositories — no extra prompting required.
Why stacked PRs
Stacked PRs let you break large features into small, reviewable chunks while maintaining dependencies between them. Instead of one massive PR that nobody wants to review, you get a chain of focused, incremental changes. When a parent branch changes, av sync automatically rebases the dependent branches.
Pair that with a coding agent that actually understands the workflow, and you get fast iteration without the manual bookkeeping.
Check out the plugins repo: github.com/aviator-co/agent-plugins



