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

推荐订阅源

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: Ask HN

The New Window Delete ChatGPT Atlas Spyware Tell HN: Qwen Free Tier Is Discontinued Ask HN: SeedLegals Partnerships in London, worth it? Ask HN: How to highlight talent from untraditional backgrounds? Ask HN: We dont need a programming language now? Durable Object alarm loop: $34k in 8 days, zero users, no platform warning What if Time at the subatomic level has multiple arrows? How to add MidnightBSD Key to UEFI Secure Boot DBX? (Revoked and Forbidden Keys) Ask HN: What's your experience working at xAI as an AI tutor? Any engineers here with experience of clinical data standards? Ask HN: Who is using OpenClaw? Agent Skills for Software Test Automation Ask HN: Who needs contributors? Claude Code is thinking too much Ask HN: What Is the Big-O Order of a Jigsaw Puzzle? Ask HN: Stepping into a new role as a Senior, mentoring dos and dont's? Founder from Zurich heading to SF and Austin for the first time Hacker News No Manual Screenshots: I Built a Scalable Screenshot API Using Cloud Playwright Ask HN: Thought experiment: AGI giving us answers we don't like? Ask HN: I quit my job over weaponized robots to start my own venture 1% Vacancy, 81% Preleased: Where Midmarket Compute Deploys in 2026 Ask HN: Preferred pricing model for sound effects libraries? Copy of the email I sent to my undergraduate professors on Nov 30, 2025 Model API Performance | Hacker News Ask HN: Are open-weight LLMs the new offline encyclopedias? Valgrind 3.27 RC1 is out Claude Code OAuth down for >12 hours Ask HN: What's Better?–Tauri or Electron?
Implicit Knowledge Is a Liability
gruyaume · 2026-05-12 · via Hacker News: Ask HN

AI coders are very much like new employees. When you prompt them with a query they learn about the project as if it was their first day on the job. They load some information into their context. They summarize the README.md, the contributing guide, coding standards, and a lot more. In the best case, they complete the task as specified.

But at what cost? Regression. Unless you have a solid testing suite.

All engineering projects run on implicit and explicit knowledge. Explicit knowledge is text in and around the code base: documentation, code comments, tests, and the code itself. Implicit knowledge lives in people’s brains. For example, a team could have decided not to write an integration test for a niche and hard-to-harness behavior. They may know which part of the code handles that behavior and be careful about changing it through code reviews.

In the age of AI, implicit knowledge is a liability to minimize.

Rapid project development and reduced hands-on time in the code lead to code reviewers being less familiar with the code base and less able to act on implicit knowledge. Important regressions will slip through.

Testing has always been important as a way to catch regressions. With AI coding, it is now essential to test every supported behavior.

To develop reliable software at a fast pace in the age of AI, you must minimize implicit knowledge and transform it into strict, reliable, reproducible tests that act as a gate against regressions.

Even explicit knowledge expressed through code comments and documentation is often stale and can be ignored by AIs (and humans too!). There is a limit to what they can load into context. And you can’t control them. Those too should be replaced by tests.

The good news is that AI can help you write those tests.

The bad news is that you will need to supervise them scrupulously. To act as a gate against regressions, tests must validate behavior — the what, not the how. Test patterns like “AAA” and “Given-When-Then” remain the gold standard and best practices like “only test public APIs” are more relevant than ever. And that knowledge can’t be expressed through tests!

Supervising AI as it writes behavior tests may be the most efficient way to increase reliability of software projects.