
Crux Hive
- 5 repo stars
- Updated July 27, 2026
- yellowblue1/crux
Git worktree workflow with tmux integration for parallel Claude Code sessions
About
crux-hive is a Claude Code skill in the Automation & Workflows category. Git worktree workflow with tmux integration for parallel Claude Code sessions
- crux-hive
- Automation & Workflows
- AI-coding skill
Crux Hive by the numbers
- Data as of Jul 28, 2026 (Skillselion catalog sync)
/plugin marketplace add yellowblue1/crux/plugin install crux-hive@cruxAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| repo stars | ★ 5 |
|---|---|
| Last updated | July 27, 2026 |
| Repository | yellowblue1/crux ↗ |
What it does
Git worktree workflow with tmux integration for parallel Claude Code sessions
README.md
crux-hive Plugin
Git worktree workflow with tmux integration for parallel Claude Code sessions.
Overview
Delegate tasks to parallel Claude Code sessions running in separate git worktrees. Workers are launched as Agent Teams teammates with built-in SendMessage for bidirectional communication.
Prerequisites
- tmux: Must be running inside a tmux session
- git-gtr: Git worktree runner tool
- Claude Code: Installed and configured
- Agent Teams enabled: Add the following to
~/.claude/settings.json(user-global) or.claude/settings.local.json(project-local, gitignored):{ "env": { "CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS": "1" } }
Installation
claude plugin install /path/to/crux-hive
Usage
/orchestrator-mode
That's it. The orchestrator handles everything:
- Creates a team with
TeamCreate - Delegates tasks to worker sessions in separate worktrees
- Workers communicate via built-in
SendMessage(auto-delivered) - Reviews and merges PRs
How it works
You (human)
│
└─► /orchestrator-mode
│
▼
Orchestrator (Claude)
│
├─► TeamCreate → team config
│
├─► start_worktree_session (with teamName)
│ → Worker launched as Agent Teams teammate
│
└─► SendMessage (bidirectional, auto-delivered)
▲
│
Worker (Claude in worktree)
│
└─► Completes task (creates PR, etc.)
│
▼
Uses built-in SendMessage to notify orchestrator
Debugging hooks
Hooks swallow errors by default so a misbehaving hook cannot block Claude Code. To surface the underlying error on stderr during development, set:
export CRUX_HIVE_DEBUG=1
Only the exact string 1 enables logging; other truthy-looking values (true, yes) are ignored.
Uninstalling
claude plugin uninstall crux-hive