claude-skill-orchestration-audit

Audit subagent orchestration in Claude Code skills for parallelism and anti-patterns.

15|Updated Mar 11, 2026
One-click install
npx skills add https://github.com/jackchuka/skills --skill claude-skill-orchestration-audit
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: claude-skill-orchestration-audit
Source: https://github.com/jackchuka/skills/tree/main/claude-skill-orchestration-audit
Command: npx skills add https://github.com/jackchuka/skills --skill claude-skill-orchestration-audit

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve?

Identifies weaknesses in subagent orchestration within Claude Code skills by validating the three-phase pattern (Setup → Dispatch → Aggregate) and surface patterns that enable or block parallelism and expose anti-patterns.

Core Features & Use Cases

  • Verifies that each skill follows a clear Setup, Dispatch, and Aggregate flow with explicit responsibilities.
  • Detects latent parallelism in sequential workflows and highlights safe opportunities to dispatch agents in parallel.
  • Use during skill quality reviews, standardization, or pre-release audits to improve orchestration practices.

Quick Start

Run a full orchestration audit across all authored skills to surface improvements.

Frequently Asked Questions about claude-skill-orchestration-audit

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

FAQPage Schema
What is subagent orchestration auditing in Claude Code skills?▼

Subagent orchestration auditing identifies weaknesses in your agent skills by validating the Setup, Dispatch, and Aggregate flow to expose anti-patterns and surface parallelism opportunities.

How do I audit agent skills for parallelism opportunities?▼

You audit agent skills by analyzing each skill's SKILL.md, references, and metadata to detect latent parallelism in sequential workflows and highlight safe opportunities to dispatch agents in parallel.

Can I use this orchestration audit for pre-release skill quality reviews?▼

Yes, you can run a full orchestration audit across all authored skills during quality reviews or pre-release standardization to verify explicit responsibilities and improve dispatch practices.

What files do I need to provide for a skill orchestration audit?▼

You need to provide access to each skill's SKILL.md, references directory, and metadata to classify the three-phase orchestration pattern and accurately report findings.

What are common anti-patterns found in agent dispatch and aggregation?▼

Common anti-patterns include unclear Setup, Dispatch, and Aggregate responsibilities, missing explicit flow definitions, and sequential workflows that block latent parallelism opportunities.