orchestrator

orchestrator is a skill for Claude Code from mshadmanrahman/pm-pilot. It costs 13 tokens per session (551 once invoked), scanned A, original, MIT.

A task coordinator that divides complex work into waves of independent tasks for separate helper agents. It then collects their results and combines them into one answer.

In plain words
What is it for?
Use it for projects with at least three separate tasks, research across multiple sources, bulk analysis, or other work that can be split into stages.
Why use it?
It makes large jobs easier to manage and can reduce waiting when several parts can be handled at the same time.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: mentions subagents.

Part of the pm-productivity plugin — 6 skills shipped together

Good fit Use it for projects with at least three separate tasks, research across multiple sources, bulk analysis, or other work that can be split into stages.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/mshadmanrahman/pm-pilot/orchestrator
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 mshadmanrahman/pm-pilot --skill orchestrator
Clone the repo
git clone --depth 1 https://github.com/mshadmanrahman/pm-pilot

Made for: Claude Code.

Or install pm-productivity, the plugin that ships this one along with the rest of its 6 skills.

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 orchestrator

README.md
[![agentmods](https://agentmods.dev/badge/skills/mshadmanrahman/pm-pilot/orchestrator.svg)](https://agentmods.dev/skills/mshadmanrahman/pm-pilot/orchestrator)
Your own site
<a href="https://agentmods.dev/skills/mshadmanrahman/pm-pilot/orchestrator"><img src="https://agentmods.dev/badge/skills/mshadmanrahman/pm-pilot/orchestrator.svg" alt="Measured on agentmods" height="20"></a>
Per session 13 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 551 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00013 $0.00551
Opus 5 $0.00006 $0.00275
Sonnet 5 $0.00003 $0.00110
Haiku 4.5 $0.00001 $0.00055

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

Security

Grade A, and why

orchestrator 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 8d 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.

plugins/pm-productivity/skills/orchestrator/SKILL.md · 93 lines

How it starts

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

Orchestrator

Decompose complex work into independent waves of parallel sub-agent tasks.

When to Use

  • Tasks with 3+ independent sub-tasks
  • Research across multiple sources
  • Bulk operations (triage, analysis, review)
  • Any work where parallelism saves time

Procedure

  1. Decompose Work

    • Break task into atomic, independent units
    • Group into waves (units within a wave have zero dependencies)
    • Order waves by dependency: wave 2 depends on wave 1 results
  2. Plan Waves

    Wave 1 (parallel): [task-a, task-b, task-c]
    Wave 2 (parallel, depends on wave 1): [task-d, task-e]
    Wave 3 (sequential): [merge results]
    
  3. Launch Sub-Agents

    • One Task agent per wave item
    • Each agent gets: clear objective, input data, output format
    • Each agent writes results to .claude/manifests/{task-id}.md
  4. Collect Results

    • Wait for all agents in a wave to complete
    • Read manifests using manifest-reader skill
    • Check for failures or partial results
  5. Merge and Synthesize

    • Combine results from all waves
    • Resolve conflicts or inconsistencies
    • Produce unified output

Wave Design Rules

  • Max 5 agents per wave (resource constraint)
  • Each agent should complete in under 2 minutes
  • If an agent fails, note failure and continue (don't block the wave)
  • Always have a merge step as the final wave

Manifest Format

Each sub-agent writes:

---
task: {task-id}
status: complete | failed | partial
agent: {agent-description}
---

## Findings
{results}

## Errors
{any errors encountered}

Output Format

Orchestration: {task name}
Waves: {count}
Results: {success count}/{total count} tasks completed
Summary: {merged findings}
Failures: {list or "none"}

Rules

  • Never launch wave 2 before wave 1 completes
  • Always check manifests before proceeding
  • Failed agents should not block successful ones
  • Keep each agent's scope small and focused
  • Clean up manifest files after final merge

Read the full file on GitHub · 93 lines

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. 8d ago First seen · 93 lines · 13 tokens per session scan A 318bc6581e0c

Subscribe to this mod's changes

orchestrator is a skill published in the GitHub repository mshadmanrahman/pm-pilot (20 stars, last pushed 2d ago), licensed MIT. It adds 13 tokens to every session and 551 once invoked, about $0.0001 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-30.

Related

Other skills, from other repositories