Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计通过

task-orchestrator任务协调器

Agent Skill

task-orchestrator 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,521

周安装

103

GitHub Stars

公开资料未说明

下载量

816
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:task-orchestrator(任务协调器)
来源仓库:https://github.com/openlark/task-orchestrator
安装命令:
openclaw skills install task-orchestrator
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install task-orchestrator

简介

智能生成任务列表与分解复杂工作的执行协调官。

  • 支持 AI 代理匹配与进度可视化跟踪。
  • 适用于项目管理与团队协作优化场景。task-orchestrator 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 安装前需确认权限范围、维护状态及是否调用外部调度服务。
  • 建议结合原始 README 核验任务粒度与分派算法。

SKILL.md

name
task-orchestrator
description
Intelligent task management and execution coordination officer. Automatically generates task lists, intelligently decomposes complex tasks, matches AI agents, makes priority decisions, and monitors progress.

Task Orchestrator

End-to-end automated task management: from goals to execution, intelligent decomposition, agent matching, and progress monitoring.

Use Cases

  • User mentions keywords such as "task management," "task planning," "task decomposition," "multi-task parallelism," "task orchestration"
  • User needs to decompose complex objectives into executable steps
  • User needs multiple Agents to collaborate on work
  • User needs to track task progress and resource allocation
  • User needs intelligent decision-making for execution order and dependencies.

Core Capabilities

1. Task Parsing and Decomposition

Automatically decompose natural language objectives into a structured task tree:

  • Goal Decomposition: Break complex objectives into atomic tasks
  • Dependency Identification: Establish dependency relationships between tasks
  • Effort Estimation: Estimate execution time based on task complexity

2. Intelligent Agent Matching

Match the most suitable execution agent based on task characteristics:

  • Capability Matching: Select specialized agents based on task type
  • Load Balancing: Avoid agent overload
  • Cost Optimization: Balance quality and cost

3. Priority Decision-Making

Autonomously decide task execution order:

  • Urgency Assessment: Based on time constraints and impact scope
  • Value Assessment: Based on business value and user expectations
  • Dependency Priority: Ensure dependency chains execute correctly

4. Progress Monitoring

Track task execution status in real time:

  • Status Tracking: Pending, In Progress, Completed, Blocked
  • Anomaly Detection: Identify timed-out, failed, and blocked tasks
  • Automatic Retry: Intelligent retry strategy for failed tasks

Workflow

User Goal → Task Parsing → Task Decomposition → Dependency Analysis → Priority Sorting → Agent Matching → Execution → Monitoring → Summary

Step 1: Receive and Parse Goal

Understand user intent and identify core objectives:

  • Clarify task boundaries and expected outputs
  • Identify time constraints and priority hints
  • Confirm available resources and constraints

Example Dialogue:

User: "Help me complete a product launch, including documentation, testing, and promotional materials"
Orchestrator: Parse goal into 3 main tasks:
  1. Product documentation writing (parallelizable)
  2. Test case design and execution (depends on partial completion of 1)
  3. Promotional material production (parallelizable)

Step 2: Task Decomposition

Use a script to generate a structured task tree:

python3 scripts/task_decomposer.py --goal "User Goal" --output tasks.json

Output structure:

{
  "main_goal": "Product Launch",
  "tasks": [
    {
      "id": "T1",
      "title": "Write Product Documentation",
      "description": "Includes feature descriptions, user guides, and API documentation",
      "priority": "high",
      "estimated_time": "2h",
      "dependencies": [],
      "subtasks": [
        {"id": "T1.1", "title": "Feature Description Document"},
        {"id": "T1.2", "title": "User Guide"},
        {"id": "T1.3", "title": "API Interface Documentation"}
      ],
      "required_skills": ["doc-writing-skill"],
      "status": "pending"
    }
  ]
}

Step 3: Agent Matching and Resource Allocation

Select execution agents based on task characteristics. See references/agent_matching.md for details.

Step 4: Execution and Monitoring

Initiate task execution and continuously monitor:

  • Execute tasks without dependencies in parallel
  • Execute tasks with dependencies serially
  • Update task status in real time
  • Automatically adjust plans upon anomalies

Step 5: Result Integration and Feedback

After task completion:

  • Integrate execution results from each agent
  • Generate an execution report
  • Collect feedback to optimize subsequent tasks

Quick Start

Scenario 1: Complex Task Decomposition

User: "Help me prepare for next week's tech sharing session; I need a PPT, demo code, and a promotional poster"

Orchestrator: 
1. Parse Goal → Identify 3 parallel tasks
2. Decompose Tasks → Estimate total effort 8h
3. Match Agents → 
   - PPT: doc-writing-skill + ppt-parser-local
   - Demo: Code generation agent
   - Poster: image_generation
4. Suggest Execution Order → PPT outline → demo development → poster design → PPT refinement

Scenario 2: Multi-Agent Collaboration

User: "Complete a competitive analysis report; need data scraping, chart generation, and report writing"

Orchestrator:
1. Task Decomposition: Data scraping (T1) → Data analysis (T2) → Chart generation (T3) → Report writing (T4)
2. Dependency Chain: T1→T2→T3→T4
3. Agent Matching:
   - T1: web-search + deep-search-skill
   - T2: Data analysis agent
   - T3: image_generation
   - T4: doc-writing-skill
4. Execution Plan: Serial execution, estimated total duration 6h

Decision Framework

Priority Decision Matrix

DimensionWeightScoring Criteria
Urgency30%Deadline, blocking impact
Value40%Business value, user expectations
Cost20%Time cost, resource consumption
Risk10%Failure risk, dependency risk

Agent Selection Strategy

See references/agent_matching.md for details.

Resource Files

scripts/

  • task_decomposer.py - Task decomposition script, generates structured task tree
  • priority_calculator.py - Priority calculation script, supports custom weights
  • progress_monitor.py - Progress monitoring script, tracks task status in real time

references/

  • agent_matching.md - Agent matching strategies and capability matrix
  • workflow_patterns.md - Common workflow patterns and best practices
  • task_templates.md - Common task template library

assets/

  • task_plan_template.md - Task planning document template
  • execution_report_template.md - Execution report template

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

74.91%
按下载量换算611

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills