dmux-workflows

Orchestrates parallel AI agent sessions across tmux panes using dmux.

Updated May 7, 2026
One-click install
npx skills add https://github.com/mirzadham/trainingroombookingsystem2 --skill dmux-workflows-mirzadham
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: dmux-workflows
Source: https://github.com/mirzadham/trainingroombookingsystem2/tree/main/.agent/.agents/skills/dmux-workflows
Command: npx skills add https://github.com/mirzadham/trainingroombookingsystem2 --skill dmux-workflows-mirzadham

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires dmux, tmux.

What problem does it solve? Coordinating multiple AI coding agents on large tasks is slow and error-prone when done sequentially; this Skill provides proven patterns for splitting work across parallel agent sessions and merging results safely. ## Core Features & Use Cases - Parallel Workflow Patterns: Five ready-made patterns including research-plus-implement, multi-file features, test-and-fix loops, cross-harness execution, and parallel code review. - Multi-Harness Support: Coordinates Claude Code, Codex, OpenCode, Cline, Gemini, and Qwen sessions in separate tmux panes. - Git Worktree Isolation: Guidance for running agents in separate worktrees to avoid file conflicts when panes touch overlapping code. - Use Case: Split a billing feature into three panes—one for database migrations, one for API endpoints, one for UI components—then merge all outputs and integrate in the main session. ## Quick Start Ask the agent to use dmux to split a large task into parallel panes, for example by saying "use dmux to run the schema work, API endpoints, and UI components in parallel agent sessions."

Frequently Asked Questions about dmux-workflows

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I run multiple AI coding agents in parallel?▼

Install dmux with npm install -g dmux, start a session, and press n to create panes with individual prompts. Each pane runs its own agent session, and pressing m merges output back to the main session.

What is dmux and which AI agents does it support?▼

dmux is a tmux-based orchestration tool that manages AI agent panes. It supports Claude Code, Codex, OpenCode, Cline, Gemini, and Qwen, letting you mix harnesses across panes.

How do I avoid file conflicts with parallel agents?▼

Use git worktrees to give each pane an isolated working directory, then merge branches when done. Also assign each pane distinct files or concerns and review output before merging.

How many parallel agent panes should I run?▼

Keep total panes under five or six because each pane is a full agent session consuming API tokens. Only parallelize independent tasks that do not depend on each other's output.

Why is my dmux pane not responding?▼

The agent session is likely waiting for input; press m to read its output. If tmux is missing, install it with brew install tmux on macOS or apt install tmux on Linux.