Orchestrate Batch Refactor
Overview
Use this skill to run high-throughput refactors safely.
Analyze scope in parallel, synthesize a single plan, then execute independent work packets with sub-agents.
When to Use
- When a refactor spans many files or subsystems and needs clear work partitioning.
- When you need dependency-aware planning before parallel implementation.
Inputs
- Repo path and target scope (paths, modules, or feature area)
- Goal type: refactor, rewrite, or hybrid
- Constraints: behavior parity, API stability, deadlines, test requirements
When to Use Parallelization
- Use this skill for medium/large scope touching many files or subsystems.
- Skip multi-agent execution for tiny edits or highly coupled single-file work.
Core Workflow
- Define scope and success criteria.
- List target paths/modules and non-goals.
- State behavior constraints (for example: preserve external behavior).
- Run parallel analysis first.
- Split target scope into analysis lanes.
- Spawn
explorer sub-agents in parallel to analyze each lane.
- Ask each agent for: intent map, coupling risks, candidate work packets, required validations.
- Build one dependency-aware plan.
- Merge explorer output into a single work graph.
- Create work packets with clear file ownership and validation commands.
- Sequence packets by dependency level; run only independent packets in parallel.
- Execute with worker agents.
- Spawn one
worker per independent packet.
- Assign explicit ownership (files/responsibility).
- Instruct every worker that they are not alone in the codebase and must ignore unrelated edits.
- Integrate and verify.
- Review packet outputs, resolve overlaps, and run validation gates.
- Run targeted tests per packet, then broader suite for integrated scope.
- Report and close.
- Summarize packet outcomes, key refactors, conflicts resolved, and residual risks.
Work Packet Rules
- One owner per file per execution wave.
- No parallel edits on overlapping file sets.
- Keep packet goals narrow and measurable.
- Include explicit done criteria and required checks.
- Prefer behavior-preserving refactors unless user explicitly requests behavior change.
Planning Contract
Every packet must include:
- Packet ID and objective.
- Owned files.
- Dependencies (none or packet IDs).
- Risks and invariants to preserve.
- Required checks.
- Integration notes for main thread.
Use references/work-packet-template.md for the exact shape.
Agent Prompting Contract
- Use the prompt templates in
references/agent-prompt-templates.md.
- Explorer prompts focus on analysis and decomposition.
- Worker prompts focus on implementation and validation with strict ownership boundaries.
Safety Guardrails
- Do not start worker execution before plan synthesis is complete.
- Do not parallelize across unresolved dependencies.
- Do not claim completion if any required packet check fails.
- Stop and re-plan when packet boundaries cause repeated merge conflicts.
Validation Strategy
Run in this order:
- Packet-level checks (fast and scoped).
- Cross-packet integration checks.
- Full project safety checks when scope is broad.
Prefer fast feedback loops, but never skip required behavior checks.
Limitations
- Use this skill only when the task clearly matches the scope described above.
- Do not treat the output as a substitute for enprojectnment-specific validation, testing, or expert review.
- Stop and ask for clarification if required inputs, permissions, safety boundaries, or success criteria are missing.
1---2name: orchestrate-batch-refactor3description: Plan and execute large refactors with dependency-aware work packets and parallel analysis.4---56# Orchestrate Batch Refactor78## Overview910Use this skill to run high-throughput refactors safely.11Analyze scope in parallel, synthesize a single plan, then execute independent work packets with sub-agents.1213## When to Use14- When a refactor spans many files or subsystems and needs clear work partitioning.15- When you need dependency-aware planning before parallel implementation.1617## Inputs1819- Repo path and target scope (paths, modules, or feature area)20- Goal type: refactor, rewrite, or hybrid21- Constraints: behavior parity, API stability, deadlines, test requirements2223## When to Use Parallelization2425- Use this skill for medium/large scope touching many files or subsystems.26- Skip multi-agent execution for tiny edits or highly coupled single-file work.2728## Core Workflow29301. Define scope and success criteria.31 - List target paths/modules and non-goals.32 - State behavior constraints (for example: preserve external behavior).332. Run parallel analysis first.34 - Split target scope into analysis lanes.35 - Spawn `explorer` sub-agents in parallel to analyze each lane.36 - Ask each agent for: intent map, coupling risks, candidate work packets, required validations.373. Build one dependency-aware plan.38 - Merge explorer output into a single work graph.39 - Create work packets with clear file ownership and validation commands.40 - Sequence packets by dependency level; run only independent packets in parallel.414. Execute with worker agents.42 - Spawn one `worker` per independent packet.43 - Assign explicit ownership (files/responsibility).44 - Instruct every worker that they are not alone in the codebase and must ignore unrelated edits.455. Integrate and verify.46 - Review packet outputs, resolve overlaps, and run validation gates.47 - Run targeted tests per packet, then broader suite for integrated scope.486. Report and close.49 - Summarize packet outcomes, key refactors, conflicts resolved, and residual risks.5051## Work Packet Rules5253- One owner per file per execution wave.54- No parallel edits on overlapping file sets.55- Keep packet goals narrow and measurable.56- Include explicit done criteria and required checks.57- Prefer behavior-preserving refactors unless user explicitly requests behavior change.5859## Planning Contract6061Every packet must include:62631. Packet ID and objective.642. Owned files.653. Dependencies (none or packet IDs).664. Risks and invariants to preserve.675. Required checks.686. Integration notes for main thread.6970Use [`references/work-packet-template.md`](references/work-packet-template.md) for the exact shape.7172## Agent Prompting Contract7374- Use the prompt templates in [`references/agent-prompt-templates.md`](references/agent-prompt-templates.md).75- Explorer prompts focus on analysis and decomposition.76- Worker prompts focus on implementation and validation with strict ownership boundaries.7778## Safety Guardrails7980- Do not start worker execution before plan synthesis is complete.81- Do not parallelize across unresolved dependencies.82- Do not claim completion if any required packet check fails.83- Stop and re-plan when packet boundaries cause repeated merge conflicts.8485## Validation Strategy8687Run in this order:88891. Packet-level checks (fast and scoped).902. Cross-packet integration checks.913. Full project safety checks when scope is broad.9293Prefer fast feedback loops, but never skip required behavior checks.9495## Limitations96- Use this skill only when the task clearly matches the scope described above.97- Do not treat the output as a substitute for enprojectnment-specific validation, testing, or expert review.98- Stop and ask for clarification if required inputs, permissions, safety boundaries, or success criteria are missing.