Agent Skill
2/7/2026

open-orchestrator

Git worktree + AI coding tool orchestration for parallel development with unified workspace mode. Use when: (1) Viewing multiple worktrees in a single tmux session (like Agent Teams), (2) Creating isolated development environments, (3) Using workflow templates for common patterns, (4) Managing multiple AI coding sessions, (5) Delegating tasks to parallel worktrees, (6) Orchestrating Claude Code/OpenCode/Droid across branches, (7) Monitoring worktree health and detecting issues, (8) Optimizing AI tool costs and comparing pricing, (9) Cleaning up stale worktrees, (10) Syncing worktrees with upstream, (11) Monitoring with live dashboard, (12) Tracking token usage and costs, (13) Linking worktrees to GitHub PRs, (14) Managing status change hooks/notifications, (15) Copying/resuming Claude sessions, (16) Updating to latest version or checking for updates. Triggers: worktree, parallel development, multi-branch, AI orchestration, workspace mode, unified view, owt commands, templates, health monitoring, cost optimiza

G
gitpcl
0GitHub Stars
1Views
npx skills add gitpcl/openorchestrator

SKILL.md

Nameopen-orchestrator
DescriptionGit worktree + AI coding tool orchestration for parallel development with unified workspace mode. Use when: (1) Viewing multiple worktrees in a single tmux session (like Agent Teams), (2) Creating isolated development environments, (3) Using workflow templates for common patterns, (4) Managing multiple AI coding sessions, (5) Delegating tasks to parallel worktrees, (6) Orchestrating Claude Code/OpenCode/Droid across branches, (7) Monitoring worktree health and detecting issues, (8) Optimizing AI tool costs and comparing pricing, (9) Cleaning up stale worktrees, (10) Syncing worktrees with upstream, (11) Monitoring with live dashboard, (12) Tracking token usage and costs, (13) Linking worktrees to GitHub PRs, (14) Managing status change hooks/notifications, (15) Copying/resuming Claude sessions, (16) Updating to latest version or checking for updates. Triggers: worktree, parallel development, multi-branch, AI orchestration, workspace mode, unified view, owt commands, templates, health monitoring, cost optimiza

name: open-orchestrator description: "Git worktree + AI coding tool orchestration for parallel development with unified workspace mode. Use when: (1) Viewing multiple worktrees in a single tmux session (like Agent Teams), (2) Creating isolated development environments, (3) Using workflow templates for common patterns, (4) Managing multiple AI coding sessions, (5) Delegating tasks to parallel worktrees, (6) Orchestrating Claude Code/OpenCode/Droid across branches, (7) Monitoring worktree health and detecting issues, (8) Optimizing AI tool costs and comparing pricing, (9) Cleaning up stale worktrees, (10) Syncing worktrees with upstream, (11) Monitoring with live dashboard, (12) Tracking token usage and costs, (13) Linking worktrees to GitHub PRs, (14) Managing status change hooks/notifications, (15) Copying/resuming Claude sessions, (16) Updating to latest version or checking for updates. Triggers: worktree, parallel development, multi-branch, AI orchestration, workspace mode, unified view, owt commands, templates, health monitoring, cost optimization, dashboard, token tracking, PR integration, hooks, session management, update, version."

Open Orchestrator - Git Worktree + AI Orchestration

Open Orchestrator (owt) enables developers to manage parallel development workflows with isolated git worktrees in a unified workspace mode (similar to Claude Code Agent Teams). See multiple worktrees as panes in a single tmux session, or use separate sessions with the --separate-session flag.

Quick Reference

CommandDescription
owt create <branch>Create worktree + add pane to workspace (default)
owt create <branch> --separate-sessionCreate separate tmux session (opt-out)
owt create <branch> --plan-modeCreate with Claude in plan mode
owt create <branch> --template <name>Create with workflow template
owt create <branch> --auto-optimizeAuto-select cost-effective AI tool
owt workspace listList all unified workspaces
owt workspace show <name>Show workspace details and panes
owt workspace attach <name>Attach to workspace tmux session
owt workspace destroy <name>Destroy workspace (keeps worktrees)
owt template listList available workflow templates
owt template show <name>Show template details
owt list [--all]List worktrees with status
owt switch <name>Switch to worktree (use --tmux for session)
owt delete <name>Delete worktree and cleanup
owt send <name> "task"Send command to AI in another worktree
owt status [name]Track AI activity across worktrees
owt health [name]Check worktree health and detect issues
owt cost [name]Compare AI tool costs and show savings
owt cleanup [--dry-run]Remove stale worktrees
owt sync [--all]Sync worktrees with upstream
owt dashboardLive TUI monitoring of all worktrees
owt tokens showView token usage and costs
owt pr link <name> --pr <num>Link worktree to GitHub PR
owt pr statusShow PR status for all worktrees
owt hooks listList status change hooks
owt copy-session <src> <dest>Copy Claude session between worktrees
owt resume <name>Resume Claude session in worktree
owt process start <name>Start AI tool without tmux
owt process listList running AI processes
owt completion installInstall shell auto-completion
owt version [--full]Show version and installation info
owt update [--check]Update to latest version

πŸ†• Unified Workspace Mode (Default)

NEW: Open Orchestrator now uses workspace mode by default, inspired by Claude Code Agent Teams. Instead of separate tmux sessions, all worktrees are visible as panes in a single session.

Default Behavior

# Create first worktree (auto-creates workspace)
owt create feature/api
# βœ… Created workspace: owt-myproject
# βœ… Added pane for feature/api

# Create second worktree (adds pane to workspace)
owt create bugfix/login
# βœ… Added pane to workspace!
# Total: 3 / 4 panes

# All visible in one tmux session:
β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”¬β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
β”‚          β”‚   feature/api       β”‚
β”‚   main   β”œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€
β”‚  (1/3)   β”‚   bugfix/login      β”‚
β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜

# Navigate with: Ctrl+b β†’ arrow keys

Workspace Layout: main-focus

  • Left 1/3: Main repository (orchestration center, always visible)
  • Right 2/3: Up to 3 worktree panes stacked horizontally
  • Max panes: 4 total (1 main + 3 worktrees)

Opt-Out: Separate Sessions

Use --separate-session for old behavior (standalone tmux session):

owt create feature/standalone --separate-session
# βœ… tmux session created: owt-feature-standalone
# (Not added to workspace)

Workspace Commands

# List workspaces
owt workspace list

# Show workspace details
owt workspace show owt-myproject

# Attach to workspace
owt workspace attach owt-myproject

# Destroy workspace (keeps worktrees)
owt workspace destroy owt-myproject

Core Workflow

1. Create a Worktree (Workspace Mode)

# Create worktree (adds pane to workspace by default)
owt create feature/new-auth
# βœ… Created workspace or added pane to existing workspace

# Create with Claude in plan mode (safe exploration)
owt create feature/new-auth --plan-mode

# Create separate session (opt-out of workspace mode)
owt create feature/new-auth --separate-session

# Create with workflow template (pre-configured settings)
owt create feature/new-auth --template feature
owt create bugfix/login --template bugfix
owt create research/options --template research

# Create with cost optimization (auto-select cheap AI tool)
owt create feature/simple-fix --template bugfix --auto-optimize

# Create with specific AI tool
owt create feature/api-refactor --tool opencode

# Create with specific tmux layout
owt create bugfix/login --layout three-pane

# Create with CLAUDE.md synced from main repo
owt create feature/new-auth --sync-claude-md

This will:

  • Create git worktree in configured base directory
  • Create/checkout the branch
  • Auto-detect project type (Python, Node, Rust, Go, PHP)
  • Install dependencies using detected package manager
  • Copy and adjust .env files
  • Copy CLAUDE.md from main repo (if --sync-claude-md or config enabled)
  • Create tmux session with AI tool ready

2. Delegate Tasks to Parallel Sessions

# Send a task to the AI in another worktree
owt send feature/new-auth "Implement JWT authentication middleware"

# Send to multiple worktrees
owt send feature/api "Add rate limiting to all endpoints"
owt send feature/tests "Write integration tests for user registration"

3. Monitor AI Activity

# Check status of all worktrees
owt status

# Check specific worktree
owt status feature/new-auth

# Output as JSON for scripting
owt status --json

# Example output:
# β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”¬β”€β”€β”€β”€β”€β”€β”€β”€β”€β”¬β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
# β”‚ Worktree     β”‚ Status  β”‚ Current Task               β”‚
# β”œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€
# β”‚ feature/auth β”‚ WORKING β”‚ Implementing JWT middlewareβ”‚
# β”‚ feature/api  β”‚ IDLE    β”‚ -                          β”‚
# β”‚ bugfix/login β”‚ BLOCKED β”‚ Waiting for clarification  β”‚
# β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜

4. Workflow Templates

Use pre-configured templates for common workflows:

# List all available templates
owt template list

# Filter by tags
owt template list --tags security
owt template list --tags development

# Show template details
owt template show bugfix
owt template show feature

# Create worktree with template
owt create bugfix/fix-123 --template bugfix
# βœ“ Uses main as base branch
# βœ“ Uses three-pane layout
# βœ“ Runs: git log --oneline -10, git diff main
# βœ“ Sends AI: "Focus on root cause, tests first, minimal changes"

owt create feature/auth --template feature
# βœ“ Uses develop as base branch
# βœ“ Starts in plan mode
# βœ“ Uses quad layout
# βœ“ Sends AI: "Plan first, TDD workflow, document as you go"

Built-in Templates:

  • bugfix - Quick bugfixes with minimal changes
  • feature - Full TDD feature development
  • research - Safe read-only exploration
  • security-audit - Security review workflow
  • refactor - Code refactoring with tests
  • hotfix - Emergency production fixes
  • experiment - Isolated prototyping
  • docs - Documentation updates

5. Health Monitoring

Check worktree health and detect issues automatically:

# Check current worktree health
owt health

# Check specific worktree
owt health feature/api

# Check all worktrees
owt health --all

# Custom thresholds
owt health --all --stuck-threshold 60 --cost-threshold 5.0

# JSON output for automation
owt health --all --json

Detected Issues:

  • Stuck tasks - Same task for too long (default: 30 min)
  • High token usage - Possible infinite loops (> 100K tokens)
  • High costs - Expensive sessions (> $10 USD)
  • Repeated errors - Multiple failed commands
  • Stale worktrees - No activity for days (default: 7 days)
  • Idle too long - No productive work (> 24 hours)
  • Blocked state - AI is blocked and needs guidance

Example Output:

βœ— feature/api-refactor

Critical Issues:
  βœ— Very high token usage detected: 120,000 tokens
    β†’ Check for infinite loops or consider switching to a cheaper AI tool

Warnings:
  ⚠ High cost session: $15.50
    β†’ Consider switching to a cheaper AI tool (claude-haiku, gpt-4o-mini)

6. Cost Optimization

Compare AI tool costs and find savings:

# Show cost comparison for current worktree
owt cost

# Show cost for specific worktree
owt cost feature/api

# JSON output
owt cost --json

# Create with automatic cost optimization
owt create feature/simple --template bugfix --auto-optimize

Example Output:

Cost Analysis: feature/api

Current AI tool: claude-opus
Total tokens: 45,320
Current cost: $4.0740

Cost by AI Tool:
  opencode             $0.0000
  claude-haiku         $0.0680
  gpt-4o-mini          $0.0611
  claude-sonnet        $0.8154
  gpt-4o               $1.3580
β†’ claude-opus          $4.0740

πŸ’° Potential Savings:
  Cheapest: claude-haiku ($0.0680)
  Savings: $4.0060 (98.3%)

  Tip: Use --auto-optimize when creating new worktrees to save costs

7. Switch Between Worktrees

# Switch to worktree directory
owt switch feature/new-auth

# Attach to tmux session directly
owt switch feature/new-auth --tmux

5. Cleanup and Maintenance

# Preview stale worktrees
owt cleanup --dry-run

# Remove worktrees older than 14 days (default)
owt cleanup

# Output cleanup report as JSON
owt cleanup --json

# Sync all worktrees with upstream
owt sync --all

# Sync specific worktree
owt sync feature/new-auth

# Output sync report as JSON
owt sync --all --json

Live Dashboard

Monitor all worktrees in real-time with an interactive TUI dashboard.

# Launch live dashboard (updates every 2 seconds)
owt dashboard

# Custom refresh rate (1 second)
owt dashboard -r 1
owt dashboard --refresh 1

# Compact mode (minimal UI without summary panel)
owt dashboard --compact

# Hide token usage columns
owt dashboard --no-tokens

# Combine options
owt dashboard -r 1 --compact --no-tokens

The dashboard shows:

  • Worktree name and branch
  • AI status (WORKING, IDLE, BLOCKED, etc.)
  • Current task description
  • Token usage and estimated costs
  • PR link status (if linked)

Token Tracking

Track token usage and costs per worktree.

# View token usage for all worktrees
owt tokens show

# View specific worktree
owt tokens show feature/new-auth

# Manually update token counts (if auto-tracking disabled)
owt tokens update feature/new-auth --input 1000 --output 500

# Reset token counts for a worktree
owt tokens reset feature/new-auth

# Reset all worktrees
owt tokens reset --all

# Output as JSON
owt tokens show --json

GitHub PR Integration

Link worktrees to GitHub pull requests for integrated workflow.

# Link worktree to PR
owt pr link feature/new-auth --pr 123

# Show PR status for all linked worktrees
owt pr status

# Show status for specific worktree
owt pr status feature/new-auth

# Refresh PR info from GitHub
owt pr refresh feature/new-auth

# Refresh all linked worktrees
owt pr refresh --all

# Clean up worktrees whose PRs have been merged
owt pr cleanup

# Preview what would be cleaned
owt pr cleanup --dry-run

Status Change Hooks

Configure notifications and webhooks when AI status changes.

# List configured hooks
owt hooks list

# Add a new hook (interactive)
owt hooks add

# Add hook with parameters
owt hooks add --event status_change --action notify --target slack

# Test hook execution
owt hooks test <hook-id>

# View hook execution history
owt hooks history

# Remove a hook
owt hooks remove <hook-id>

Hook configuration is stored in ~/.open-orchestrator/hooks.json.

Hook Events

  • status_change - When AI status changes (IDLE β†’ WORKING, etc.)
  • task_complete - When a task is marked complete
  • blocked - When AI becomes blocked
  • error - When an error occurs

Hook Actions

  • notify - Send desktop notification
  • webhook - POST to URL
  • command - Run shell command

Session Management

Copy and resume Claude sessions across worktrees.

# Copy session from one worktree to another
owt copy-session feature/auth feature/auth-v2

# Get command to resume session in a worktree
owt resume feature/new-auth

# View session info
owt session feature/new-auth

# Example output shows session ID and resume command:
# Session ID: abc123
# Resume with: claude --resume abc123

No-tmux Mode (Process Management)

Run AI tools as background processes without tmux.

# Start AI tool as background process
owt process start feature/new-auth

# Start with specific AI tool
owt process start feature/new-auth --tool opencode

# List running AI processes
owt process list

# View process logs
owt process logs feature/new-auth

# Follow logs in real-time
owt process logs feature/new-auth --follow

# Stop a process
owt process stop feature/new-auth

# Stop all processes
owt process stop --all

Shell Completion

Enable auto-completion for bash, zsh, or fish.

# Show installation instructions for your shell
owt completion install

# Generate bash completion script
owt completion bash

# Generate zsh completion script
owt completion zsh

# Generate fish completion script
owt completion fish

# Install to default location (auto-detected shell)
owt completion install --auto

Configuration

Config File Locations (Priority Order)

  1. --config flag
  2. .worktreerc in current directory
  3. .worktreerc.toml
  4. ~/.config/open-orchestrator/config.toml
  5. ~/.worktreerc

Sample Configuration

[worktree]
base_directory = "../"                    # Relative to repo root
naming_pattern = "{project}-{branch}"     # Worktree naming
auto_cleanup_days = 14                    # Stale threshold
sync_claude_md = true                     # Copy CLAUDE.md to new worktrees

[tmux]
default_layout = "main-vertical"          # main-vertical, three-pane, quad
auto_start_ai = true
ai_tool = "claude"                        # claude, opencode, droid
pane_count = 2

[environment]
auto_install_deps = true
copy_env_file = true
adjust_env_paths = true

[dashboard]
refresh_rate = 2                          # Seconds between updates
show_tokens = true                        # Show token usage columns
compact = false                           # Use compact UI mode

[tokens]
auto_track = true                         # Automatically track token usage
cost_per_1k_input = 0.003                 # Cost per 1K input tokens
cost_per_1k_output = 0.015                # Cost per 1K output tokens

[droid]
default_auto_level = "medium"             # low, medium, high

[opencode]
config_path = "~/.config/opencode.json"

Hook Configuration

Hooks are stored in ~/.open-orchestrator/hooks.json:

{
  "hooks": [
    {
      "id": "slack-notify",
      "event": "status_change",
      "action": "webhook",
      "target": "https://hooks.slack.com/...",
      "filter": {
        "status": ["BLOCKED", "ERROR"]
      }
    }
  ]
}

tmux Layouts

LayoutDescription
main-verticalLarge left pane (editor), smaller right panes
three-paneMain top pane, two bottom panes
quadFour equal panes
even-horizontalEqual horizontal split
even-verticalEqual vertical split

Project Detection

Automatically detects project type and package manager:

TypeDetectionPackage Manager Priority
Pythonpyproject.toml, uv.lock, requirements.txtuv > poetry > pipenv > pip
Node.jspackage.json, bun.lockb, pnpm-lock.yamlbun > pnpm > yarn > npm
RustCargo.tomlcargo
Gogo.modgo
PHPcomposer.jsoncomposer

AI Tool Support

Claude Code (Default)

owt create feature/x --tool claude

# With plan mode for safe exploration
owt create feature/x --tool claude --plan-mode

OpenCode (Go-based)

owt create feature/x --tool opencode

Droid (Factory AI with Autonomy Levels)

# Default autonomy (medium)
owt create feature/x --tool droid

# High autonomy
owt create feature/x --tool droid --auto-level high

Common Patterns

Pattern 1: Unified Workspace Development (Default)

# Create worktrees - all visible in one tmux session
owt create feature/api
owt create bugfix/auth
owt create research/perf

# Your workspace now looks like:
β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”¬β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
β”‚          β”‚   feature/api       β”‚
β”‚          β”‚   (working...)      β”‚
β”‚          β”œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€
β”‚   main   β”‚   bugfix/auth       β”‚
β”‚  (ready) β”‚   (testing...)      β”‚
β”‚          β”œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€
β”‚          β”‚   research/perf     β”‚
β”‚          β”‚   (analyzing...)    β”‚
β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜

# Navigate between panes: Ctrl+b β†’ arrow keys
# All AI agents visible and working in parallel

# List workspaces
owt workspace list

# Attach to workspace
owt workspace attach owt-myproject

Pattern 2: Template-Based Development

# Use templates for consistent workflows
owt template list

# Create bugfix with pre-configured settings
owt create bugfix/memory-leak --template bugfix
# Auto-runs: git log, git diff main
# AI gets: "Focus on root cause, tests first, minimal changes"

# Create feature with TDD workflow
owt create feature/payments --template feature
# Starts in plan mode
# AI gets: "Plan first, implement with tests, document"

# Create with cost optimization
owt create feature/simple --template bugfix --auto-optimize
# Auto-selects claude-haiku instead of opus (85% cheaper)

Pattern 3: Health-Monitored Development

# Create multiple worktrees
owt create feature/api --template feature
owt create feature/frontend --template feature
owt create bugfix/critical --template hotfix

# Monitor health across all worktrees
owt health --all

# Check specific worktree if issues detected
owt health feature/api

# Use dashboard for real-time monitoring
owt dashboard

Pattern 4: Cost-Aware Development

# Check current costs
owt cost feature/api

# Create new worktrees with cost optimization
owt create feature/docs --template docs --auto-optimize
# Uses claude-haiku for simple documentation tasks

owt create feature/complex --template feature
# Uses claude-opus for complex features (quality over cost)

# Review savings across all worktrees
owt tokens show

Pattern 5: Parallel Feature Development

# Main worktree: Core feature
owt create feature/payments

# Delegate related work
owt send feature/payments "Build Stripe integration service"
owt create feature/payments-tests
owt send feature/payments-tests "Write tests for payment service"

Pattern 6: Bug Investigation + Fix

# Create investigation worktree
owt create bugfix/memory-leak

# Send investigation task
owt send bugfix/memory-leak "Profile memory usage and identify leaks in user service"

# Check status periodically
owt status bugfix/memory-leak

Pattern 7: Refactoring Across Modules

owt create refactor/api-layer
owt create refactor/data-layer
owt create refactor/tests

owt send refactor/api-layer "Migrate REST endpoints to use new DTO pattern"
owt send refactor/data-layer "Implement repository pattern for database access"
owt send refactor/tests "Update all integration tests for new patterns"

Pattern 8: PR-Centric Development

# Create worktree and link to PR
owt create feature/payments
owt pr link feature/payments --pr 456

# Delegate work
owt send feature/payments "Implement payment processing"

# Monitor with PR status visible
owt status

# After PR merged, cleanup
owt pr cleanup

Pattern 9: Monitored Parallel Development

# Terminal 1: Launch dashboard for real-time monitoring
owt dashboard

# Terminal 2+: Create and delegate work
owt create feature/auth
owt create feature/api
owt send feature/auth "Build OAuth flow"
owt send feature/api "Add REST endpoints"

# Dashboard auto-updates showing all activity

Pattern 10: No-tmux Workflow

# Create worktree without tmux session
owt create feature/simple --no-tmux

# Start AI as background process
owt process start feature/simple

# Check progress via logs
owt process logs feature/simple

# When done, stop the process
owt process stop feature/simple

Pattern 11: Session Continuity

# Work on feature, then need to restart
owt create feature/complex-refactor
owt send feature/complex-refactor "Start refactoring auth module"

# Later, resume the exact session
owt resume feature/complex-refactor
# Outputs: claude --resume abc123

# Or copy session to new worktree
owt copy-session feature/complex-refactor feature/complex-refactor-v2

tmux Commands

Direct tmux management when needed:

# List all owt sessions
owt tmux list

# Attach to session
owt tmux attach feature-new-auth

# Kill specific session
owt tmux kill feature-new-auth

# Create session manually
owt tmux create feature-new-auth --layout quad

Status Tracking

Status is persisted in ~/.open-orchestrator/ai_status.json:

# View detailed status
owt status --verbose

# Status values:
# - IDLE: AI ready for tasks
# - WORKING: AI actively processing
# - BLOCKED: Waiting for input/clarification
# - WAITING: Paused, awaiting external dependency
# - COMPLETED: Task finished
# - ERROR: Something went wrong

JSON Output

Most commands support --json for machine-readable output:

owt status --json
owt list --json
owt cleanup --json
owt sync --all --json
owt tokens show --json
owt pr status --json

Troubleshooting

Worktree Creation Fails

# Check git worktree state
git worktree list

# Prune stale entries
git worktree prune

# Retry creation
owt create feature/x

AI Tool Not Starting

# Verify tool installation
which claude
which opencode
which droid

# Check tmux session
owt tmux list
tmux attach -t owt-feature-x

Dependencies Not Installing

# Check project detection
owt create feature/x --verbose

# Manual install in worktree
cd $(owt switch feature/x --path-only)
uv sync  # or npm install, etc.

Dashboard Not Showing Data

# Check status file exists
cat ~/.open-orchestrator/ai_status.json

# Verify worktrees exist
owt list --all

# Try verbose mode
owt dashboard --verbose

Integration with Claude Code

Use the slash commands in Claude Code sessions:

  • /worktree - Main orchestration command
  • /wt-create - Quick worktree creation
  • /wt-list - List all worktrees
  • /wt-status - Check AI activity
  • /wt-cleanup - Clean stale worktrees

References

Skills Info
Original Name:open-orchestratorAuthor:gitpcl