delegation

Delegate tasks to subagents with parallel execution and follow-ups.

Updated Jun 30, 2026
One-click install
npx skills add https://github.com/not-subhu/screech --skill delegation-not-subhu
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: delegation
Source: https://github.com/not-subhu/screech/tree/main/.local/skills/delegation
Command: npx skills add https://github.com/not-subhu/screech --skill delegation-not-subhu

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

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.

Frequently Asked Questions about delegation

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I run parallel tasks with subagents for workflow automation?

To run parallel tasks with subagents for workflow automation, you dispatch multiple subagents concurrently to execute independent tasks in the background, allowing continued main agent work and efficient processing.

What is the best way to follow up on background processing tasks?

The best way to follow up on background processing tasks is to use the sendFollowup mechanism to continue an existing subagent's work or ask questions, enabling robust task management and result aggregation.

How does subagent task delegation work for independent data processing?

Subagent task delegation works by assigning independent data entries to specialized subagents, executing them in parallel, and then following up with each subagent to gather and aggregate the processed data.

Can I use parallel execution for automating workflows with multiple data entries?

Yes, you can use parallel execution to automate workflows with multiple data entries by delegating each entry to a subagent, running them concurrently in the background, and aggregating the processed results.

When should I use background processing for task delegation instead of sequential execution?

Use background processing for task delegation instead of sequential execution when you have independent, processable tasks that can run concurrently, allowing the main agent to continue work while subagents execute.