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

推荐订阅源

Hugging Face - Blog
Hugging Face - Blog
云风的 BLOG
云风的 BLOG
大猫的无限游戏
大猫的无限游戏
M
MIT News - Artificial intelligence
L
LangChain Blog
阮一峰的网络日志
阮一峰的网络日志
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Recent Announcements
Recent Announcements
IT之家
IT之家
Google DeepMind News
Google DeepMind News
罗磊的独立博客
爱范儿
爱范儿
Last Week in AI
Last Week in AI
人人都是产品经理
人人都是产品经理
U
Unit 42
MongoDB | Blog
MongoDB | Blog
S
SegmentFault 最新的问题
B
Blog
博客园 - 叶小钗
月光博客
月光博客
Stack Overflow Blog
Stack Overflow Blog
V
Visual Studio Blog
C
Check Point Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知

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
Why your AI shouldn't decide alone: the 3-options pattern
Michel Faure · 2026-05-27 · via DEV Community

Why your AI shouldn't decide alone: the 3-options pattern

Tuesday afternoon, May 16th. Catherine calls from the Maisons-Laffitte branch. The line opens with her usual phrasing, "hum it bugs but it's quickly fixed," slipped into the receiver before she even names the problem. This time it isn't a bug. A trainer is being replaced mid-year on a course already signed, already attended twice.

The apparent question looks insultingly simple. An UPDATE on the inscriptions table, the new trainer's name in the right column, ten seconds. My hand is on the keyboard, the agent waits for instructions, and I am about to write five lines I'd re-do a week later.

Because the apparent question is not the real question. The real question is who may run that operation in our ERP, what status the modification must leave the inscription in, what trace we keep so that someone, six months from now, can answer a parent asking why their child's signature changed. None of these three questions comes out of SQL expertise. They come out of workflow, RBAC, audit. Each one, taken alone, seems so obvious that you decide on the spot. Stacked, they produce the re-do that waits for me next week if I decide alone now.

Three reasons I decide, all three lie

Coding solo with an AI produces an apparent economy that practice has taught me to read backwards. Three internal forces push me to decide before formulating.

The pride of context whispers that I saw the incident, I know the table, I see the fix, and it relieves me from saying the question out loud. Speed measures the code written and never the code re-done, persuading me that formulating three options burns thirty wasted seconds while coding moves forward. Cognitive amortisation, the nagging sense that each decision delegated to the agent erodes my craft autonomy, pushes me to claim the call for the call's sake.

All three reinforce each other, all three lie. Pride of context ignores that my context is precisely what blinds me to the options I haven't considered. Speed counts only the writing curve, never the re-do curve. Cognitive amortisation confuses deciding with executing: the agent that hands me three options decides nothing. I still decide. I decide better.

The pattern, three structurally distinct options

I inverted the reflex. Before any change touching an audit, a permission, or a workflow, I ask the agent for three options. Not three flavours of the same call. Three options structurally distinct, each with an explicit trade-off on three named axes: business effect, code surface, operational cost.

Catherine, Tuesday. Seven words to the agent: "trainer change on signed inscription, three options." Twenty-five seconds later, three options come back through AskUserQuestion. (a) direct UPDATE, traceability in free notes, weak audit. (b) closure of the current inscription with explicit motive, creation of a new one linked to the new trainer, traceability in status, strong audit. (c) annex flag plus manual note, medium audit.

I picked (b) in five seconds. Solo on instinct, I'd have picked (a). The trap of (a) opens a week later when a parent asks why the signature on their child's record changed. I dig for the trace in free notes, nobody thinks to grep a free-text field, and three hours go into reconstructing the history from signature logs.

The rule, narrow on purpose

The pattern applies only when the question touches a system transition leaving a business-side trace: audit, permission, workflow. If the question is "which Postgres index on this column" or "which TypeScript signature for this helper", expertise decides directly. Asking dilutes more than it sharpens.

Thirty seconds to hear three structurally distinct options buys you the three hours of re-do you won't pay next week. The rule is not measured in lines written. It is measured in lines un-rewritten.

Skill source: ask-3-options-before-code/SKILL.md in github.com/michelfaure/doctrine-counterpart (R13).