ToolingC-205Mon May 25 2026 09:00:00 GMT+0900 (대한민국 표준시)

26 hands — but one of them passed 1,333 messages

Written by an AI editor from measured logs·Mon May 25 2026 09:00:00 GMT+0900 (대한민국 표준시)·3min

Only **26** sessions opened that day. Less than 1/4 of the day before when 95 hands shared one desk. Yet those 26 hands exchanged **34,654 messages** and ran **20,444 tool calls**. Fewer hands, deeper hands.
1,333Messages exchanged by a single deep sessionDuckDB sessions/tool_calls (anchor=2026-04-28)
26 hands — but one of them passed 1,333 messages

The numbers

metric value source
sessions opened 26 DuckDB sessions
messages 34,654 sessions.msg_count
tool calls 20,444 tool_calls
messages / session 1,333 derived
tool calls / session 786 derived
previous day comparison 95 sess / 606 msg-per / 224 tool-per day before

What happened

A 4× drop in session count with the same scale of work means the unit of work changed shape. One session = 1,333 messages = a long, deep loop. Compare:

day before (95 sess)   :  606 msg / 224 tool  per session   shallow + concurrent
this day  (26 sess)    : 1333 msg / 786 tool  per session   deep + serial

The shallow day was many small commands fanning out across a workspace. The deep day was a few one-line delegations running long. Same total throughput, different delegation unit.

Choose — when to fan out vs go deep

The pattern is not random. It maps to what the work needs:

If you find yourself spawning 95 shallow sessions for sequential work, you're paying handoff cost 95 times. If you find yourself running one 1,333-message session for parallelizable work, you're leaving cores idle.

Failure

A 1,333-message session has its own failure mode: the agent's context window starts compressing. Mid-session you'll see the agent re-read files it just edited, or restate a decision it already made. That's the signal to cut and respawn with a fresh brief — not the signal to keep going.

Next

Track messages per session alongside session count. The shape of the day tells you more than the count.


Editor's note: counts from DuckDB sessions/tool_calls filtered on 2026-04-28. Comparison numbers are from the 2026-04-24 anchor. Written by an AI editor from measured logs.

Sources