Claude Code Plugins

Community-maintained marketplace

Feedback

ac-parallel-coordinator

@majiayu000/claude-skill-registry
27
0

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

Install Skill

Shared

Installs to .agents/skills, used by Codex, Amp, Warp, Cursor, OpenCode, and more.

CodexAmp
Warp
CursorOpenCode
Cline
Gemini CLI
GitHub Copilot
Personal

Available across projects.

$npx skills-installer add @majiayu000/claude-skill-registry/ac-parallel-coordinator --client shared
Project

Writes to .agents/skills.

$npx skills-installer add @majiayu000/claude-skill-registry/ac-parallel-coordinator -p --client shared
Note: Review the skill instructions before using it.

SKILL.md

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.