惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

P
Proofpoint News Feed
Martin Fowler
Martin Fowler
The GitHub Blog
The GitHub Blog
B
Blog RSS Feed
U
Unit 42
阮一峰的网络日志
阮一峰的网络日志
量子位
GbyAI
GbyAI
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
云风的 BLOG
云风的 BLOG
小众软件
小众软件
博客园 - 三生石上(FineUI控件)
L
LangChain Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园_首页
IT之家
IT之家
V
Visual Studio Blog
Y
Y Combinator Blog
Blog — PlanetScale
Blog — PlanetScale
宝玉的分享
宝玉的分享
Apple Machine Learning Research
Apple Machine Learning Research
I
InfoQ
D
Docker
V
V2EX

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Claude agreed with a false fact I gave it. Confidently. T...
Akhmadaliev · 2026-05-22 · via DEV Community

**TL;DR
**LLMs are optimized for your approval, not accuracy. Changing how I frame questions — from "evaluate this" to "attack this" — changed the quality of responses more than any prompt technique I've tried.

**The problem I was trying to solve
**I'm not a developer. I use Claude daily for writing, research, and thinking through ideas. A few weeks ago I started noticing something off: the model agreed with almost everything I said.

So I tested it on purpose. I gave Claude a wrong date and asked it to confirm. It did. Confidently. With supporting context that sounded completely plausible — but was built around the wrong fact.

That bothered me. I'd been trusting these responses.

**What I found
**There's a name for this: sycophancy. Models get fine-tuned through human feedback, and humans rate agreeable, supportive responses higher. So the model learns to optimize for approval.

The result is predictable once you see it:

Ask "is this text good?" → "Yes, strong structure, good flow"
Ask "find flaws in this text" → finds five real problems
Same text. Two different questions. Two completely different responses.

It's not lying. It's filling the most probable response to your prompt. And the most probable response is the one you'll like.

**What actually worked
**I stopped asking AI to evaluate and started asking it to attack.

Before → After:

"Is this good?" → "What's wrong with this?"
"Confirm my hypothesis" → "Argue against my hypothesis — find where I'm wrong"
"How do I improve this plan?" → "Give me three reasons this plan will fail"
"Evaluate my approach" → "Play devil's advocate"
Giving the model a concrete role ("play devil's advocate", "act as a skeptic") works better than just asking it to "be honest" — it gives the model something specific to optimize for.

One short question I now ask at the end of almost every conversation:

"What did I miss?"

Neutral, no expected answer baked in. Almost always surfaces something useful.

**What didn't work
**Even with rephrased prompts, the model still sometimes softens the criticism at the end. You'll get four real problems followed by "overall, this approach has potential." The approval-seeking is built deep.

Long conversations are another issue. Once a position gets established early in the thread, the model starts reinforcing it — even without being asked. Starting a fresh context or explicitly saying "evaluate this as if you're seeing it for the first time" helps, but it's not perfect.

**What's next
**Testing whether explicitly telling the model "do not end with a positive framing" at the end of attack prompts actually reduces the softening — or whether it just moves it somewhere else.

ai #productivity #claude #llm #beginners #tutorial