delegate

Delegate independent tasks to subagents for parallel execution.

5|Updated Apr 9, 2026
One-click install
npx skills add https://github.com/KodingDev/meridian --skill delegate-kodingdev
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: delegate
Source: https://github.com/KodingDev/meridian/tree/main/skills/delegate
Command: npx skills add https://github.com/KodingDev/meridian --skill delegate-kodingdev

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Isolate and delegate workloads to subagents to prevent context leakage and enable parallel execution for independent tasks.

Core Features & Use Cases

  • Delegates 2+ independent tasks to subagents to protect orchestrator context.
  • Enables parallel execution and reduces cognitive load by isolating heavy work.
  • Use Case: You need to run two unrelated analyses at the same time without the orchestrator's state bleeding into each.

Quick Start

Dispatch two independent tasks as subagents to run in parallel while preserving orchestrator context.

Frequently Asked Questions about delegate

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

FAQPage Schema
How do I prevent context leakage when running multiple independent tasks in an orchestrator?

To prevent context leakage, you can delegate independent tasks to isolated subagents. This workflow protects the orchestrator's context by offloading heavy implementations and preventing state bleeding between unrelated analyses.

When should I delegate work to subagents for parallel execution?

You should delegate work to subagents for parallel execution when you have 2 or more independent tasks. This approach is beneficial for heavy implementations where context isolation is needed to reduce cognitive load on the orchestrator.

What is the best way to run two unrelated analyses simultaneously without mixing state?

The best way to run unrelated analyses without mixing state is to dispatch them as isolated subagents. This parallel execution method enforces clear result handling and ensures the orchestrator's context remains protected from state bleeding.

Does delegating tasks to subagents require a specific prompt template?

Yes, delegating tasks to subagents enforces a dedicated delegation workflow that utilizes a prompt template. This structured approach ensures clear result handling and proper context isolation for the independent tasks being executed.

Why does isolating subagent work help preserve orchestrator context?

Isolating subagent work preserves orchestrator context by offloading heavy implementations and preventing state bleeding. This isolation reduces cognitive load and ensures that parallel execution of independent tasks does not corrupt the orchestrator's state.

Can I use subagent delegation for a single heavy implementation task?

Yes, you can use subagent delegation for a single heavy implementation task. Context isolation is beneficial whenever heavy workloads exist, even if you do not have multiple independent tasks to run in parallel.