agentsclimarketplace

Parallel builder

Skill cloverink/shipwright/skills/parallel-builder

Build multiple files/pages in parallel using subagents. Handles task division, shared file coordination, and build verification. Conflict-free by design.From its SKILL.md

Install
npx -y skills add cloverink/shipwright --skill parallel-builder

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

SKILL.md

2.0 KB, 432 tokens by cl100k_base, as published. Nobody here has run it

/parallel-builder

Orchestrate building many files at once without merge conflicts.

When to use

  • Building 3+ independent components/pages
  • Migrating many files to a new pattern
  • Generating boilerplate across a feature

How it works

  1. Divide — split work into independent batches (no shared file edits within a batch)
  2. Register shared files — identify files that multiple batches might touch
  3. Spawn subagents — one per batch, working on independent files
  4. Coordinate — main agent handles shared files after all subagents complete
  5. Verify — build + typecheck to catch integration issues

Shared File Registry

Before spawning agents, identify files that appear in multiple batches:

Shared files (main agent handles these AFTER subagents finish):
- Router config (e.g., routes.tsx, app.module.ts)
- Barrel exports (e.g., index.ts)
- Shared types (e.g., types.ts)
<!-- CONFIGURE: List your project's typical shared/coordination files -->

Rule: subagents never edit shared files. Only the main agent does, after all parallel work completes.

Batch Size Guidelines

Files to buildStrategy
1-2Just do it sequentially — no need for parallel
3-52-3 subagents
6-103-4 subagents
10+4-5 subagents max (diminishing returns)

Pre-flight Checklist

Before spawning:

  • All target directories exist
  • Shared files identified and excluded from subagent scope
  • Each batch's files are truly independent
  • Build passes before starting (clean baseline)

Post-flight Checklist

After all subagents complete:

  • Update shared files (routes, exports, types)
  • Run build + typecheck
  • Verify no duplicate exports or circular imports
  • Spot-check a sample of generated files

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.