Engine suspends on every tool even when require_approval:false — non-interactive callers get a silent no-op that reports tools_used #125
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Found 2026-08-06 by measurement, while wiring the July
AgentAcceptanceHarnessinto the round-9.1 gate — not by reading code.The shipped brain suspends on every tool call even when the client explicitly sends
require_approval: false. Observed response to an agentic send withrequire_approval:false:…with an empty workspace — nothing executed. The caller is expected to drive an approval loop it explicitly opted out of.
Why it matters beyond the harness: any non-interactive caller (test rig, routine/automation, dispatch surface, CI) that sets
require_approval:falsegets a silent no-op that looks like a completed turn —tools_usedis populated, so a naive caller reports success while nothing happened. This is the false-receipt shape neuron#79/#100 set out to kill, arriving from the consent side instead.Context that makes it surprising:
9a6014d("honor require_approval — the pause contract, implemented") is in this brain's lineage — the round-9 build ismain+ 7 commits and contains it. So either the flag is not read on this path, or the pause contract's semantics deliberately ignore it and the docs/callers disagree. Worth your read before anyone "fixes" it in the wrong direction.Evidence: round-9 packaged brain, sha256
15cf7d1b…, booted on a scratch HOME + free port from the DMG-extracted binary. The harness now drives the approval loop (bounded at 12 rounds) as a workaround so the suite can run at all; that workaround should be deleted once this is settled.What done looks like:
require_approval:falseexecutes read-tier/in-workspace tools without suspending, or the flag is formally removed and every caller updated — but not the current silent middle.