parallel-orchestration

parallel-orchestration is a skill for Claude Code from PMDevSolutions/Aurelius. It costs 23 tokens per session (3,082 once invoked), scanned A, original, MIT.

A scheduler that runs independent stages of a software pipeline at the same time while respecting prerequisites and shared-resource limits. A pipeline is a sequence of automated work stages.

In plain words
What is it for?
Use it to dispatch independent build, documentation, visual-check, and test stages in parallel, either within a larger build process or for a custom list of tasks.
Why use it?
It avoids waiting for unrelated stages to finish one after another while preventing stages from starting before their dependencies are ready. It also reports live progress and a final timing summary.

Skill for Claude Code

Written for Claude Code: installed under .claude/. Also seen: reads .claude/ paths.

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is node scripts/renderer-registry.js resolve <renderer> --json.

Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/PMDevSolutions/Aurelius
agentmods
npx agentmods add skills/pmdevsolutions/aurelius/parallel-orchestration

Made for: Claude Code.

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 parallel-orchestration

README.md
[![agentmods](https://agentmods.dev/badge/skills/pmdevsolutions/aurelius/parallel-orchestration.svg)](https://agentmods.dev/skills/pmdevsolutions/aurelius/parallel-orchestration)
Your own site
<a href="https://agentmods.dev/skills/pmdevsolutions/aurelius/parallel-orchestration"><img src="https://agentmods.dev/badge/skills/pmdevsolutions/aurelius/parallel-orchestration.svg" alt="Measured on agentmods" height="20"></a>
Per session 23 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,082 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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.00023 $0.03082
Opus 5 $0.00012 $0.01541
Sonnet 5 $0.00005 $0.00616
Haiku 4.5 $0.00002 $0.00308

Measured yesterday against content hash 34f3794174d4, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

parallel-orchestration 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 yesterday.

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.

.claude/skills/parallel-orchestration/SKILL.md · 259 lines

How it starts

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

Parallel Orchestration

Overview

A concurrent phase scheduler that dispatches independent pipeline phases in parallel using background agents. It reads the phase dependency graph and resource constraints from pipeline.config.json, determines which phases can safely run concurrently, and schedules them up to the configured maxConcurrent limit. Phases with unmet dependencies or conflicting exclusive resources are held until their prerequisites complete and resources free up.

The scheduler produces real-time streaming output as phases start and finish, and a final batch summary with wall-clock timing, estimated sequential time, and speedup factor.

When to Use

  • Pipeline invocation: Called by /build-from-figma, /build-from-canva, and /build-from-screenshot after the sequential phases (0-3: token-sync, intake, token-lock, tdd-scaffold) complete. Phases 4+ are handed to this skill for parallel dispatch.
  • Standalone: Invoke directly for ad-hoc parallel work by providing a list of independent tasks.

Input

  1. Phase IDs -- ordered list of phase IDs to execute (e.g., ["component-build", "storybook", "visual-diff", "dark-mode", "e2e-tests", "cross-browser", "quality-gate", "responsive", "report"]).
  2. Prior context -- artifacts from earlier sequential phases:
    • build-spec.json (component list, appType, renderer, E2E flows)
    • design-tokens.lock.json (locked token values)
    • Test files from tdd-scaffold phase
  3. Pipeline config -- .claude/pipeline.config.json, specifically the orchestration section.
  4. Renderer manifest -- the resolved manifest for the build-spec's renderer, used to drop excluded phases and select the converter (see Step 0 and Step 5).

Algorithm

Step 0: Resolve Renderer and Exclude Phases

Before scheduling, read renderer from build-spec.json and resolve its manifest:

node scripts/renderer-registry.js resolve <renderer> --json

Read manifest.phases.exclude (an array, absent/empty for most renderers) and drop every listed phase from the requested phase set before building the dependency graph. Excluded phases never enter the scheduler — they are not dispatched, not tracked, and not awaited.

Read the full file on GitHub · 259 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. yesterday First seen · 259 lines · 23 tokens per session scan A 34f3794174d4

Subscribe to this mod's changes

parallel-orchestration is a skill published in the GitHub repository PMDevSolutions/Aurelius (8 stars, last pushed 21d ago), licensed MIT. It adds 23 tokens to every session and 3,082 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-09-04.

Related

Other skills, from other repositories