coordinate-subagents

Coordinate subagents with parallel calls, token budgets, and voting.

3|Updated Nov 28, 2025
One-click install
npx skills add https://github.com/rayk/lucid-toolkit --skill coordinate-subagents
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: coordinate-subagents
Source: https://github.com/rayk/lucid-toolkit/tree/main/plugins/claude/skills/coordinate-subagents
Command: npx skills add https://github.com/rayk/lucid-toolkit --skill coordinate-subagents

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve?

Advanced subagent coordination patterns to improve reliability and token efficiency when using the Task tool.

Core Features & Use Cases

  • Extreme decomposition and voting for critical decisions
  • Right-sized models and strict formats
  • Parallel calls and minimal context strategies

Quick Start

Load coordination patterns, run parallel tasks when possible, and apply voting for irreversible decisions

Frequently Asked Questions about coordinate-subagents

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

FAQPage Schema
How do I coordinate multiple subagents to work in parallel without wasting tokens?

Coordinate subagents by decomposing tasks into independent units, running them in parallel, and applying token budgets to each. This prevents sequential bottlenecks and reduces token consumption compared to running subagents sequentially or with redundant context passing.

When should I use voting to coordinate subagent decisions?

Use voting when subagents must reach consensus on critical or irreversible actions. Voting ensures reliability by aggregating independent judgments, reducing the risk of unreliable outputs from a single subagent.

How do I ensure subagent outputs follow strict formats like JSON or structured text?

Implement strict format constraints in subagent coordination by specifying required output schemas upfront and validating results against them. This prevents malformed outputs and ensures downstream processing reliability.

Can I use right-sized models with subagent coordination?

Yes. Right-sized models means assigning appropriate model capability to each subagent task—simpler tasks use smaller models, complex reasoning uses larger ones. Combined with parallel calls and minimal context, this improves token efficiency and latency.

What problems does extreme decomposition solve in multi-agent workflows?

Extreme decomposition breaks complex tasks into minimal, independent units so subagents can run in parallel without redundant context or blocking dependencies. This eliminates sequential bottlenecks and reduces overall token consumption.