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

推荐订阅源

A
About on SuperTechFans
有赞技术团队
有赞技术团队
人人都是产品经理
人人都是产品经理
月光博客
月光博客
美团技术团队
博客园 - 聂微东
阮一峰的网络日志
阮一峰的网络日志
WordPress大学
WordPress大学
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
博客园_首页
爱范儿
爱范儿
G
Google Developers Blog
aimingoo的专栏
aimingoo的专栏
T
The Blog of Author Tim Ferriss
MongoDB | Blog
MongoDB | Blog
小众软件
小众软件
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
IT之家
IT之家
I
InfoQ
B
Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
大猫的无限游戏
大猫的无限游戏
T
Tailwind CSS Blog
F
Fortinet All Blogs

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
Single-Modal LLMs Have a Blind Spot. Here's How to Fix It.
YuhaoLin2005 · 2026-06-27 · via DEV Community

YuhaoLin2005

If you use Claude Code, Cursor, or any AI coding agent, you know the problem: you ask the AI to review its own work, and it says "looks good." Every time.

The AI isn't being lazy. It's sharing the same mental model that produced the code. It literally can't see what's wrong — the blind spots are baked in.

Why "Review this as a senior engineer" Fails

Generic role-playing produces generic findings. The AI fills in what it thinks a senior engineer would say, which is usually:

  • "Consider adding error handling"
  • "Maybe add more comments"
  • "The variable name could be clearer"

Useful? Sometimes. But it misses the real bugs — the ones a human reviewer with a genuinely different perspective would catch.

What Actually Works: Named-Persona Review

Here's the method. It takes 5 minutes and costs nothing.

Step 1: Pick three named people, not generic roles.

Instead of Use
"Review as a security engineer" "Review as Linus Torvalds"
"Check for maintainability" "Check as Ken Thompson"
"Think about the user" "Think as Steve Jobs"

Why? Because Linus Torvalds has an actual documented philosophy: "Good taste is when the special case disappears. Eliminate the edge case by changing the data structure." That produces different findings than "check for security."

Step 2: Search for their real philosophy before role-playing.

Search: "Linus Torvalds engineering philosophy code review". Take 60 seconds per person. Extract 3-5 actual criteria from their documented words. Now role-play.

Step 3: Each person MUST find at least one issue.

No exceptions. If Ken Thompson finds nothing wrong with your code, you're not thinking like Ken Thompson. Go back and look harder.

Step 4: Run the Feynman check.

After the review, ask: "Would this person actually say what I just said, or am I projecting?" Feynman's actual rule: "The first principle is that you must not fool yourself, and you are the easiest person to fool."

Recommended Starter Pack

For your first try, use these three:

  1. Linus Torvalds — Data structures, logic, correctness. Search for "good taste."
  2. Ken Thompson — Architecture, API design, simplicity. Search for "do one thing well."
  3. Steve Jobs — User experience, first impressions, clarity. Search for "design is how it works."

Two engineers + one product person. Five minutes. You'll find bugs you'd never catch reviewing as yourself.

Why This Works (The Science)

de Bono's Six Thinking Hats (1985) established that parallel multi-perspective thinking produces better decisions than single-perspective analysis. Kahneman's Thinking, Fast and Slow (2011) showed that forcing System 2 (analytical) thinking overcomes the biases of System 1 (intuitive).

Named-persona review is a System 2 forcing function. By grounding each perspective in real, searchable philosophy, it prevents the AI from defaulting to generic "looks good" mode.

This is especially valuable for single-modal LLMs — models that can only process text. They lack the diverse sensory input that helps humans notice different things. Multi-perspective review compensates for that gap.

Try It Now

Take any PR, code review, or document you're working on. Paste this prompt:

Review the following using Named-Persona Adversarial Review:

PERSONA 1: Ken Thompson (Unix philosophy)
- Search: "Ken Thompson Unix philosophy do one thing well"
- Find: 3-5 criteria from his actual words
- Review the code. MUST find >= 1 issue.

PERSONA 2: Linus Torvalds (Linux/git)
- Search: "Linus Torvalds good taste code review"
- Find: 3-5 criteria from his actual words
- Review the code. MUST find >= 1 issue.

PERSONA 3: Steve Jobs (Apple)
- Search: "Steve Jobs simplicity design principles"
- Find: 3-5 criteria from his actual words
- Review the code from a user's perspective. MUST find >= 1 issue.

OUTPUT: Structured report with CRITICAL/WARNING/NOTE findings.
PROMOTION: Issues caught by 2+ personas get severity upgrade.
HONESTY CHECK: Would these people actually say this?

<your code here>

That's it. You just ran a multi-perspective review. No API keys, no agents, no cost. Just better quality.

Go Deeper

  • Named-Persona Adversarial Review — Full Claude Code skill
  • open-source-flywheel — Methodology for turning personal tools into contributions
  • de Bono, Six Thinking Hats (1985) — Theoretical foundation
  • Kahneman, Thinking, Fast and Slow (2011) — Cognitive science backing