Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
affaan-m avatar

Dmux Workflows

  • 5.1k installs
  • 238k repo stars
  • Updated August 5, 2026
  • affaan-m/everything-claude-code

dmux-workflows is an agent skill for parallel multi-agent tmux pane orchestration via dmux across Claude Code, Codex, and OpenCode.

About

The dmux-workflows skill orchestrates parallel AI agent sessions using dmux, a tmux pane manager where n creates a new pane with a prompt and m merges pane output back to the main session. Install via npm install -g dmux from github.com/standardagents/dmux. Supported harnesses include Claude Code, Codex, OpenCode, Cline, Gemini, and Qwen. Patterns cover research plus implement split panes, multi-file feature parallelism across schema API and UI tracks, test watcher plus fixer loops, cross-harness reviews mixing Claude Code and Codex, and parallel security performance coverage review pipelines. Best practices require independent tasks without cross-pane dependencies, clear file or concern boundaries, strategic merge review before integration, git worktrees when file conflicts are likely, and keeping total panes under five to six for token cost control. Git worktree integration shows feat branch worktrees for auth and billing parallel development. Activate when users say run in parallel, split this work, use dmux, or multi-agent.

  • dmux tmux UI: n creates agent pane with prompt, m merges output to main session.
  • Supports Claude Code, Codex, OpenCode, Cline, Gemini, and Qwen harnesses.
  • Patterns: research+implement, multi-file features, test/fix loops, cross-harness review.
  • Best practices: independent tasks, clear boundaries, git worktrees, max 5-6 panes.
  • Install with npm install -g dmux from standardagents/dmux repository.

Dmux Workflows by the numbers

  • 5,128 all-time installs (skills.sh)
  • +218 installs in the week ending Aug 5, 2026 (Skillselion tracking)
  • Ranked #152 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
  • Security screen: LOW risk (skills.sh audit)
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
At a glance

dmux-workflows capabilities & compatibility

Capabilities
dmux pane create and merge workflow · five documented parallel workflow patterns · git worktree isolation guidance · cross harness task assignment · token aware pane count limits
Use cases
orchestration · planning
npx skills add https://github.com/affaan-m/everything-claude-code --skill dmux-workflows

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs5.1k
repo stars238k
Security audit2 / 3 scanners passed
Last updatedAugust 5, 2026
Repositoryaffaan-m/everything-claude-code

How do I run multiple AI agent sessions in parallel without file conflicts or token waste?

Orchestrate parallel AI agent panes with dmux tmux manager across Claude Code, Codex, OpenCode, and other harnesses using merge patterns.

Who is it for?

Developers dividing complex work across parallel agent panes with tmux and optional git worktrees.

Skip if: Skip for simple single-file edits that do not benefit from parallel agent overhead.

When should I use this skill?

User says run in parallel, use dmux, split this work, or multi-agent orchestration.

What you get

Structured dmux pane workflows with merges, worktree isolation, and harness-specific task splits.

  • Merged multi-pane agent outputs
  • Parallel task completion reports

By the numbers

  • Keep total dmux panes under 5-6 per best practices
  • Supports six named agent harnesses in docs

Files

SKILL.mdMarkdownGitHub ↗

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: npm install -g dmux or 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 ../feature-auth feat/auth
git worktree add ../feature-billing feat/billing

# 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

Troubleshooting

  • Pane not responding: Check if the agent session is waiting for input. Use m to read output.
  • 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).

Related skills

Forks & variants (1)

Dmux Workflows has 1 known copy in the catalog totaling 1.4k installs. They canonicalize to this original listing.

How it compares

Use dmux-workflows for parallel tmux agent orchestration; use agent-eval when the goal is benchmarking agent quality rather than running agents concurrently.

FAQ

Who is dmux-workflows for?

Developers orchestrating parallel Claude Code, Codex, or OpenCode sessions via dmux tmux panes.

When should I use dmux-workflows?

When complex tasks split cleanly across independent files or research versus implement tracks.

Is dmux-workflows safe to install?

Review Security Audits panel; multiple panes multiply API token usage and need merge review.

AI & Agent Buildingagentsautomation

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.