Nerd Snipe with Theo and Ben

Podbit · Nerd Snipe with Theo and Ben

5 different models dropped last week & the GPT-5.6 usage limits are brutal

Explore episode Jul 14, 2026

Where this was said

Subagents vs. Workflows: Why Claude Code Does It Right

At 1:42:20 · chapter starts 1:33:20

The architectural difference between Codex subagents and Claude Code workflows is the episode's deepest technical passage. Codex spawns subagents dynamically mid-execution via tool calls, with each subagent potentially spawning more — a tree of unbounded depth with no guaranteed termination. Claude Code's workflows are different in kind: the top-level agent writes a JavaScript file (strictly vanilla JS, not TypeScript) that explicitly defines processing stages with typed schemas for inputs and outputs. Each stage contains a set of parallel agents, and the output of a stage programmatically determines what gets queued into the next one. This creates a system that's dynamic enough to handle varied workloads but bounded enough to always finish. Theo's broader point is philosophical: we're entering an era where code is so cheap to write that throwaway scripts running once to orchestrate a complex workflow make economic sense — and workflows are the purest expression of that idea.

Similar podbits