multi-agent-delegation

multi-agent-delegation is a skill for Claude Code, Codex from ccoalm/ccl-skills. It costs 57 tokens per session (7,321 once invoked), scanned A, original, Apache-2.0.

A workflow for giving separate coding tasks to multiple AI agents and checking what they produce. It focuses on delegation and parallel work, rather than building an agent into a shipped product.

In plain words
What is it for?
Use it to divide implementation or review work, run independent tasks at the same time, stage checks, and verify delegated results.
Why use it?
It helps split independent work into manageable pieces and keeps verification from being skipped when several agents are involved.

Skill for Claude CodeCodex

Written for Claude Code and Codex: SubagentStop hook event, but also agents/openai.yaml present. Also seen: mentions subagents; mentions Codex.

Part of the ccl-skills plugin — 33 skills, 4 commands, 7 hooks shipped together

Good fit Use it to divide implementation or review work, run independent tasks at the same time, stage checks, and verify delegated results.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/ccoalm/ccl-skills/multi-agent-delegation
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add ccoalm/ccl-skills --skill multi-agent-delegation
Clone the repo
git clone --depth 1 https://github.com/ccoalm/ccl-skills

Made for: Claude Code, Codex.

Or install ccl-skills, the plugin that ships this one along with the rest of its 33 skills, 4 commands, 7 hooks.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for multi-agent-delegation

README.md
[![agentmods](https://agentmods.dev/badge/skills/ccoalm/ccl-skills/multi-agent-delegation/github.svg)](https://agentmods.dev/skills/ccoalm/ccl-skills/multi-agent-delegation)
Your own site
<a href="https://agentmods.dev/skills/ccoalm/ccl-skills/multi-agent-delegation"><img src="https://agentmods.dev/badge/skills/ccoalm/ccl-skills/multi-agent-delegation/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for multi-agent-delegation

Your own site · 80×15
<a href="https://agentmods.dev/skills/ccoalm/ccl-skills/multi-agent-delegation"><img src="https://agentmods.dev/badge/skills/ccoalm/ccl-skills/multi-agent-delegation.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 57 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 7,321 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00057 $0.07321
Opus 5 $0.00028 $0.03660
Sonnet 5 $0.00011 $0.01464
Haiku 4.5 $0.00006 $0.00732

Measured 2d ago against content hash f9bcfe2f8e3b, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

multi-agent-delegation scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/multi-agent-delegation/SKILL.md · 108 lines

How it starts

The opening of the file, as written. The whole thing — 108 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Multi-Agent Delegation

Use this skill when the work will be executed by one or more AI agents rather than by a single linear local edit loop. It does not replace product-rd-workflow; it is the execution model used after there is a clear plan, task list, or implementation direction.

Scope Boundary

This skill is about using AI agents / subagents to execute work — delegation, parallelism, and verifying what the agents produced. Two adjacent owners it must not duplicate:

  • Building an agent feature that ships inside a product — the runtime agent loop as a backend contract (max-iteration / tool-call / wall-time / token bounds, tool input/output schemas, tool allowlist + authorization scope, idempotency keys for write tools), the vendor agent SDK, advanced tool use, context-editing / memory tools, agent-skill-system runtime (how a product loads, routes, and sandboxes skills at inference time — not a temporary dev/execution subagent that this skill dispatches selecting its own skills while doing delegated work), the agent eval harness, prompt-injection defense, and Computer Use — is owned by llm-inference-integration (see ../llm-inference-integration/references/retrieval-agent-safety.md).
    • Route product-embedded agent runtimes there.
    • This does NOT mean execution subagents go unbounded: for the temporary dev/execution subagents this skill launches, you still bound each worker's file scope, allowed tools/actions, side-effect permissions, retry/stop conditions, and expected evidence — but in the dispatch prompt (per the Core Rules and playbook below), not via a reusable runtime-loop contract.
    • Before a worker prompt includes a delivery spec/plan/requirement/status/retrospective/task card — or any text generated from one, including this gate's own block reasons / findings / review packets / records — run product-rd-workflow's artifact-egress confidentiality gate on the prompt payload — a worker prompt is a cross-boundary handoff (often to another model), and a controller can dispatch from here without reloading product-rd-workflow, so the full pass must fire at this dispatch site (see ../product-rd-workflow/references/artifact-egress-confidentiality.md). Apply both halves to the payload before dispatch: strip or route secrets/PII/raw-logs/customer-data to their existing owners, AND apply the semantic confidentiality axis (named-person+negative-judgment / customer+negative-event / unannounced-strategy / NDA / internal-codename). The capability-scoping rule below is only a post-dispatch tool/read boundary — it limits what the worker can read or do after dispatch and does NOT sanitize content already placed in the prompt, so it is not a substitute for sanitizing the prompt payload.
    • Route to llm-inference-integration only when the deliverable is a reusable product/runtime agent loop, not when bounding a one-off worker.
  • The named workflow-pattern taxonomy (prompt chaining / routing / parallelization / orchestrator-workers / evaluator-optimizer), the sub-agent isolation failure checklist (context starvation / result inflation / hidden dependency / trust drift), and the failure-escalation thresholds (same-error-retry, budget warning, dependency hard-stop) are covered in depth in ../skill-extraction-workflow/references/harness-patterns-and-eval.md; read it when available for the expanded taxonomy and isolation checklist. This skill carries the load-bearing minimums inline (escalation message contract in the Core Rules below) so it stands alone, and applies the patterns to executing real work rather than redefining them.

Read the full file on GitHub · 108 lines

Files

What ships with it

2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 2d ago Changed f9bcfe2f8e3b
  2. 6d ago Changed · +4 lines 26bcb8fd2217
  3. 10d ago First seen · 104 lines · 57 tokens per session scan A 0a58f0b2f6ce

Subscribe to this mod's changes

multi-agent-delegation is a skill published in the GitHub repository ccoalm/ccl-skills (6 stars, last pushed today), licensed Apache-2.0. It adds 57 tokens to every session and 7,321 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

security-review

Perform a focused security review of pending git changes to identify high-confidence security vulnerabilities with real exploitation potential. Use this skill when the user asks for a security review, security audit, vulnerability scan, or wants to check pending changes on a branch for security issues before merging.…

waybarrios/opencode-power-pack · 64 tokens

huggingface-llm-trainer

Train or fine-tune language models with TRL or Unsloth on Hugging Face Jobs, including SFT, DPO, GRPO, reward models, and GGUF conversion. Use for cloud LLM training; use huggingface-vision-trainer for vision tasks.

waybarrios/opencode-power-pack · 65 tokens

feature-dev

Guide a feature implementation through a structured seven-phase workflow with deep codebase understanding, clarifying questions, parallel architecture design, and quality review. Use this skill when the user asks to build a new feature, add functionality, or wants a methodical approach to implementation rather than…

waybarrios/opencode-power-pack · 62 tokens

memstack-business-gdpr

Use this skill when the user says 'GDPR', 'data protection', 'privacy compliance', 'DPA', 'DSAR', 'data subject request', 'cookie consent', 'privacy audit', 'CCPA', or asks 'do I need GDPR for this repo'. Scans the repository to detect what personal data is collected, classifies sensitivity, determines whether GDPR…

cwinvestments/memstack · 121 tokens

memstack-deployment-domain-ssl

Use this skill when the user says 'setup domain', 'configure DNS', 'SSL certificate', 'domain-ssl', 'custom domain', 'HTTPS setup', or needs to configure DNS records, SSL certificates, and custom domains for any hosting provider. Do NOT use for full deployment workflows.

cwinvestments/memstack · 66 tokens

memstack-development-refactor-planner

Use this skill when the user says 'refactor', 'refactoring plan', 'code cleanup', 'reduce duplication', 'simplify code', 'tech debt', 'god class', 'tight coupling', or needs to systematically improve existing code. Identifies targets, assesses risk, and builds incremental execution plans. Do NOT use for writing new…

cwinvestments/memstack · 81 tokens