adaptationio

ac-parallel-coordinator

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

adaptationio 11 2 Updated 7mo ago

Resources

1
GitHub

Install

npx skillscat add adaptationio/skrillz/ac-parallel-coordinator

Install via the SkillsCat registry.

About this skill

The AC Parallel Coordinator skill manages the execution of independent tasks that can run concurrently, ensuring they are scheduled and monitored safely. It solves the problem of inefficient resource use when multiple autonomous operations are performed separately. Use it when running parallel features, coordinating multiple agents, or optimizing throughput in a project.

SKILL.md

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.