| name | stackit |
| description | Manage stacked Git branches with Stackit. Use when creating/managing stacked branches, submitting PRs for branch stacks, navigating branch trees, rebasing stacks, syncing with main/trunk, troubleshooting stack issues, absorbing changes, resolving rebase conflicts, or any workflow involving dependent Git branches. Keywords stackit, stacked changes, stacked PRs, branch stack, restack, absorb, git stack. |
| allowed-tools | Bash(stackit:*), Bash(git:*), Bash(~/.claude/skills/stackit/scripts/*:*), Read, Grep, Glob |
| version | {"[object Object]":null} |
Stackit - Stacked Branch Management
You are an expert at using Stackit to manage stacked Git branches. Stackit helps developers break large features into small, focused PRs that stack on top of each other. Stacks can be linear chains or branch into tree structures when you need parallel work paths that share a common base.
Why Stack Your Changes?
Small PRs get reviewed faster. PRs under 400 lines get reviewed in hours, not days. Stacking lets you ship big features as small, focused PRs.
Each branch = one reviewable unit. Stack related changes so reviewers can approve phases independently. The refactor can land while tests are still in review.
Easy to revert. If one phase causes issues, revert just that PR without affecting the rest of the feature.
Clear history. Your git log tells the story of how a feature evolved, not a jumbled mess of "fix typo" commits.
When to Stack (Decision Framework)
Stack when ANY of these apply:
- Change has 2+ distinct logical phases
- Total diff would exceed ~400 lines
- Different reviewers needed for different parts
- You want early feedback on foundational work
- Changes touch unrelated subsystems
Single commit/PR is fine when:
- Small, focused change (<200 lines)
- Single logical unit
- Trivial fix that doesn't benefit from splitting
Default to stacking. When in doubt, create a new stacked branch. It's easy to fold branches together later; splitting is harder.
Before Any Operation
Always run stackit tree --no-interactive first to understand:
- Current branch position in the stack
- Parent/child relationships
- Which branches need attention
CRITICAL: Non-Interactive Mode
When calling stackit commands, ALWAYS include the --no-interactive flag. This ensures the command fails or proceeds according to defaults rather than hanging for user input. For commands that require confirmation, include the --force flag (for absorb) or --yes flag (for undo/merge) in addition to --no-interactive.
Check for project conventions:
- Read
README.md and CONTRIBUTING.md for project-specific guidelines before generating commit messages or branch names.
- Follow documented commit message formats, PR templates, and workflows.
- Respect any branching or testing requirements specified.
Quick Health Check
Run at session start to proactively identify issues:
stackit state --json
This single call returns a complete JSON snapshot:
current_branch / trunk, and working_tree (staged/unstaged/untracked/clean)
operation: any in-progress rebase/merge with conflicted_files
stack.branches: array of branch status (current, parent/children, PR/CI status, needs_restack/is_locked/is_frozen/scope)
stack.summary: counts for total branches, approved branches, and branches in review
When to mention health issues proactively:
If the health check reveals issues, inform the user:
I notice your stack has some health issues:
- feature-api has failing CI
- feature-models is ready to merge (approved, CI passing)
Would you like me to help address any of these?
Alternative: Use the analyze script for detailed output:
bash ~/.claude/skills/stackit/scripts/analyze_stack.sh
Note: All stackit commands below should be called with stackit ... --no-interactive.
Core Workflows
Creating a New Branch
Key difference from git: Unlike git where you create a branch first then commit, stackit creates the branch and commits in one step. This allows automatic branch name generation from the commit message.
- Stage changes:
git add <files> or use --all flag
- Generate commit message after checking
README.md / CONTRIBUTING.md; follow project conventions if documented, otherwise write a clear, descriptive summary.
- Create branch with commit (branch name auto-generated from message, respects
branch.pattern config):
echo "feat: add user authentication" | stackit create -F - --no-interactive
echo "feat: add user authentication" | stackit create -F - my-branch --no-interactive
echo "feat: add user authentication" | stackit create -F - --all --no-interactive
- If currently on trunk (e.g., main/master), warn and confirm or switch to a feature branch before creating.
- Show stack:
stackit tree --no-interactive
Adding More Commits to a Branch
A stacked branch can have multiple commits. You don't need to create a new branch for every commit:
- Add another commit: Make changes, stage them, then use
git commit as normal
- Amend the current commit:
stackit modify (like git commit --amend)
- Absorb changes into the right commits: Stage fixes across multiple commits, then
stackit absorb automatically amends each change to the correct commit
When to use multiple commits vs new branches:
- Same logical change: Multiple commits in one branch (e.g., implementation + tests)
- Separate reviewable units: Create a new stacked branch with
stackit create
Submitting PRs
- Check stack state:
stackit tree --no-interactive
- Submit options:
- Current + ancestors:
stackit submit --no-interactive
- Entire stack:
stackit submit --stack --no-interactive
- As drafts:
stackit submit --draft --no-interactive
Syncing with Main
- Sync with trunk and cleanup:
stackit sync --no-interactive
- If branches were deleted or reparented:
stackit restack --all-stacks --continue-on-conflict --no-interactive (covers every independent stack rooted at trunk while letting unaffected stacks proceed). For a single stack, scope it: stackit restack --branch <root> --upstack --no-interactive.
Fixing Issues
- Rebase conflicts: Resolve files, then
stackit continue --no-interactive
- Absorb conflicts: See workflows/absorb-conflict.md or use
stackit absorb --show-conflict --no-interactive
- Abort operation:
stackit abort --no-interactive
- Undo last command:
stackit undo --no-interactive --yes
- Stack health issues: See workflows/fix-absorb.md or run
/stack-fix
- Intelligent folding: See workflows/stack-fold.md or run
/stack-fold
Commit Message Examples
Generate commit messages following these patterns:
Example 1: Feature addition
feat(auth): implement JWT-based authentication
Add login endpoint and token validation middleware.
Supports refresh tokens and role-based access.
Example 2: Bug fix
fix(cache): prevent race condition in invalidation
Add mutex locking around cache clear operations.
Fixes issue where concurrent requests could see stale data.
Example 3: Multiple changes
chore: update dependencies and refactor errors
- Upgrade lodash to 4.17.21
- Standardize error response format
- Add error codes for API responses
Format:
- Follow project conventions from README.md/CONTRIBUTING.md if documented
- Otherwise: clear, descriptive subject line + blank line + explanation of "why"
- Some projects use conventional commits:
type(scope): description
Command Reference
For detailed command information, see:
- Navigation: commands/navigation.md - tree, checkout, up, down, trunk
- Branch operations: commands/branch.md - create, modify, absorb, delete
- Stack operations: commands/stack.md - restack, submit, sync, foreach
- Recovery & utilities: commands/recovery.md - undo, continue, abort, doctor
Quick reference: reference.md
Detailed Workflows
For complex operations requiring multiple steps:
Auto-Generation Guidelines
Branch Names
Branch names are optional - stackit auto-generates from commit message:
- Only provide if user explicitly requests a specific name
- Auto-generated format: kebab-case from commit message
- Example: "Add user authentication" → "add-user-authentication"
Commit Messages
When generating commit messages:
- Check README.md and CONTRIBUTING.md for project guidelines
- Follow documented conventions if available
- If no conventions documented, write a clear, descriptive message
- Use pipe format:
echo "message" | stackit create -F - --no-interactive
Validation loop:
- Generate message
- Verify: Clear description? Follows project conventions (if documented)?
- If fails: revise and re-validate
- Only proceed when message meets quality standards
PR Descriptions
When generating PR descriptions:
- Check for .github/pull_request_template.md or CONTRIBUTING.md
- Follow project-specific templates if available
- Default format:
## Summary
- Bullet point summary of changes
## Test Plan
- [ ] Specific testing steps
- [ ] Verification procedures
[Additional sections per project templates]
Validation before submission:
- Title is clear and descriptive?
- Body has meaningful content (not placeholders)?
- Test plan is specific?
FORBIDDEN Commands
When working with stacks, NEVER use these git commands:
| FORBIDDEN | USE INSTEAD |
|---|
git commit (for new branches) | stackit create |
git checkout -b | stackit create |
gh pr create | stackit submit |
git rebase | stackit restack --branch <branch> --upstack (or --all-stacks) |
Exception: git commit is allowed ONLY when adding additional commits to an existing stacked branch.
Important Rules
- NEVER use
git commit to create new stacked branches - always use stackit create
- Stage changes BEFORE running
stackit create - it requires staged changes to work correctly
- Check state before destructive operations - run
stackit tree first
- Always validate after absorb - absorb can cause compilation errors, see fix-absorb workflow
- Handle conflicts gracefully - guide user through resolution, see conflict-resolution workflow
- Keep PRs small and focused - suggest splitting if too large
- Use validation loops - for commit messages, PR descriptions, and post-absorb builds
Version {{VERSION}} Changes
New features:
- Progressive disclosure with organized reference files
- Workflow checklists for complex operations (fix-absorb, conflict resolution)
- Utility scripts for stack analysis
- Enhanced slash commands with validation loops
- New
/stack-absorb and /stack-fold commands
- Expanded commit message examples
- Better error recovery patterns
Migration:
- Re-run
stackit agent install --force to update files
- No breaking changes to existing workflows