smithery.ai

delegation

Agent delegation and orchestration capabilities to split tasks and run them in parallel.

First seen Apr 5, 2026

Installation

$ npx skills add https://smithery.ai

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery.ai · top by installs.

npx skills add https://smithery.ai

Browse all from smithery.ai

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Skill metadata

Parsed from SKILL.md frontmatter.

Allowed toolslist_available_skills, delegate_task, check_task_status

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,436 B
  • docs SUMMARY.md 106 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 2 installs

SKILL.md

Delegation & Orchestration Skill

This skill allows the main agent to act as an orchestrator, dispatching sub-tasks to independent sub-agents. This is useful for parallelizing work or isolating complex sub-problems.

Tools

listavailableskills

View which skills (servers) can be assigned to sub-agents.

  • returns: A list of available skills.

delegate_task

Spawns a new autonomous sub-agent process to handle a specific task. The sub-agent runs asynchronously.

  • task_description: Clear instructions for the sub-agent.
  • skillsneeded: List of skill names the sub-agent requires (e.g., ["webfetch", "office_reader"]).
  • returns: A task_id for tracking.

checktaskstatus

Retrieves the status (RUNNING/COMPLETED) and the final output of a delegated task.

  • taskid: The ID returned by delegatetask.
  • returns: Status message and result content if finished.

Usage Pattern

  1. Analyze the user's complex request.
  2. Break down the request into sub-tasks.
  3. List skills to see what's available for sub-agents.
  4. Delegate each sub-task using delegate_task.
  5. Monitor progress using checktaskstatus.
  6. Integrate the results from sub-agents into a final answer.