Vibe-Switch

tmux for AI Agents — Orchestrate multiple AI coding agents in parallel with one command. Run Claude Code, Codex CLI, and Gemini CLI simultaneously on isolated Git branches with seamless context handoff.

Safety Notice

This listing is from the official public ClawHub registry. Review SKILL.md and referenced scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "Vibe-Switch" with this command: npx skills add brianjhang/vibe-switch

Vibe-Switch — tmux for AI Agents

Orchestrate multiple AI coding agents in parallel with one command. Each agent runs in its own isolated Git worktree and branch. When one agent finishes, hand off the context seamlessly to another.

Install

npm install -g vibe-switch

Quick Start

# Start agents in parallel
vibe run "Implement JWT auth middleware" --agent gemini
vibe run "Build responsive login page" --agent codex

# Monitor all agents
vibe status
vibe watch

# Hand off context between agents
vibe handoff vibe/gemini-c3d5 --to codex -m "API is ready at /api/auth"

# Cleanup
vibe stop --all
vibe clean

Command Reference

CommandDescription
vibe run "<task>" --agent <agent>Start an agent on an isolated Git branch + worktree
vibe statusDisplay all tasks, status, and branches
vibe watchReal-time multi-agent output streaming
vibe log <branch> [-f]View or follow logs for a specific task
vibe stop [branch|--all]Stop one or all agents
vibe handoff <branch> --to <agent>Transfer context to another agent
vibe summary <branch>View task summary, logs, and diff stat
vibe cleanClean up completed tasks, logs, and worktrees
vibe agentsList installed agent adapters
vibe doctorDiagnose environment and agent availability
vibe initCreate project config .vibeswitch.json
vibe config [key] [value]View or set project config

Supported Agents

AgentCommandSandboxBest For
Claude CodeclaudeNoArchitecture, code review, broad reasoning
Codex CLIcodexYesImplementation, refactors, test-driven changes
Gemini CLIgeminiNoExploration, cross-checking, documentation
AntigravityantigravityNoFull-stack development, complex tasks
OpenClawopenclawNoGeneral purpose AI coding

Architecture

  • Git Worktree Isolation: Each agent runs in a dedicated branch and directory — no file conflicts.
  • Adapter Pattern: Modular design for easy integration of new AI agent CLIs.
  • JSON File Storage: Task metadata persisted locally at ~/.vibe-switch/ — no database needed.

Common Workflow Patterns

Parallel Development

vibe run "Implement auth API and migration" --agent claude --branch vibe/auth-api
vibe run "Build auth UI and form validation" --agent codex --branch vibe/auth-ui
vibe run "Write integration tests for login" --agent gemini --branch vibe/auth-tests
vibe status
vibe watch

Context Handoff

# Gemini finished the API → hand off to Codex for the frontend
vibe handoff vibe/auth-api --to codex -m "API complete. Build the client-side integration."

Agent Capability Matrix

AgentLocal FilesNetwork/SSHSandbox
claudeNo
codexYes
geminiNo

Important: Codex runs in a strict sandbox — no SSH, no external APIs. Do not assign deployment or network-dependent tasks to Codex.

Key Constraints

  • Must be run from inside a Git repository.
  • Worktrees are based on the current branch HEAD — uncommitted changes are NOT visible to spawned agents. Always git add && git commit before dispatching.
  • Right-size your tasks: if it takes less than 5 minutes and touches one file, do it yourself.

Links

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Coding

Epic AI Swarm Orchestration

Production playbook for running parallel AI coding agents (Claude, Codex, Gemini) with automatic model selection via duty table, token-limit auto-fallback, h...

Registry SourceRecently Updated
1850Profile unavailable
Coding

Agent Cli Orchestrator

Orchestrates multiple AI CLI tools by auto-detecting, prioritizing, and switching between them for stable, fallback-enabled automated coding workflows.

Registry SourceRecently Updated
3870Profile unavailable
Coding

Ai Cli Orchestrator

Orchestrates multiple AI CLI tools by auto-detecting, prioritizing, and switching among them for stable, seamless automation workflows with fallback on errors.

Registry SourceRecently Updated
3440Profile unavailable
Coding

aiXplain Agent Builder

Design and deploy aiXplain agents with conservative defaults, read-only discovery first, and explicit approval gates for higher-risk actions.

Registry SourceRecently Updated
430Profile unavailable