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

推荐订阅源

H
Help Net Security
G
Google Developers Blog
aimingoo的专栏
aimingoo的专栏
博客园 - 聂微东
酷 壳 – CoolShell
酷 壳 – CoolShell
小众软件
小众软件
Stack Overflow Blog
Stack Overflow Blog
美团技术团队
博客园_首页
T
Tailwind CSS Blog
博客园 - 三生石上(FineUI控件)
B
Blog
D
DataBreaches.Net
腾讯CDC
C
Check Point Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
U
Unit 42
月光博客
月光博客
V
V2EX
Vercel News
Vercel News
T
The Blog of Author Tim Ferriss
The Cloudflare Blog
博客园 - 叶小钗
Y
Y Combinator Blog

Hacker News

GitHub - SeanFDZ/macmind: Single-layer transformer in HyperTalk for the classic Macintosh Show HN: Agent-cache – Multi-tier LLM/tool/session caching for Valkey and Redis Bonsai 1-bit WebGPU - a Hugging Face Space by webml-community Moving a large-scale metrics pipeline from StatsD to OpenTelemetry / Prometheus GitHub - Nightmare-Eclipse/RedSun: The Red Sun vulnerability repository GitHub - SethPyle376/hiraeth: Local AWS emulator focused on fast integration testing, with SQS support, SQLite-backed state, and a debug-friendly web UI. GitHub - macOS26/Agent: Any AI, replaces Claude Code, Cursor, OpenClaw. Over 18 LLM providers (Claude, OpenAI, Gemini, Ollama, Zai, HF, Qwen) wired into a native Mac app that writes code, builds Xcode projects, bumps versions, manages git, automates Safari, use AppleScript, JS or Accessibility, extend Agent! w/ MCP Servers, run tasks from your iPhone via Messages. YouTube now lets you turn off Shorts I Made a Terminal Pager Burgers | マクドナルド公式 Commands — HackerNews CLI documentation ChatGPT for Excel PiCore - Raspberry Pi Port of Tiny Core Linux Live Nation illegally monopolized ticketing market, jury finds Google Broke Its Promise to Me. Now ICE Has My Data. Founding Engineer at Adaptional | Y Combinator CRISPR takes important step toward silencing Down syndrome’s extra chromosome GitHub - saffron-health/libretto: The AI toolkit for building reliable browser automations US v. Heppner (S.D.N.Y. 2026) no attorney-client privilege for AI chats [pdf] Retrofitting JIT Compilers into C Interpreters IPv6 – Google The Accursèd Alphabetical Clock Cybersecurity Looks Like Proof of Work Now Fragments: April 14 Cal.com Goes Closed Source: Why AI Security Is Forcing Our Decision | Cal.com - Scheduling Software for Online Bookings Laravel raised money and now injects ads directly into your agent When moving fast, talking is the first thing to break Too much Discussion of the XOR swap trick – Heather Cafe Introduction to Spherical Harmonics for Graphics Programmers The Grand Line
Let the AI cook | ivan.codes
thecupisblue · 2026-05-21 · via Hacker News

I keep seeing posts where somebody walks through the elaborate workflow they figured out for getting AI to write production code, and the workflow gets way more credit than it deserves. The two things doing the work are the stack the model is writing into and whatever the developer has built up over their career: taste, pattern recognition, a feel for which way the code wants to go. Everything on top of those two is decoration.

What I hear from people trying to follow those workflows usually sounds something like this:

Spent an hour on this and Claude still couldn't get it right. I gave it the whole file, listed every edge case, told it exactly which function to touch, specified the naming convention. It still messed it up.

In cases like this the prompt itself is the problem, because each constraint added to it narrows what the model can do, and by the time you've stacked five or six the field of view is small enough that the model has to thread a needle through whatever assumptions you packed in along the way. Any time one of those assumptions is wrong, and at least one usually is, the output looks like a failure even though the model was doing exactly what you asked.

My version is usually two turns. The first one points the agent at context I already have locally, the second one says what to build:

Both work because the priming step alone ticks a bunch of boxes the over-prompter is trying to hit one at a time. Once the agent has read the reference it naturally matches the conventions, the naming patterns, the way functions are structured, the way errors get handled, all the stuff people otherwise try to spell out constraint by constraint.

Once you accept the model can write the code, you're left with a choice about how to work with it. That's where most devs shoot themselves in the foot. Letting the model run feels like giving up control, while inventing a workflow feels like the responsible move, even when it produces worse work in more time.

The reason that feels like losing control runs deeper than the code itself. Devs have spent twenty years tying their sense of worth to what they produced, the cleverness of a solution, the abstraction nobody else saw, the late-night fix that worked on the second try, all of which was how the industry measured you and how you measured yourself. When a model arrives that can produce the artifact for you, often a better one, inventing a new layer of work it can't do yet is how you keep being at the center of things, but the layer keeps shrinking, and the people who can't let go end up spending more and more of their time on ceremony that exists so they can still feel essential.

What's left for the developer is the harder part of the job, which is picking the stack, having the taste, and catching the moment the output starts to drift, and the elaborate process layered around all of that is mostly busywork that lets you feel productive while you avoid the harder, vaguer thing.

Let the AI cook.