Token导航 LogoToken导航TokenDH.com
研究检索执行命令clawhub未标认证来源可访问clear审计提醒

task-orchestra任务乐团

Agent Skill

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

总安装

25,816

周安装

1,065

GitHub Stars

公开资料未说明

下载量

8,435
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install task-orchestra

简介

协调多个代理与任务执行的复杂工作流编排器。

  • 支持依赖管理、并行处理与成功完成保障。task-orchestra 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 适用于多角色协作与分布式任务调度场景。
  • 安装前需确认权限范围、维护状态及是否创建子会话。
  • 建议结合原始 README 核验超时与重试策略配置。

SKILL.md

name
task-orchestra
version
1.0.0
description
Coordinate multiple agents and tasks for complex workflows. Orchestrate subagents, manage dependencies, handle parallel execution, and ensure successful completion of multi-step operations.\
metadata
openclaw
emoji
🎚️
requires
bins
["curl", "jq"]
env
["BRAVE_API_KEY"]
install
kind
node
package
async
bins
["async"]

Task Orchestra

Coordinate multiple agents and tasks for complex workflows.

When to Use

  • Multi-step operations requiring coordination
  • Parallel execution of independent tasks
  • Complex workflows with dependencies
  • Orchestrating subagents for large projects

Core Capabilities

1. Task Coordination

  • Break down complex tasks into manageable steps
  • Manage dependencies between tasks
  • Coordinate parallel execution
  • Handle task sequencing and scheduling

2. Agent Orchestration

  • Spawn and manage multiple subagents
  • Route tasks to appropriate agents
  • Monitor progress and handle failures
  • Aggregate results from multiple sources

3. Workflow Management

  • Define workflow patterns and templates
  • Implement error handling and recovery
  • Manage state and progress tracking
  • Coordinate handoffs between agents

4. Dependency Resolution

  • Analyze task dependencies
  • Create execution order
  • Handle conditional execution
  • Manage resource conflicts

Orchestration Patterns

1. Sequential Execution

Task A → Task B → Task C

2. Parallel Execution

Task A, Task B, Task C → Aggregate

3. Pipeline Processing

Input → Task A → Task B → Task C → Output

4. Supervisor Pattern

Coordinator → Multiple Subagents → Results

5. Event-Driven Processing

Event → Trigger → Response → Next Event

Quick Actions

  • orchestrate [workflow] - Execute complex workflow
  • parallel [tasks] - Run tasks in parallel
  • pipeline [steps] - Chain tasks in sequence
  • supervise [agents] - Manage multiple agents
  • dependencies [tasks] - Analyze and resolve dependencies

Usage Examples

"Orchestrate a complete research project with multiple agents"
"Run these tasks in parallel and combine results"
"Create a pipeline for content creation from research to publication"
"Supervise a team of agents working on different aspects"
"Analyze dependencies and create execution order"

Workflow Templates

Research Project

1. Research Topic → Research Agent
2. Data Collection → Data Agent
3. Analysis → Analysis Agent
4. Report Generation → Writing Agent
5. Review → QA Agent

Content Creation

1. Topic Research → Research Agent
2. Outline Creation → Writing Agent
3. Draft Writing → Writing Agent
4. Editing → Editing Agent
5. Publication → Publishing Agent

Software Development

1. Requirements → Analysis Agent
2. Design → Design Agent
3. Implementation → Coding Agent
4. Testing → QA Agent
5. Deployment → Deployment Agent

Agent Management

Spawning Agents

sessions_spawn({ task: "specific task", label: "agent-name", mode: "run" })

Monitoring Progress

subagents list

Handling Failures

subagents kill [agent-id]
subagents steer [agent-id] "new instructions"

Dependency Resolution

Types of Dependencies

  • Data Dependencies: Task B needs output from Task A
  • Resource Dependencies: Tasks sharing same resources
  • Order Dependencies: Tasks must run in specific order
  • Conditional Dependencies: Task runs only if condition met

Resolution Process

1. Identify all dependencies
2. Create dependency graph
3. Find topological sort
4. Execute in dependency order
5. Handle conflicts and cycles

Error Handling

Common Failure Scenarios

  • Agent Failure: Subagent crashes or times out
  • Dependency Failure: Required task fails
  • Resource Conflict: Multiple agents need same resource
  • Network Issues: API calls fail or timeout

Recovery Strategies

  • Retry: Attempt failed task again
  • Alternative: Use different approach or agent
  • Skip: Continue without failed task
  • Rollback: Undo previous steps

State Management

Progress Tracking

  • Track completed tasks
  • Monitor current execution
  • Record task results
  • Maintain workflow state

Checkpointing

  • Save progress at key points
  • Enable restart from checkpoints
  • Maintain consistency across failures

Communication Patterns

Parent → Child

/sessions_send [agent-id] "instructions"

Child → Parent

Auto-announce results
Reply with findings
Report errors and status

Agent → Agent

Share data through files
Coordinate via shared state
Trigger other agents

Performance Optimization

Parallel Execution

  • Identify independent tasks
  • Run in parallel when possible
  • Aggregate results efficiently

Resource Management

  • Monitor agent resource usage
  • Balance load across agents
  • Avoid resource conflicts

Efficiency Metrics

  • Task completion time
  • Resource utilization
  • Error rates
  • Success rates

Safety Considerations

Agent Limits

  • Max 10 concurrent subagents
  • Max 2 levels of nesting
  • 10-minute timeout per agent
  • Automatic cleanup

Data Integrity

  • Validate task inputs/outputs
  • Maintain consistency
  • Handle partial failures
  • Ensure atomic operations

Advanced Patterns

1. Hierarchical Orchestration

Main Coordinator → Team Coordinators → Individual Agents

2. Dynamic Work Allocation

Assign tasks based on agent capabilities
Reassign if agent fails
Balance load dynamically

3. Event-Driven Workflows

Event → Trigger → Agent → Result → Next Event

4. Adaptive Planning

Plan → Execute → Monitor → Adjust → Repeat

Integration with Other Skills

Self-Evolution

  • Use for complex self-improvement tasks
  • Coordinate multiple evolution agents
  • Manage long-term capability building

Analysis Skills

  • Orchestrate research projects
  • Coordinate data analysis
  • Manage multi-step investigations

Content Creation

  • Coordinate content production pipelines
  • Manage multi-agent content creation
  • Orchestrate publication workflows

Quick Reference

Common Commands

# List running agents
subagents list

# Kill failed agent
subagents kill [id]

# Send instructions
sessions_send [agent-id] "message"

# Spawn new agent
sessions_spawn({ task: "task", label: "name", mode: "run" })

Workflow Examples

# Research project
orchestrate "research-project" with agents: research, analysis, writing

# Content pipeline
pipeline "content-creation" with steps: research, outline, draft, edit, publish

# Software development
supervise "dev-team" with agents: analysis, design, coding, testing, deployment

Best Practices

  1. Start Simple: Begin with sequential execution
  2. Add Parallelism: Identify independent tasks
  3. Handle Failures: Implement robust error handling
  4. Monitor Progress: Track execution and results
  5. Optimize Performance: Balance load and resources

Success Metrics

  • Task completion rate
  • Execution time efficiency
  • Resource utilization
  • Error recovery effectiveness
  • Overall workflow success

Remember: Good orchestration makes complex tasks manageable and reliable.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

77.96%
按下载量换算6,576

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

未展示

权限和风险

执行命令

安装流程涉及命令执行,可能通过 openclaw skills install task-orchestra 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills