affaan-m/ECC/docs/zh-CN/skills/dmux-workflows/SKILL.md
dmux-workflows
Use it for engineering tasks; the detail page covers purpose, installation, and practical steps.
- Source repository stars
- 234,327
- Declared platforms
- 2
- Static risk flags
- 1
- Last source update
- 2026-07-27
- Source checked
- 2026-07-28
Decision brief
What it does—and where it fits
使用 dmux(一个用于代理套件的 tmux 窗格管理器)来编排并行的 AI 代理会话。
Not for
- Tasks that require unconfirmed production actions or broad system permissions.
- Environments where the pinned source and install steps cannot be inspected.
Compatibility matrix
Platform support, with evidence labels
| Platform | Status | Evidence | What to check |
|---|---|---|---|
| Codex | Declared | Source record | Install path and trigger |
| Claude Code | Declared | Source record | Install path and trigger |
| Cursor | Not declared | No explicit evidence | Portability before use |
| Gemini CLI | Not declared | No explicit evidence | Portability before use |
Installation
Inspect first. Install second.
The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.
npx skills add https://github.com/affaan-m/ECC --skill "docs/zh-CN/skills/dmux-workflows"Inspect the Agent Skill "dmux-workflows" from https://github.com/affaan-m/ECC/blob/4e973d3eaf92d97f8d2e2d8abb39d8bdc8711b38/docs/zh-CN/skills/dmux-workflows/SKILL.md at commit 4e973d3eaf92d97f8d2e2d8abb39d8bdc8711b38. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.
Workflow
What the source asks the agent to do
- 01
何时激活
并行运行多个代理会话时 跨 Claude Code、Codex 和其他套件协调工作时 需要分而治之并行处理的复杂任务 用户提到“并行运行”、“拆分此工作”、“使用 dmux”或“多代理”时
并行运行多个代理会话时跨 Claude Code、Codex 和其他套件协调工作时需要分而治之并行处理的复杂任务 - 02
什么是 dmux
dmux 是一个基于 tmux 的编排工具,用于管理 AI 代理窗格:
按 n 创建一个带有提示的新窗格按 m 将窗格输出合并回主会话支持:Claude Code、Codex、OpenCode、Cline、Gemini、Qwen - 03
快速开始
Review the “快速开始” section in the pinned source before continuing.
Review and apply the “快速开始” source section. - 04
Start dmux session
Review the “Start dmux session” section in the pinned source before continuing.
Review and apply the “Start dmux session” source section.
Permission review
Static risk signals and limitations
Runs scripts
The documentation asks the agent to run terminal commands or scripts.
git worktree add -b feat/auth ../feature-auth HEADRuns scripts
The documentation asks the agent to run terminal commands or scripts.
git worktree add -b feat/billing ../feature-billing HEADEvidence record
Why each signal appears
| Signal | Value | Evidence type | Meaning |
|---|---|---|---|
| Quality score | 77/100 | Computed | Documentation, specificity, maintenance, and trust rules |
| Repository stars | 234,327 | Source | Repository attention, not individual Skill quality |
| Compatibility | 2 platforms | Source | Declared in the catalog source record |
| Usage guide | automated source guide | Editorial | Generated or reviewed according to the visible evidence level |
Pinned source
Provenance and original SKILL.md
- Repository
- affaan-m/ECC
- Skill path
- docs/zh-CN/skills/dmux-workflows/SKILL.md
- Commit
- 4e973d3eaf92d97f8d2e2d8abb39d8bdc8711b38
- License
- MIT
- Collected
- 2026-07-28
- Default branch
- main
View the original SKILL.md
dmux 工作流
使用 dmux(一个用于代理套件的 tmux 窗格管理器)来编排并行的 AI 代理会话。
何时激活
- 并行运行多个代理会话时
- 跨 Claude Code、Codex 和其他套件协调工作时
- 需要分而治之并行处理的复杂任务
- 用户提到“并行运行”、“拆分此工作”、“使用 dmux”或“多代理”时
什么是 dmux
dmux 是一个基于 tmux 的编排工具,用于管理 AI 代理窗格:
- 按
n创建一个带有提示的新窗格 - 按
m将窗格输出合并回主会话 - 支持:Claude Code、Codex、OpenCode、Cline、Gemini、Qwen
安装: npm install -g dmux 或参见 github.com/standardagents/dmux
快速开始
# 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
工作流模式
模式 1:研究 + 实现
将研究和实现拆分为并行轨道:
Pane 1 (Research): "研究 Node.js 中速率限制的最佳实践。
检查当前可用的库,比较不同方法,并将研究结果写入
/tmp/rate-limit-research.md"
Pane 2 (Implement): "为我们的 Express API 实现速率限制中间件。
先从基本的令牌桶算法开始,研究完成后我们将进一步优化。"
# Pane 1 完成后,将研究结果合并到 Pane 2 的上下文中
模式 2:多文件功能
在独立文件间并行工作:
Pane 1: "创建计费功能的数据库模式和迁移"
Pane 2: "在 src/api/billing/ 中构建计费 API 端点"
Pane 3: "创建计费仪表板 UI 组件"
# 合并所有内容,然后在主面板中进行集成
模式 3:测试 + 修复循环
在一个窗格中运行测试,在另一个窗格中修复:
窗格 1(观察者):“在监视模式下运行测试套件。当测试失败时,
总结失败原因。”
窗格 2(修复者):“根据窗格 1 的错误输出修复失败的测试”
模式 4:跨套件
为不同任务使用不同的 AI 工具:
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"
模式 5:代码审查流水线
并行审查视角:
Pane 1: "审查 src/api/ 中的安全漏洞"
Pane 2: "审查 src/api/ 中的性能问题"
Pane 3: "审查 src/api/ 中的测试覆盖缺口"
# 将所有审查合并为一份报告
最佳实践
- 仅限独立任务。 不要并行化相互依赖输出的任务。
- 明确边界。 每个窗格应处理不同的文件或关注点。
- 策略性合并。 合并前审查窗格输出以避免冲突。
- 使用 git worktree。 对于容易产生文件冲突的工作,为每个窗格使用单独的工作树。
- 资源意识。 每个窗格都消耗 API 令牌 —— 将总窗格数控制在 5-6 个以下。
Git Worktree 集成
对于涉及重叠文件的任务:
# 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
互补工具
| 工具 | 功能 | 使用时机 |
|---|---|---|
| dmux | 用于代理的 tmux 窗格管理 | 并行代理会话 |
| Superset | 用于 10+ 并行代理的终端 IDE | 大规模编排 |
| Claude Code Task 工具 | 进程内子代理生成 | 会话内的程序化并行 |
| Codex 多代理 | 内置代理角色 | Codex 特定的并行工作 |
ECC 助手
ECC 现在包含一个助手,用于使用独立的 git worktree 进行外部 tmux 窗格编排:
node scripts/orchestrate-worktrees.js plan.json --execute
示例 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." }
]
}
该助手:
- 为每个工作器创建一个基于分支的 git worktree
- 可选择将主检出中的选定
seedPaths覆盖到每个工作器的工作树中 - 在
.orchestration/<session>/下写入每个工作器的task.md、handoff.md和status.md文件 - 启动一个 tmux 会话,每个工作器一个窗格
- 在每个窗格中启动相应的工作器命令
- 为主协调器保留主窗格空闲
当工作器需要访问尚未纳入 HEAD 的脏文件或未跟踪的本地文件(例如本地编排脚本、草案计划或文档)时,使用 seedPaths:
{
"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." }
]
}
故障排除
- 窗格无响应: 直接切换到该窗格或使用
tmux capture-pane -pt <session>:0.<pane-index>检查它。 - 合并冲突: 使用 git worktree 隔离每个窗格的文件更改。
- 令牌使用量高: 减少并行窗格数量。每个窗格都是一个完整的代理会话。
- 未找到 tmux: 使用
brew install tmux(macOS) 或apt install tmux(Linux) 安装。
Alternatives
Compare before choosing
affaan-m/ECC
dmux-workflows
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.
affaan-m/ECC
dmux-workflows
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.
affaan-m/ECC
dmux-workflows
Review dmux-workflows's use cases, installation, workflow, and original source instructions.
openai/skills
render-deploy
Deploy applications to Render by analyzing codebases, generating render.yaml Blueprints, and providing Dashboard deeplinks. Use when the user wants to deploy, host, publish, or set up their application on Render's cloud platform.