What problem does it solve?
This Skill addresses the need for automating and delegating independent work through subagents, allowing for parallel execution, background processing, and follow-up on existing tasks.
Core Features & Use Cases
- Subagent Callback: Use
subagent to delegate tasks to specialized subagents.
- Parallel Execution: Dispatch multiple subagents concurrently to run tasks in parallel.
- Background Processing: Execute subagents in the background, allowing for continued main agent work.
- Follow-ups: Use
sendFollowup to continue an existing subagent's work or ask questions.
- Use Case: Imagine you have a set of data entries that need to be processed. You can delegate each entry to a subagent, execute them in parallel, and then follow up with each subagent to gather the processed data.
Quick Start
Use the delegation skill to create a subagent for processing data entries from a list and then follow up with each subagent for results.