PluginBench
Skill
Review
Audit score 70

dmux-workflows

affaan-m/everything-claude-code

Orchestrate parallel AI agent sessions using dmux, a tmux pane manager for coordinated multi-agent workflows.

What is dmux-workflows?

dmux is a tmux-based tool that manages multiple AI agent panes running in parallel across Claude Code, Codex, OpenCode, and other harnesses. Use it when you need to divide complex tasks across independent parallel agent sessions or coordinate work across different tools and files.

  • Create and manage multiple agent panes with keyboard shortcuts (n for new, m for merge)
  • Run parallel agent sessions across different harnesses (Claude Code, Codex, OpenCode, Cline, Gemini, Qwen)
  • Isolate work using git worktrees to prevent file conflicts between parallel tasks
  • Merge pane output back into main session for integration and review
  • Monitor and coordinate independent tasks like research, implementation, testing, and code review in parallel

How to install dmux-workflows

npx skills add https://github.com/affaan-m/everything-claude-code --skill dmux-workflows
Prerequisites
  • tmux installed (brew install tmux on macOS, apt install tmux on Linux)
  • dmux installed from github.com/standardagents/dmux
  • Git (for worktree integration, optional but recommended)
Claude Code
Cursor
Windsurf
Cline

How to use dmux-workflows

  1. 1.Install dmux from github.com/standardagents/dmux and review the package
  2. 2.Start a dmux session by running dmux
  3. 3.Press 'n' to create a new pane and enter a prompt for that agent
  4. 4.Repeat step 3 for each parallel task, keeping tasks independent and file-isolated
  5. 5.Monitor pane progress and review output before merging
  6. 6.Press 'm' to merge pane results back into the main session
  7. 7.For file-conflict-prone work, use git worktrees (git worktree add) to isolate each pane's changes

Use cases

Good for
  • Split research and implementation into parallel tracks, then merge findings back into implementation context
  • Parallelize feature development across independent files (schema, API endpoints, UI components)
  • Run test suite in watch mode in one pane while fixing failures in another
  • Perform multi-perspective code reviews in parallel (security, performance, test coverage)
  • Coordinate work across different AI tools for different specialized tasks
Who it's for
  • Developers managing complex multi-file features
  • Teams coordinating parallel development workflows
  • Users working with multiple AI agent harnesses simultaneously
  • Engineers who need to divide-and-conquer large tasks across independent concerns

dmux-workflows FAQ

When should I use dmux instead of running agents sequentially?

Use dmux when tasks are independent and can run in parallel—like implementing different features, running tests while fixing code, or researching while implementing. Avoid it for dependent tasks where one pane needs output from another before starting.

How many panes can I run in parallel?

Keep total panes under 5-6 to manage API token usage and system resources. Each pane is a full agent session consuming tokens.

What do I do if panes touch the same files?

Use git worktrees to isolate changes per pane. Create separate worktrees with git worktree add, run agents in each worktree, then merge branches when done to avoid conflicts.

How do I handle panes that depend on each other's output?

Don't parallelize dependent tasks. Instead, run the prerequisite task first, merge its output, then start the dependent task in a new pane with the merged context.

What if a pane stops responding?

Switch to the pane directly in tmux or inspect it with tmux capture-pane -pt <session>:0.<pane-index> to see its state.

Full instructions (SKILL.md)

Source of truth, from affaan-m/everything-claude-code.


name: dmux-workflows description: Multi-agent orchestration using dmux (tmux pane manager for AI agents). Patterns for parallel agent workflows across Claude Code, Codex, OpenCode, and other harnesses. Use when running multiple agent sessions in parallel or coordinating multi-agent development workflows. metadata: origin: ECC

dmux Workflows

Orchestrate parallel AI agent sessions using dmux, a tmux pane manager for agent harnesses.

When to Activate

  • Running multiple agent sessions in parallel
  • Coordinating work across Claude Code, Codex, and other harnesses
  • Complex tasks that benefit from divide-and-conquer parallelism
  • User says "run in parallel", "split this work", "use dmux", or "multi-agent"

What is dmux

dmux is a tmux-based orchestration tool that manages AI agent panes:

  • Press n to create a new pane with a prompt
  • Press m to merge pane output back to the main session
  • Supports: Claude Code, Codex, OpenCode, Cline, Gemini, Qwen

Install: Install dmux from its repository after reviewing the package. See github.com/standardagents/dmux

Quick Start

# Start dmux session
dmux

# Create agent panes (press 'n' in dmux, then type prompt)
# Pane 1: "Implement the auth middleware in src/auth/"
# Pane 2: "Write tests for the user service"
# Pane 3: "Update API documentation"

# Each pane runs its own agent session
# Press 'm' to merge results back

Workflow Patterns

Pattern 1: Research + Implement

Split research and implementation into parallel tracks:

Pane 1 (Research): "Research best practices for rate limiting in Node.js.
  Check current libraries, compare approaches, and write findings to
  /tmp/rate-limit-research.md"

Pane 2 (Implement): "Implement rate limiting middleware for our Express API.
  Start with a basic token bucket, we'll refine after research completes."

# After Pane 1 completes, merge findings into Pane 2's context

Pattern 2: Multi-File Feature

Parallelize work across independent files:

Pane 1: "Create the database schema and migrations for the billing feature"
Pane 2: "Build the billing API endpoints in src/api/billing/"
Pane 3: "Create the billing dashboard UI components"

# Merge all, then do integration in main pane

Pattern 3: Test + Fix Loop

Run tests in one pane, fix in another:

Pane 1 (Watcher): "Run the test suite in watch mode. When tests fail,
  summarize the failures."

Pane 2 (Fixer): "Fix failing tests based on the error output from pane 1"

Pattern 4: Cross-Harness

Use different AI tools for different tasks:

Pane 1 (Claude Code): "Review the security of the auth module"
Pane 2 (Codex): "Refactor the utility functions for performance"
Pane 3 (Claude Code): "Write E2E tests for the checkout flow"

Pattern 5: Code Review Pipeline

Parallel review perspectives:

Pane 1: "Review src/api/ for security vulnerabilities"
Pane 2: "Review src/api/ for performance issues"
Pane 3: "Review src/api/ for test coverage gaps"

# Merge all reviews into a single report

Best Practices

  1. Independent tasks only. Don't parallelize tasks that depend on each other's output.
  2. Clear boundaries. Each pane should work on distinct files or concerns.
  3. Merge strategically. Review pane output before merging to avoid conflicts.
  4. Use git worktrees. For file-conflict-prone work, use separate worktrees per pane.
  5. Resource awareness. Each pane uses API tokens — keep total panes under 5-6.

Git Worktree Integration

For tasks that touch overlapping files:

# Create worktrees for isolation
git worktree add -b feat/auth ../feature-auth HEAD
git worktree add -b feat/billing ../feature-billing HEAD

# Run agents in separate worktrees
# Pane 1: cd ../feature-auth && claude
# Pane 2: cd ../feature-billing && claude

# Merge branches when done
git merge feat/auth
git merge feat/billing

Complementary Tools

ToolWhat It DoesWhen to Use
dmuxtmux pane management for agentsParallel agent sessions
SupersetTerminal IDE for 10+ parallel agentsLarge-scale orchestration
Claude Code Task toolIn-process subagent spawningProgrammatic parallelism within a session
Codex multi-agentBuilt-in agent rolesCodex-specific parallel work

ECC Helper

ECC now includes a helper for external tmux-pane orchestration with separate git worktrees:

node scripts/orchestrate-worktrees.js plan.json --execute

Example plan.json:

{
  "sessionName": "skill-audit",
  "baseRef": "HEAD",
  "launcherCommand": "codex exec --cwd {worktree_path} --task-file {task_file}",
  "workers": [
    { "name": "docs-a", "task": "Fix skills 1-4 and write handoff notes." },
    { "name": "docs-b", "task": "Fix skills 5-8 and write handoff notes." }
  ]
}

The helper:

  • Creates one branch-backed git worktree per worker
  • Optionally overlays selected seedPaths from the main checkout into each worker worktree
  • Writes per-worker task.md, handoff.md, and status.md files under .orchestration/<session>/
  • Starts a tmux session with one pane per worker
  • Launches each worker command in its own pane
  • Leaves the main pane free for the orchestrator

Use seedPaths when workers need access to dirty or untracked local files that are not yet part of HEAD, such as local orchestration scripts, draft plans, or docs:

{
  "sessionName": "workflow-e2e",
  "seedPaths": [
    "scripts/orchestrate-worktrees.js",
    "scripts/lib/tmux-worktree-orchestrator.js",
    ".claude/plan/workflow-e2e-test.json"
  ],
  "launcherCommand": "bash {repo_root}/scripts/orchestrate-codex-worker.sh {task_file} {handoff_file} {status_file}",
  "workers": [
    { "name": "seed-check", "task": "Verify seeded files are present before starting work." }
  ]
}

Troubleshooting

  • Pane not responding: Switch to the pane directly or inspect it with tmux capture-pane -pt <session>:0.<pane-index>.
  • Merge conflicts: Use git worktrees to isolate file changes per pane.
  • High token usage: Reduce number of parallel panes. Each pane is a full agent session.
  • tmux not found: Install with brew install tmux (macOS) or apt install tmux (Linux).