cd /news/artificial-intelligence/for-coding-agents-real-time-collabor… · home topics artificial-intelligence article
[ARTICLE · art-73784] src=ykdojo.github.io ↗ pub= topic=artificial-intelligence verified=true sentiment=↑ positive

For coding agents, real-time collaboration beats the "wisdom of the crowd"

A new experiment by Antigravity using Gemini 3.5 Flash on 30 Project Euler problems found that five AI coding agents collaborating in real time achieved 87% accuracy, outperforming five solo agents at 72% and their majority vote at 80%. The collaborating agents also solved problems faster, with average run time dropping from 14 to 10 minutes and median worst-of-5 time from 31 to 11 minutes.

read3 min views1 publishedJul 25, 2026

tl;dr: I ran AI coding agents on 30 Project Euler problems in two ways: five agents working separately, and five agents collaborating in real time. For both, I also computed the majority vote across the five answers at the end. The collaborating agents beat both the separate agents and their majority vote. Average accuracy without the vote went from 72% to 87%.

I had AI coding agents, specifically Gemini 3.5 Flash running through Antigravity, tackle 30 math and programming problems from Project Euler: all problems published this year except one (983), whose answer I could not verify on the website.

For each problem, five agents ran in
[five concurrent containers](https://github.com/ykdojo/antigravity-cloud-run).

I ran them in two ways:

In both cases I also took the majority vote across the five answers at the end. So in total there are four methods to compare: solo individuals, solo with vote, collaborative individuals, and collaborative with vote.

Each agent had 30 minutes of working time, plus up to 10 extra minutes to wrap up and submit a final answer, so a single run can take up to about 40 minutes.

Individually, solo agents got 108 of 150 runs correct (72%). With real-time collaboration, the same setup got 130 of 150 (87%). The majority vote went from 24 of 30 problems (80%) to 27 of 30 (90%). As you can see, both real-time collaboration and the “wisdom of the crowd”, aka majority voting, are effective, but real-time collaboration had a stronger effect on the overall accuracy.

solo collaborative
average run time 14m 10m

| median worst-of-5 time | 31m | 11m | The worst-of-5 time is relevant because if you wait for all five answers, that is when you get the final answer through the vote. The average time is relevant in a different way: it is a proxy for measuring the tokens and compute you use. Antigravity unfortunately does not give you exact token counts, but tokens and compute scale with the time it takes to solve a problem.

More collaborative runs end inside the first five minutes (97 vs 77), and fewer of them run past the 30 minute mark (23 vs 38).

On worst-of-5 time, solo sets pile up at the 30 to 40 minute end because many problems left at least one agent running until the cap. Collaborative sets most often finish within the first five minutes because once one agent solves the problem and shares its findings, the rest can finish quickly too, though the harder ones still run long.

Three individual problems are worth calling out:

These agents are not deterministic. If you try to reproduce the results you might get slightly different numbers, but in principle you should be able to get similar results.

Per Project Euler’s rules, no numeric answers are published here or in the repo. Runs were scored against privately held answers that were verified on the site itself.

The insights here were drawn from experiments with only 5 agents, so there are still many unknowns.

A lot of open questions, but I believe this is a decent start.

One of the closest things currently in production is xAI’s Grok Heavy line: Grok 4 Heavy ran multiple agents in parallel that compare notes like a study group, and the newer versions make a multi-agent setup the default for complex queries.

The exact prompts, the Dockerfile, and the full per-run outcome data (correct or not, and time taken, for all 300 runs) are in the appendix.

── more in #artificial-intelligence 4 stories · sorted by recency
── more on @antigravity 3 stories trending now
sponsored brought to you by zahid.host 4,200+ EU-deployed projects
reading about agents? ship yours in a single git push.

Run your AI side-project on zahid.host

EU-based hosting, git-push deploys, automatic HTTPS, no cold starts. Free tier with a custom domain — perfect for shipping the agent you just read about.

$git push zahid main
Live at https://your-agent.zahid.host
Get free account → Pricing
from €0/mo · no card required
LIVE [news/for-coding-agents-re…] indexed:0 read:3min 2026-07-25 ·