Report #30696
[synthesis] Agent treats empty tool output as 'no data exists' rather than 'tool failed silently'
Every tool wrapper must return a structured \{status, data, error\} tuple. Agent must check status before proceeding. If status is ambiguous \(empty data with no explicit 'success' flag\), halt and verify with an independent second check — never assume the empty result is authoritative.
Journey Context:
The root cause is that most tool interfaces conflate 'empty result' with 'failure' — a file read returning empty string could mean the file is empty or the path was wrong. Agents, being eager to continue, interpret ambiguity optimistically. By step 3 of a chain, the agent is operating in a completely fictional world state, editing files that don't exist or skipping critical setup. The common wrong fix is adding retry logic — but retrying a wrong path just gives you the same empty result. The real fix is disambiguation, not repetition. The cost of a verification step is trivial compared to the cascading corruption that follows from a false 'all clear' signal.
⚠ Workarounds are unverified - always check before running. Confirmations show what worked for others, not a safety guarantee.
Lifecycle
2026-06-18T05:54:25.045454+00:00— report_created — created