| 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] |
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.
Before Any Operation
Always run stackit log 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 CONTRIBUTING.md if present for project-specific guidelines
- Follow documented commit message formats, PR templates, and workflows
- Respect any branching or testing requirements specified
Quick Health Check
Run the stack analyzer to check health and get actionable suggestions:
bash ~/.claude/skills/stackit/scripts/analyze_stack.sh
Note: All stackit commands below should be called with
--no-interactive.
Core Workflows
Creating a New Branch
- Stage changes:
git add <files>or use--allflag - Generate commit message following project conventions (see examples below)
- Create branch (name optional, auto-generated from message):
# Preferred: pipe format echo "commit message" | stackit create --no-interactive # With explicit name echo "commit message" | stackit create branch-name --no-interactive
Submitting PRs
- Check stack state:
stackit log --no-interactive - Submit options:
- Current + ancestors:
stackit submit --no-interactive - Entire stack:
stackit submit --stack --no-interactive - As drafts:
stackit submit --draft --no-interactive
- Current + ancestors:
Syncing with Main
- Sync with trunk and cleanup:
stackit sync --no-interactive - If branches were deleted:
stackit restack --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
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:
- Type(scope): brief description
- Blank line
- Detailed explanation of "why"
- Common types: feat, fix, docs, style, refactor, perf, test, chore
Command Reference
For detailed command information, see:
- Navigation: commands/navigation.md - log, 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:
- Fixing compilation errors after absorb: workflows/fix-absorb.md
- Resolving conflicts during rebase: workflows/conflict-resolution.md
- Resolving absorb conflicts: workflows/absorb-conflict.md
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
- Default to conventional commit format:
type(scope): description - Always use pipe format:
echo "message" | stackit create --no-interactive
Validation loop:
- Generate message
- Verify: Has type prefix? Clear description? Follows project format?
- 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?
- Use
bash ~/.claude/skills/stackit/scripts/validate_pr.sh "title" "body"to validate
Important Rules
- Never use raw git for branch operations - always use stackit commands
- Check state before destructive operations - run
stackit logfirst - 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 and PR validation
- Enhanced slash commands with validation loops
- New /stack-absorb command
- Expanded commit message examples
- Better error recovery patterns
Migration:
- Re-run
stackit agent init --forceto update files - No breaking changes to existing workflows