Multi Build
Description
Claude Code skill that builds one new feature with several AI models at once: a spec with testable acceptance criteria and agreed interfaces first, the work split by file across the models, each part reviewed by a different model on a different subscription, one commit.
Installation
This entry records only its repository, not the path inside it, so there is no
exact command to give. Open the source below and copy the folder into
~/.claude/skills/, or the file into ~/.claude/agents/.
README
multi-build
**Version 1.0.0** — see [`CHANGELOG.md`](CHANGELOG.md). Your installed version is the `version:` line in `SKILL.md`.
A Claude Code skill that builds **one new feature** with several AI models at once. It writes a spec with acceptance criteria you can test, agrees the interfaces between the parts before anyone codes, splits the work by file evenly across the models, has each builder write the failing test first, has a **different** model on a **different** subscription review every part against the spec, integrates, runs the full suite, and makes one commit.
**The one idea:** parallel building fails at the joins. Each builder makes a private assumption about the seam between its part and the next, and the assumptions disagree. So the seams — signatures, data shapes, routes — are written first, and every brief carries them word for word. Builders fill in behind a contract; they do not invent one.
Sister skills: [`multi-fix`](https://github.com/Mariomarquezt/multi-fix) fixes a list of defects the same way; [`sliced-review`](https://github.com/Mariomarquezt/sliced-review) finds them. All three share one rule: the model that wrote something never checks it, and the check is never on the same bill.
Install
git clone https://github.com/Mariomarquezt/multi-build ~/.claude/skills/multi-build
Recommended alongside it: [`sliced-review`](https://github.com/Mariomarquezt/sliced-review), for the backend wiring notes (`references/runners.md`) this skill points at.
Modes
The number is how many models take part.
| you type | who builds | who reviews | use it when |
|---|---|---|---|
/multi-build 2 |
Sol | Grok | a small feature, one or two files |
/multi-build or /multi-build 3 |
Sol, Grok, Opus — equal shares | each reviews the next, A→B→C→A | the normal case |
/multi-build 5 |
those three + GLM Flash + Composer — equal shares | fixed ring Sol → Opus → Grok → GLM → Composer → Sol | a large feature with many separable parts |
Related Skills
Spec Kit
💫 Toolkit to help you get started with Spec-Driven Development
Testing Webapp Testing
Test local web applications using Playwright for UI verification and debugging
Testing #29
, [#52](https://github.com/affaan-m/everything-claude-code/issues/52), [#103](https://github.com/affaan-m/ever
Testing Fix Issue
by metabase - Addresses GitHub issues by taking issue number as parameter, analyzing context, implementing sol
Testing Pypict Test Design
Design comprehensive test cases using PICT (Pairwise Independent Combinatorial Testing) for optimized test sui
Testing gstack
| 15,000+ | Garry Tan's exact Claude Code setup: 6 opinionated tools that serve as CEO, Eng Manager, Release M
Testing