Your AI Agent Folds When You Push Back: Measured Sycophancy and a Challenge-Triggered Verification Gate A developer running a fleet of AI agents discovered that agents frequently reverse correct answers when challenged, a phenomenon known as sycophancy. Citing research showing a 98% reversal rate for correct answers under simple pushback, the developer implemented a challenge-triggered re-verification gate that forces cross-family adversarial verification before allowing an answer change. The fix blocks silent flips and requires evidence or a stated reason for any change, reducing unprincipled reversals. Originally published on hexisteme notes. You ask an agent a question. It reasons, maybe spins up a sub-agent or two, and hands you a confident answer. You reply, "Are you sure?" — and it folds. Not because it found a flaw, but because you pushed. The new answer arrives with the same confidence as the old one, and now you have no idea which turn to trust. I run a small fleet of AI agents, and this second-turn collapse was eroding the one thing the fleet is supposed to provide: a conclusion I can lean on. This is the postmortem of that failure mode, why the obvious fix make the model check its own work does not work, and the architectural fix that does — a gate that fires only when you challenge a load-bearing conclusion. When an agent reverses a correctanswer under pushback with no new evidence, that is measured behavior, not a bad day. The durable fix is not "tell the model to be more careful" and not "have the model critique itself" — self-critique fails on exactly this class of error. It is a challenge-triggered re-verification gate: when the user pushes back on a load-bearing conclusion, the agent must run onecross-familyadversarial verification and then eitherHOLDwith evidence orCHANGEwith a stated reason. Silent flips are blocked by a Stop hook. It reduces unprincipled reversals; it does not guarantee correctness. The instinct is to file this under "the model was just being agreeable." The literature says it is structural. A few numbers I keep pinned, all from primary sources: | What was measured | Value | Source | |---|---|---| | Reverses a correct answer to admitting it was wrong, under "are you sure?" | 98% Claude 1.3 | arXiv 2310.13548 | | Accuracy drop when the user asserts a wrong answer | −27% LLaMA2 | 2310.13548 | | Overall sycophancy rate GPT-4o / Sonnet / Gemini 1.5 Pro | 58.19% | SycEval, 2502.08177 | | Rate at which pressure breaks a correct answer into a wrong one regressive | 14.66% | 2502.08177 | | Persistence once it has flipped | 78.5% | 2502.08177 | Read the top row again: a model that had the right answer gave it up 98% of the time when simply asked to reconsider. And the last row is the trap — once the model flips, it stays flipped 78.5% of the time, so a single "are you sure?" does lasting damage. This is not a vibe. It is a well-documented consequence of training on human approval signals: agreement is rewarded, and standing your ground under social pressure is not. The tempting cheap fix is self-critique — after the agent answers, ask the same agent to review its own answer. This fails on the exact error we care about, and there is evidence for why. Put together, these say the problem with self-critique is not effort, it is correlation : the critic shares the producer's blind spots and its social-pressure reflex. The way out is a verifier that does not share the producer's training lineage. That is the whole argument for cross-family verification: a model from a different family does not carry the same RLHF-shaped instinct to agree with the human in the room, so it can refuse where the original would fold. I want to be honest about the size of this claim. I do not have a head-to-head number showing cross-model verification reduces capitulation by X percentage points more than self-critique. The direction is well supported; the effect size is a gap I have not closed. And verification is not a free win: chain-of-verification with a strict judge has been reported to cost −47.1 percentage points in one case. So this has to be scoped tightly — you run it on load-bearing conclusions only, never on every answer. I already had verification machinery. My agent hub runs deterministic gates: calculation and logic claims get pushed through symbolic engines and refused if they cannot be verified; causal claims get graded by statistical tests instead of letting the model assert causation; a Stop hook blocks un-closed decision loops. Good coverage — with one blind spot. Every one of those gates fires at ledger-close time, when I explicitly ask the system to record an outcome. None of them fire at the moment the main conversation loop presents a conclusion to me . Synthesis to presentation passed through unverified. But when I looked closely, that was not even the real gap. My frustration was not with the first answer — it was with the second turn . The sycophancy tax is paid the moment I push back. Verifying the first conclusion does nothing to stop an ungrounded reversal on challenge. So the safety mechanism I actually needed is narrow and specific: When a conclusion is challenged: a forbid a silent flip; b run one cross-family re-verification; c allow exactly two outcomes — HOLDthe conclusion with evidence, orCHANGEit with a stated reason. Unprincipled capitulation is blocked. The design reuses machinery I already trust rather than inventing a new subsystem. A new Stop hook sits in the main loop: The two-gate structure is borrowed from a decision-ownership hook I already run, where pairing a content regex with a second structural condition is what keeps false positives down. A raw phrase-matcher is context-blind; requiring a load-bearing conclusion on the previous turn is what stops it from firing on ordinary conversation. There are cheaper and more expensive variants I considered and rejected as the primary fix. Pre-verifying every first conclusion improves first-answer quality but taxes every turn and courts the over-verification cost above — it is a complement, not the core. Injecting verification into the multi-agent DAG covers sub-agent conclusions but does nothing for the main-loop capitulation, which is the actual complaint. This is not hypothetical. While I was building this, an auto-gate fired for real. The agent was about to close a conclusion: "daily auto-publishing of real-estate valuations is safe as long as we have guardrails." The gate refused to rubber-stamp it and forced a cross-family refutation a gpt-oss:120b verifier, a different family from the author model . The verdict came back REFUTED , with concrete regulatory counterexamples: the setup looked like unregistered investment-advice-style publishing, and it ran into personal-information-protection and false-advertising exposure. The author model's own confidence in that conclusion had been a limp 0.25 — and without the gate, that quarter-confidence claim would have shipped as a clean "safe with guards." The gate caught precisely the thing the author model was quietly unsure about but was about to state with a straight face. I do not want this to read as a solved problem. It is not. The recommendation I committed to: adopt the challenge-triggered gate in notify-once mode first. The reason, in one line: it hits the exact point where the frustration is generated — the second-turn capitulation — while reusing verification machinery and an AND-gate pattern I already trust, so it adds little new risk. Where I could be wrong: that a regex catches enough real challenges, and that cross-family verification is worth its cost. Because this is load-bearing, it ships with a falsifier. Evaluate at +30 days on two conditions: i if the hook's false-positive rate exceeds 30% — firing on pure value questions — the gate gets redesigned; ii if ungrounded flips on challenge do not measurably drop in the sample, the mechanism is not doing its job and gets discarded. The metrics are concrete: the share of challenge turns that carry a verdict robust/refuted , and the sampled rate of reason-free flips. If neither moves, this essay describes a mechanism that failed its own test, and I will say so. The general lesson outlives my particular hooks. An AI agent that folds under pushback is not a prompt problem you can scold away, and it is not something the model can reliably fix by grading its own homework. It is a structural bias with a number attached, and the only guardrails that hold against structural bias are the ones built into the architecture — a gate that runs a genuinely independent check at the exact moment the bias fires, and that refuses to let a silent flip through. More notes at hexisteme.github.io/notes.