delegation
Installation
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
list_available_skills
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.skills_needed: List of skill names the sub-agent requires (e.g.,["web_fetch", "office_reader"]).- returns: A
task_idfor tracking.