delegation

Delegate tasks to specialized subagents for synchronous, asynchronous, and message-based execution.

Updated Apr 8, 2026
One-click install
npx skills add https://github.com/Buntyarora97/bcshdbchjdb --skill delegation-buntyarora97
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: delegation
Source: https://github.com/Buntyarora97/bcshdbchjdb/tree/main/.local/skills/delegation
Command: npx skills add https://github.com/Buntyarora97/bcshdbchjdb --skill delegation-buntyarora97

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve?

This Skill simplifies the process of delegating tasks to specialized subagents, allowing for efficient and autonomous execution of tasks.

Core Features & Use Cases

  • Synchronous Task Execution: Use subagent() to execute tasks synchronously, with the main program waiting for completion.
  • Asynchronous Task Execution: Launch tasks in the background using startAsyncSubagent(), without waiting for completion.
  • Message Subagents: Send asynchronous follow-up messages to subagents to continue work in the background.
  • Use Case: Automate the creation of reports by delegating the data extraction and processing tasks to subagents.

Quick Start

Use the 'delegation' skill to launch a subagent to process financial data from the latest quarter.

Frequently Asked Questions about delegation

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

FAQPage Schema
How do I delegate tasks to subagents for asynchronous processing?

You can delegate tasks to subagents for asynchronous processing by using the startAsyncSubagent() function, which launches tasks in the background without waiting for completion.

Can I execute workflow tasks synchronously with subagents?

Yes, you can execute workflow tasks synchronously with subagents by using the subagent() function, which ensures the main program waits for the delegated task to finish.

How do I send follow-up messages to background subagents?

You can send asynchronous follow-up messages to background subagents to continue work without interrupting the main workflow execution thread.

What is the best way to automate parallel task handling in workflows?

Automating parallel task handling is best achieved by delegating discrete operations, like data extraction and processing, to specialized subagents for autonomous execution.

Do I need integration skills to provide context for task delegation?

Yes, task delegation requires integration with relevant implementation skills to supply the necessary task context and execution environment for the subagents.