Claude Skills
CollectionsCompareWorkflowsNominate
Sign inSign up
© 2026 Curated Agent Skills·Learn more about Agent Skills
Back to repository

complex-orchestrator

verified

Orchestrates multi-file tasks by delegating to parallel sub-agents. Use when a task spans multiple files or components and can benefit from parallel execution to save context and time.

View on GitHub

Marketplace

ccx-arsenal

xmgrex/ccx-arsenal

Plugin

agent-core

productivity

Repository

xmgrex/ccx-arsenal

plugins/agent-core/skills/complex-orchestrator/SKILL.md

Last Verified

February 1, 2026

Install Skill

Select agents to install to:

Scope:
npx add-skill https://github.com/xmgrex/ccx-arsenal/blob/main/plugins/agent-core/skills/complex-orchestrator/SKILL.md -a claude-code --skill complex-orchestrator

Installation paths:

Claude
.claude/skills/complex-orchestrator/
Powered by add-skill CLI

Instructions

# Parallel Task Orchestrator

Distribute multi-file work across parallel sub-agents to save context and time.

## When to Use

```
Task spans multiple files?
    │
    ├─ Independent? ──────► Full Parallel
    ├─ Some dependencies? ─► Staged Parallel (waves)
    └─ Tightly coupled? ──► Sequential or single agent
```

## 4-Step Workflow

### 1. Decompose
Break into file-scoped units. Identify dependencies.

### 2. Choose Strategy
- **Full Parallel**: All units independent
- **Staged Parallel**: Wave 1 (dependencies) → Wave 2 (consumers)
- **Fan-out/Fan-in**: Setup → parallel work → integration

### 3. Delegate in Parallel
Launch multiple Tasks in **single message**:
```typescript
Task({ subagent_type: "general-purpose", description: "Edit file A", prompt: "..." })
Task({ subagent_type: "general-purpose", description: "Edit file B", prompt: "..." })
```

### 4. Integrate
- Verify each succeeded
- Check for conflicts
- Run integration tests

## Sub-agent Prompt Structure

```markdown
## Scope
File: [path] | Task: [what to do in THIS file only]

## Context
Pattern: [consistent approach across all units]

## Constraints
- Only modify [path]
- Follow existing style
```

## Agent Selection

| Sub-task | Agent |
|----------|-------|
| Simple edit | `general-purpose` |
| Exploration needed | `Explore` → `general-purpose` |
| Complex logic | `advanced-general-purpose` |

---

*For detailed examples and troubleshooting, see `examples.md`*

Validation Details

Front Matter
Required Fields
Valid Name Format
Valid Description
Has Sections
Allowed Tools
Instruction Length:
1419 chars