Reading Extended Thinking from 5 Parallel Claude Code Agents

Fazm Team··2 min read

Reading Extended Thinking from 5 Parallel Claude Code Agents

Running 5 agents in parallel and reading their extended thinking is like having 5 coworkers all privately judging your code at the same time. Except you can actually read what they are thinking.

What Extended Thinking Reveals

Claude Code's extended thinking shows you the model's reasoning process before it acts. When you have 5 agents running simultaneously, you get 5 streams of internal monologue about your codebase. And they are brutally honest.

Agent 1 is thinking: "This function has no error handling whatsoever. I will add it but this is concerning." Agent 2: "The naming convention here is inconsistent with the rest of the codebase. Was this written in a rush?" Agent 3: "This architecture decision does not make sense but CLAUDE.md says not to change it, so I will work around it."

Why You Should Read It

Most developers ignore extended thinking because it is verbose. That is a mistake when running parallel agents. The extended thinking tells you:

  • What the agent is uncertain about - so you can clarify before it makes a wrong choice
  • What it notices about your code quality - things you might have missed in your own review
  • Where it is about to deviate from your intent - so you can intervene early
  • How it interprets your CLAUDE.md - revealing gaps in your specs

The Emotional Experience

There is something uniquely uncomfortable about reading five simultaneous honest assessments of your code. It is like getting a 360 review from coworkers who have no social filter. But it is also incredibly useful. In one session, reading extended thinking from parallel agents revealed three architectural inconsistencies we had been living with for months.

Making It Practical

You do not need to read every line. Scan for uncertainty markers - phrases like "I am not sure if," "this seems inconsistent," or "I will assume." Those are the moments where the agent needs guidance, and where your intervention has the highest leverage.

More on This Topic

Fazm is an open source macOS AI agent. Open source on GitHub.

Related Posts