Optimizes task completion by splitting work into parallel channels, managing dependencies, and validating results. Use when speed requires concurrent agents, batch tool calls, or isolated work trees.
How this skill is triggered — by the user, by Claude, or both
Slash command
/everything-claude-code:parallel-execution-optimizerThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
当速度来源于同时执行独立工作时使用此技能:仓库检查、文件读取、API 检查、浏览器检查、构建/测试通道、部署回读或多工作树实现轮次。
当速度来源于同时执行独立工作时使用此技能:仓库检查、文件读取、API 检查、浏览器检查、构建/测试通道、部署回读或多工作树实现轮次。
在行动之前将紧迫感转化为依赖图。
在大规模推送之前,编写一个紧凑的矩阵:
通道 | 可并行运行? | 写入面 | 风险 | 验证
仓库扫描 | 是 | 无 | 低 | rg/git status 输出
后端补丁 | 可能 | src/api | 中 | 单元测试
前端补丁 | 可能 | app/components | 中 | 浏览器截图
部署回读 | 构建后 | 远程服务 | 高 | 在线 URL + 日志
仅当通道的写入面不冲突时才并行运行。
在报告时使用:
并行执行结果:
- 运行通道数:5
- 完成通道数:4
- 阻塞通道:部署回读,等待 DNS 传播
- 发现的快速路径:批量仓库扫描 + 聚焦测试
- 验证:lint 通过、单元测试通过、在线冒烟测试通过
npx claudepluginhub aaione/everything-claude-code-zhSpeeds up large tasks by splitting work into parallel lanes, batching file reads and checks, isolating writes, and verifying correctness.
Dispatches independent tasks to concurrent Claude Code agents, checks for file and dependency conflicts, and integrates results. Useful when 3+ truly independent tasks exist across different subsystems.
Dispatches parallel subagents for 2+ independent tasks without file or state conflicts or dependencies. Triggers on 'run these in parallel', plans with separate domains, includes prompt templates and verification.