Parallel Task Executor
多任务并行执行管理器。接收多条指令并同步执行,支持优先级调度、任务依赖、结果收集和进度跟踪。适用于需要并发处理多个独立任务的场景。
New
Join 0+ developers using this skill
skill
AI & Machine Learning
advanced
多任务并行执行管理器。接收多条指令并同步执行,支持优先级调度、任务依赖、结果收集和进度跟踪。适用于需要并发处理多个独立任务的场景。
Real data. Real impact.
Emerging
Developers
Per week
Open source
Skills give you superpowers. Install in 30 seconds.
接收用户的多条指令,自动识别任务类型、优先级和依赖关系,并在并发执行池中同步处理。
当收到多条指令时,自动注册为独立任务:
{ "task_id": "task_123", "command": "下载文件", "priority": 1, "status": "pending", "created_at": "2026-02-05T22:30:00Z", "depends_on": [] }
优先级级别:
P0 - 最高优先级(紧急任务)P1 - 高优先级(重要任务)P2 - 中优先级(普通任务)P3 - 低优先级(可选任务)调度策略:
同步执行模式:
{ "mode": "parallel", "max_concurrent": 4, "tasks": [ { "task_id": 1, "command": "任务1" }, { "task_id": 2, "command": "任务2" }, { "task_id": 3, "command": "任务3" } ] }
串行执行模式:
{ "mode": "serial", "tasks": [ { "task_id": 1, "command": "任务1" }, { "task_id": 2, "command": "任务2" }, { "task_id": 3, "command": "任务3" } ] }
文件操作
浏览器操作
命令执行
数据处理
网络请求
接收指令 → 任务注册 → 优先级排序 → 执行池分配 → 并发执行 → 结果收集 → 报告生成
接收指令
任务注册
优先级排序
执行池分配
并发执行
结果收集
{ "total_tasks": 5, "completed": 2, "running": 2, "pending": 1, "progress": "40%", "eta": "预计剩余 30 秒" }
pending - 等待中running - 执行中completed - 已完成failed - 失败cancelled - 已取消{ "execution_id": "exec_456", "total_tasks": 5, "completed": 4, "failed": 1, "success_rate": "80%", "duration": "45.2秒", "tasks": [ { "task_id": 1, "command": "创建文件", "status": "completed", "result": "成功", "duration": "2.1秒" }, { "task_id": 2, "command": "下载文件", "status": "completed", "result": "成功", "duration": "18.5秒" } ] }
自动重试
错误隔离
错误通知
# 用户发送 "创建文件A,创建文件B,下载文件C"系统自动处理为 3 个并发任务
结果:
✓ 任务1: 创建文件A - 成功
✓ 任务2: 创建文件B - 成功
✓ 任务3: 下载文件C - 成功
# 用户发送 "高优先级:删除临时文件,中优先级:备份文件,低优先级:整理文档"系统按优先级排序执行
结果:
✓ 高优先级:删除临时文件 - 成功
✓ 中优先级:备份文件 - 成功
✓ 低优先级:整理文档 - 成功
# 用户发送 "先创建目录,再创建文件"系统自动识别依赖关系
结果:
✓ 任务1: 创建目录 - 成功
✓ 任务2: 创建文件 - 成功(依赖任务1完成)
可在
~/.openclaw/openclaw.json 中配置:
{ "parallel-executor": { "max_concurrent_tasks": 4, "task_timeout_seconds": 30, "max_retries": 3, "default_priority": "P1", "enable_progress_tracking": true, "enable_error_recovery": true } }
No automatic installation available. Please visit the source repository for installation instructions.
View Installation Instructions1,500+ AI skills, agents & workflows. Install in 30 seconds. Part of the Torly.ai family.
© 2026 Torly.ai. All rights reserved.