ClawExplorer logo

ClawExplorer

OpenClaw skill

ec-task-orchestrator

An OpenClaw skill that provides a framework for orchestrating multi-agent task execution. It enables a lead agent to decompose complex tasks into subtasks, delegate them to specialist agents, track progress, and synthesize final outputs from results.

Files

Review the files below to add this skill to your agents.

SKILL.md content

Unable to load SKILL.md content from source.

How this skill works

  • Provides the 'ec-task-orchestrator' capability
  • Accepts inputs: task_definition (ARN of ECS task definition, required), cluster (ECS cluster name, required), container_overrides (optional), job_queue (Batch job queue name, required), job_definition (optional)
  • Outputs job_id (ID of the submitted Batch job)
  • Uses AWS SDK boto3 to create ECS client
  • Registers a temporary Batch job definition using the provided ECS task_definition converted to containerProperties if job_definition not provided
  • Submits the Batch job to the specified job_queue using submit_job
  • Returns the jobId from the submit_job response

When to use it

  • When a high-level task requires decomposition into sequential sub-tasks executed by other skills
  • When coordinating parallel execution of independent sub-tasks with dependency resolution
  • When monitoring task progress and handling failures with automatic retries or replanning

Best practices

  • Provide a valid ECS cluster name in the cluster parameter
  • Specify the task definition family or full ARN in the taskDefinition parameter
  • Set the count parameter to control the number of tasks launched and manage costs
  • Configure subnets array for network placement when using Fargate
  • Include securityGroups array if custom security groups are needed
  • Assign a taskRoleArn with necessary IAM permissions for the tasks
  • Use launchType 'FARGATE' or 'EC2' explicitly if not using capacity providers
  • Monitor execution via CloudWatch Logs group specified in logConfiguration

Example use cases

  • Personalized Fitness Program Creation: Decomposes planning into research, assessment, workout design, nutrition, tracking using skills like web_search, fitness_calculator, meal_planner, spreadsheet_generator.
  • Academic Research Paper Writing: Breaks into topic research, literature review, outline, writing sections, citations, proofreading using skills like academic_search, summarizer, writer, citation_manager, editor.
  • Software Development Task Automation: For 'Build a simple web app': requirements gathering, architecture design, code generation, testing, deployment using skills like requirements_analyzer, architect, code_generator, tester, deployer.
  • Event Planning Assistant: For 'Plan a birthday party': budget, guest list, venue, invitations, catering, schedule using skills like budget_calculator, contact_manager, venue_search.

FAQs

More similar skills to explore

  • achurch

    An OpenClaw skill for church administration that handles member management, event scheduling, sermon retrieval, and donation processing. It provides tools to list members, add new members, schedule events, fetch sermons, and record donations.

  • agent-config

    An OpenClaw skill that enables agents to manage their configuration by loading from files, environment variables, or remote sources. It supports retrieving, setting, and validating configuration values. The skill allows for hot-reloading of configurations.

  • agent-council

    An OpenClaw skill named agent-council that enables the primary agent to summon a council of specialized sub-agents for deliberating on tasks. The council members discuss the query from unique perspectives, propose solutions, and vote to select the best response. The skill outputs the winning proposal with supporting rationale from the council.

  • agent-identity-kit

    An OpenClaw skill that equips agents with tools to craft, manage, and evolve digital identities, including generating personas, bios, avatars, and communication styles. It supports creating detailed agent personas with name, background, goals, personality traits; crafting bios for specific platforms; designing avatars; tuning voice and style; and adapting identities to new contexts.

  • agenticflow-skill

    An OpenClaw skill that provides tools for interacting with Agentic Flow. The tools enable agents to create agentic flows with defined tasks, execute existing flows, and retrieve flow status and outputs.

  • agentlens

    AgentLens is an OpenClaw skill that enables agents to inspect the internal cognition and actions of other agents. It provides visibility into reasoning traces (thoughts), tool calls and arguments, retrieved memories, and response generation. The skill supports analysis in multi-agent conversations via the "inspect" action targeting a specific agent.