batch-orchestration

Solid

Decompose large-scale changes into independent units and spawn parallel agents in isolated worktrees. Use for migrations, refactors, codemods, and any change touching 10+ files with the same pattern.

AI & Automation 2,653 stars 257 forks Updated today

Install

View on GitHub

Quality Score: 86/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
0
Description 5%
100

Skill Content

# Batch Orchestration The `/batch` command pattern for large-scale parallel changes. ## How It Works ```text /batch <instruction> │ ├── 1. Research: scan repo, understand scope ├── 2. Decompose: split into 5-30 independent units ├── 3. Present plan: show units, ask for approval ├── 4. Execute: one background agent per unit in isolated worktree └── 5. Collect: each agent runs tests and opens a PR ``` ## Syntax ```bash /batch Convert all React class components to function components /batch Add error boundaries to every page component /batch Migrate from moment.js to dayjs across the codebase /batch Add OpenTelemetry tracing to all API handlers ``` The instruction should describe the change pattern, not individual files. The batch system finds the files. ## Phase 1: Research The orchestrator scans the repo to find every instance that matches the instruction: ```bash grep -r "class.*extends.*Component" --include="*.tsx" -l ``` It builds a complete list of targets and groups them by independence. ## Phase 2: Decompose Each unit must be: - **Independent** — no shared state with other units - **Self-contained** — can be implemented and tested alone - **Verifiable** — has a clear pass/fail criteria **Good units:** ```text Unit 1: Convert src/components/Header.tsx (class → function) Unit 2: Convert src/components/Footer.tsx (class → function) Unit 3: Convert src/components/Sidebar.tsx (class → function) ``` **Bad units:** ```text Unit 1: Convert all componen...

Details

Author
rohitg00
Repository
rohitg00/pro-workflow
Created
5 months ago
Last Updated
today
Language
JavaScript
License
None

Bundled in these plugins

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Solid

batch-mode

When the user needs to perform the same operation across multiple files, components, or entities. Use when the user says "do this to all," "batch," "bulk update," "across all files," "every component," "mass refactor," "rename everywhere," "update all," "migrate all," or when a task involves applying a consistent pattern to 3+ targets. Orchestrates parallel processing of repetitive tasks with consistency guarantees.

4 Updated 4 days ago
irfad7
AI & Automation Solid

agent-orchestration

Coordinate a phased, multi-specialist workflow for complex software work that spans several build stages — design, planning, implementation, testing, and deployment. Use this whenever a request bundles multiple stages together, e.g. "design this feature, plan the implementation, and scaffold the code", "take this idea to a working skeleton", "help me build X end to end", or any time the user wants structured coordination across the full build lifecycle rather than one isolated step. Trigger even when the user never says "orchestrate" or "agents" — what matters is that the task clearly has several stages that benefit from being sequenced with explicit phase boundaries and checkpoints. Do NOT trigger for single-stage asks ("fix this bug", "write this function") — those are handled directly without orchestration overhead.

0 Updated today
scoobydrew83
AI & Automation Listed

orchestrate

Use when multiple independent tasks need coordinated delegation across agents with progress tracking. "orchestrate", "오케스트레이션", "위임 모드", "에이전트 조율", "작업 분배", "병렬 위임", "멀티 에이전트" 요청 시 사용.

1 Updated 2 days ago
SONGYEONGSIN