A friend dared me to build Pass the Pigs during the apéro. Two LLMs reviewed my plan. A developer accepted a friend's dare to build a Pass the Pigs app during an apéritif, using an adversarial AI development loop. The plan was written by Codex and reviewed by Claude Fable 5, with Hermes Agent orchestrating the pipeline. The two models found 16 unique issues, including five more than the best single model, and independently converged on the three most critical bugs. The final app, built with Vite, is about 16KB gzipped and includes 73 tests. Or: a non-technical friend wanted to see what AI could do. He watched it plan — and watched two AIs shred the plan. It happened at an apéritif, in front of a non-technical friend who wanted to see what AI could do. We were playing le jeu de cochons Pass the Pigs — the apéro game where you throw two tiny pigs, they land in one of seven positions, and you push your luck against the scoreboard. He picked it up, turned to me, and dared: "go on — make an app out of it. Right now. Show me what AI can do." The desktop wakes up. Challenge accepted. It looks trivial. It is not. My concept was "one-line to code": give an LLM a short prompt, let it plan, let it build, ship it. A modern party trick. Honesty clause 1: it wasn't literally one line. It took a few short exchanges — still almost no hand-holding from me, but I won't pretend it was a single prompt. The pigs are simple, right? The prompts were apéro-grade: casual, naive, written in French over drinks — no templates, no role-play framing, no few-shot examples, no chain-of-thought coaxing. Translated from the originals: That's the whole prompt-engineering budget: zero. No magic incantations — the quality came from the process: two independent models, a gate at every stage, disagreement as a signal. Anyone can type these three prompts. Pass the Pigs has a famously ambiguous rulebook, and the game is really about probabilities — when to bank, when to roll again. The scoring semantics Bon Jambon, Cochon à Cheval, Pig Out, the "Somme" rules are exactly where a happy few-lines plan goes to die. So instead of trusting the plan those few prompts produced, I ran it through an adversarial review pipeline, orchestrated by Hermes Agent — the framework where these skills live. My Hermes runs on DeepSeek Flash for orchestration: the cheap part of the loop. The real work is done by the two specialist models — the plan was written by Codex as the architect, then reviewed independently by Claude Fable 5 as the inspector; a synthesis pass merged, categorized, and ranked their findings. The cost story is deliberately mundane: the whole loop ran on basic consumer plans — a €20/month Claude subscription and a €20/month Codex subscription, each model's turn scheduled inside its quota window. No API credits, no enterprise accounts. The pipeline is designed to fit inside the limits a hobbyist already pays for. Neither model is special, either: the pipeline accepts any LLM CLI on either side — Claude, Codex, Gemini, GLM, or fully local models served by llama.cpp my Hermes already routes to local models . The only real requirement is two different model families: two copies of the same model share the same blind spots, and the whole point is a second opinion that isn't a copy of your first one. | Reviewer | Findings | |---|---| | Codex alone architect | 7 | | Claude Fable 5 alone inspector | 11 | Both, merged | 16 unique findings | The duo found +5 findings over the best single model 16 vs 11 , and — more important than the count — the two models independently converged on exactly the three most dangerous bugs . Everything started at the apéritif and finished the next morning — the session log tells the story: dare at 21:12, plan and adversarial review that night, then a quota wall one of the two subscriptions ran out mid-loop , and I went to bed while the pipeline kept running. A playable build was committed at 01:38; the real finish came in the morning, when the GitHub Pages URL needed one more fix at 10:32 the classic Vite base-path 404 — so the first people to try the link that morning saw nothing. Five commits across an evening, a night, and a morning. The commit for the playable version reads, in part: Moteur de règles complet push-your-luck, probabilités calibrées … 73 tests unitaires + calibration 1M tirages + Playwright E2E — Build Vite ~16KB gzip. Développé via adversarial dev loop Codex DEV + Claude Fable 5 REVIEW An apéritif game that fits in 16KB gzipped, tested 73 ways, calibrated against a million simulated rolls — and the project's own commit history credits the adversarial loop. The full review trail 647-line plan, both models' findings, synthesis is committed right next to the code. The plan review was one gate in a chain. The session opened with a spec pass — the product-definition analysis of the game's rules scoring table, the three possible approaches, the four traps of going digital — and everything downstream ran on it. After the plan was corrected, the code itself went through the same two-model loop, phase by phase that's what adversarial-code-loop is for . The last phase's review caught two real major bugs the test suite had missed — in fact, the tests were asserting the buggy behavior: player names were HTML-escaped at the wrong layer a name like A&B