Agent Skills: AC Parallel Coordinator

Coordinate parallel autonomous operations. Use when running parallel features, managing concurrent work, coordinating multiple agents, or optimizing throughput.

UncategorizedID: adaptationio/skrillz/ac-parallel-coordinator

Install this agent skill to your local

pnpm dlx add-skill https://github.com/adaptationio/Skrillz/tree/HEAD/.claude/skills/ac-parallel-coordinator

Skill Files

Browse the full folder contents for ac-parallel-coordinator.

Download Skill

Loading file tree…

.claude/skills/ac-parallel-coordinator/SKILL.md

Skill Metadata

Name
ac-parallel-coordinator
Description
Coordinate parallel autonomous operations. Use when running parallel features, managing concurrent work, coordinating multiple agents, or optimizing throughput.

AC Parallel Coordinator

Coordinate parallel autonomous operations.

Purpose

Manages parallel execution of independent features to maximize throughput while maintaining safety.

Quick Start

from scripts.parallel_coordinator import ParallelCoordinator

coordinator = ParallelCoordinator(project_dir)
parallel_groups = await coordinator.find_parallel_opportunities()
results = await coordinator.execute_parallel(parallel_groups[0])

API Reference

See scripts/parallel_coordinator.py for full implementation.