Integrations¶
Stackit integrates with your development tools to provide a seamless stacking workflow.
Available Integrations¶
-
AI Agents
AI-assisted stacking with intelligent commands and skill files for Claude Code, Codex, and Cursor.
-
GitHub
GitHub Actions for CI checks on locked branches and stack order enforcement.
-
Git Hooks
Pre-commit and pre-push hooks to prevent modifications to locked branches.
-
Shell Integration
Enable automatic directory changes when working with worktrees.
Quick Setup¶
Install all recommended integrations:
# Agent integration (Claude Code + Codex + Cursor)
stackit agent install
# GitHub Actions
stackit github install
# Git hooks (pre-commit and pre-push)
stackit precommit install
stackit prepush install
# Shell integration (add to your shell config)
eval "$(stackit shell zsh)" # or bash/fish
Integration Overview¶
| Integration | Purpose | Setup Command |
|---|---|---|
| AI Agents (Claude/Codex/Cursor) | AI-assisted stacking commands | stackit agent install |
| GitHub | CI checks for PRs | stackit github install |
| Pre-commit hook | Block commits to locked branches | stackit precommit install |
| Pre-push hook | Block pushes to locked branches | stackit prepush install |
| Shell | Auto-cd for worktrees | eval "$(stackit shell zsh)" |