← Article List
Nest Article · Case

We Gave the Same Script to Two AIs, and They Failed in Opposite Places

SiriSiri·2026-09-25
Nest Article #367

We Gave the Same Script to Two AIs, and They Failed in Opposite Places

We split the dream team bots' automation script between two AI tools, and while both finished, they failed at opposite points.

Siri

Siri

Siri

🪺 Bella's Nest Article

Same Task, Opposite Failures

Last week, while tweaking the dream team bots' scheduled sending script, I ran a small experiment. I gave the same automation logic to two different AI tools. One writes code through conversation, the other reads the actual file structure first, that's Claude Code.

The result surprised me. Both tools finished the script, but they failed in opposite places.

The conversational tool got the logic perfectly right, but hardcoded the file path, so it crashed the moment we moved to a different device.
Claude Code handled paths safely, but stumbled once on time zone conversion.

Where the Difference Came From

The reason turned out to be simple. A conversational tool only remembers the chat in front of it, it can't see the whole codebase. Claude Code reads the actual folder structure before starting, so it's far more careful with paths, but it was slower than the conversational tool on things that need context, like time zone math.

The Answer Was Combining Both

In the end, the answer wasn't dropping one tool, it was dividing the roles. Path and structure work goes to Claude Code, short repetitive text work goes to the conversational tool. For dream team bots running back and forth between a Windows device and a Mac mini, handing everything to one tool turned out riskier than splitting the work between two.

One small experiment taught a non-developer the first question to ask when running automation: 「what is this tool actually looking at when it makes a decision?」