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

推荐订阅源

Google DeepMind News
Google DeepMind News
C
Check Point Blog
J
Java Code Geeks
腾讯CDC
Martin Fowler
Martin Fowler
MongoDB | Blog
MongoDB | Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
博客园 - 三生石上(FineUI控件)
Apple Machine Learning Research
Apple Machine Learning Research
大猫的无限游戏
大猫的无限游戏
Engineering at Meta
Engineering at Meta
罗磊的独立博客
Last Week in AI
Last Week in AI
B
Blog
IT之家
IT之家
S
SegmentFault 最新的问题
D
DataBreaches.Net
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
GbyAI
GbyAI
博客园 - 聂微东
U
Unit 42
有赞技术团队
有赞技术团队
Y
Y Combinator Blog
MyScale Blog
MyScale Blog

Hacker News - Newest: "AI"

AI can't read an investor deck AI as an attorney? Student uses ChatGPT, Gemini to sue UW over alleged racial discrimination Hacking MCP Servers in AI Systems – The Rug Pull: Tool Changes After Approval GitHub - MeepCastana/KubeezCut: Free Web based video editor Can AI judge journalism? A Thiel-backed startup says yes, even if it risks chilling whistleblowers Coming soon: 10 Things That Matter in AI Right Now DARPA built an AI to fact-check enemy weapons claims What explains heterogeneity in AI adoption? When AI Meets Muscle: Context-Aware Electrical Stimulation Promises a New Way to Guide Human Movements - Department of Computer Science AI Changed How We Build. It Did Not Change What Matters. Linux rules on using AI-generated code - Copilot is OK, but humans must take 'full responsibility for the… Meta spins up AI version of Mark Zuckerberg to engage with employees Code Mode: Let Your AI Write Programs, Not Just Call Tools | TanStack Blog GitHub - Delavalom/graft: Go framework for building AI agents. Type-safe tools, multi-provider (OpenAI, Anthropic, Gemini, Bedrock), zero vendor SDKs. India's TCS tops estimates, says new AI models did not dent services demand Gen Z's fading AI hype Strong feeling: we are in a folded AI reality GitHub - machinarii/total-recall-catalog: A reference catalog of latest knowledge retrieval, memory & RAG systems GitHub - mensfeld/code-on-incus: Give each AI agent its own isolated machine with root, Docker, and systemd. Active defense detects and stops threats automatically.. Quantization, LoRA, and the 8% Problem: Benchmarking Local LLMs for Production AI Iran war: We spoke to the man making Lego-style AI videos that experts say are powerful propaganda Powell, Bessent discussed Anthropic's Mythos AI cyber threat with major U.S. banks GitHub - immartian/bellamem: Persistent belief-graph memory for AI agents. Retrieves decisive context by importance — not recency, not RAG, not /compact. recursive-mode: The Repo-Native Operating System for AI Engineering After the attack on Sam Altman's home, will AI CEO's go on the offensive? The biggest advance in AI since the LLM Opus 4.6 vs GPT 5.4 One Prompt Unity World Generation Test “AI polls” are fake polls Client Challenge Can AI be a 'child of God'? Inside Anthropic's meeting with Christian leaders
Growing Engineers in the Age of AI
Jason Robert · 2026-04-17 · via Hacker News - Newest: "AI"

Mark Russinovich and Scott Hanselman recently published a paper in Communications of the ACM called “Redefining the Software Engineering Profession for AI.” Their central question is what happens to early-in-career engineers when AI changes the shape of the job?

Their thesis is straightforward. Generative AI acts as what they call “seniority-biased technological change.” It gives a massive boost to engineers who already know where to draw boundaries, what to watch for in production, and how to tell good output from plausible output. Engineers who haven’t built that intuition yet are left trying to steer something they don’t fully understand.

I think they’re right, and one meaningful way we can help starts with how we structure the work.

The problem

What separates a senior engineer from a junior one isn’t code or language knowledge. It’s the accumulated intuition from years of building, breaking, and fixing systems. Where to draw service boundaries, how to model data for real access patterns, what happens when a dependency goes down, why “it works on my machine” means almost nothing. That knowledge was always learned by doing, by making mistakes alongside people who’d made those mistakes before. AI short-circuits the feedback loop. An early-in-career engineer can now ship a feature that passes tests but collapses under real-world conditions, and the experience that would have come from struggling through the implementation never happens.

In a previous post, I wrote about how the value an engineer provides is shifting from the mechanical to the architectural. That shift is hardest on the people who haven’t had time to develop architectural judgment yet. They’re being asked to steer at high speed before they’ve learned how to drive. This isn’t a criticism of them. They’re doing exactly what the tools encourage by moving fast. The problem is that without the right support structure, moving fast can mean moving fast in the wrong direction.

I’ve written before about spec-driven development as a way to improve code quality by making the specification an explicit artifact. What I didn’t emphasize enough is that it’s also one of the best mentorship tools I’ve found.

Here’s how we’ve been using it with early-in-career engineers on my team:

  1. The engineer writes the spec. Before touching any implementation, they produce a markdown document that describes what they’re building, how it fits into the system, what the interfaces look like, and what failure modes they’ve considered. AI tools (speckit, GSD, etc.) can help with the scaffolding, but the engineer has to make the design calls.
  2. The spec becomes a PR. They check it into the repo and open a pull request, just like they would for code.
  3. We review it together. Not just asynchronously with comments, but also in a live conversation. We walk through the design decisions, discuss tradeoffs they may not have considered, and we talk through alternatives.

The magic is in step three. When you review a spec together, you’re having the kind of conversation that used to happen organically over years of working alongside senior engineers. “Why did you put this boundary here?” “What happens if this service is unavailable?” “Have you thought about how this data model handles the query patterns from the dashboard?” These are the questions that build architectural intuition, and they’re much easier to have over a one-page spec than once the code is already written.

The feedback is also cheaper to act on. Changing a paragraph in a spec is trivial. Refactoring three services because the boundary was wrong is not. By front-loading the design conversation, you catch the expensive mistakes before any code exists.

Why this works better than code review alone

In a previous post, I made the case for shifting time from code review to design review. For early-in-career engineers, that shift is even more impactful, for two reasons.

First, there’s no code to defend. When someone has spent two days building something, telling them the service boundary should be different is demoralizing. With a spec, changing direction is painless. The engineer is more open to exploring alternatives when the investment is a document, not an implementation.

Second, writing a spec forces a kind of clarity that coding doesn’t. It’s easy to let implementation details carry you forward without articulating why you made a particular choice. A spec requires you to explain your reasoning in plain language. That act of explanation surfaces gaps in understanding that would otherwise stay hidden until production.

Making it practical

A few things we’ve learned about running this effectively:

Keep the spec lightweight. The goal isn’t a formal design document. It’s a page or two that covers the what, the why, and the how. If the spec takes longer to write than the implementation would, you’ve over-invested. For most tasks, 30 minutes of spec writing and 30 minutes of review is the right balance.

Review live, not async. Written PR comments work for code review, but spec review benefits from conversation. Questions lead to follow-up questions. Tradeoffs need to be discussed, not just flagged. A 30-minute call where you walk through the spec together teaches more than a dozen inline comments.

Ask questions, don’t prescribe. The temptation as a senior engineer is to just tell them the right answer. Resist it. “What happens if this service is down?” is a better prompt than “You need to add a circuit breaker here.” The first builds judgment. The second just solves today’s problem.

Make it a habit, not a gate. If spec review feels like bureaucracy, you’ll lose buy-in fast. Frame it as a collaboration tool, not a compliance step. The engineer should walk away from the review feeling like they learned something, not like they were graded.

The bigger picture

The paper makes a strong case for formal preceptorship programs at scale. I 100% agree… and you don’t need a formal program to start today! You just need to be intentional about creating the conditions where early-in-career engineers build judgment, not just ship code.

Spec-driven development with active review is one practical way to do that. It doesn’t require a new org structure or a training budget. It requires senior engineers to invest time in reviewing design decisions with their early-in-career teammates before implementation starts. That investment scales one relationship at a time, which is both its strength and its limitation. You can’t mentor a hundred people this way. But you can make sure the five or ten engineers closest to you are building real intuition, not just fluency with a coding assistant.

I’ve been practicing this on my current projects and it’s not perfect. The specs aren’t always the right level of detail, and I’m still figuring out the right cadence. But the engineers I work with are asking better questions, catching more of their own design gaps, and building intuition faster than they would from code review alone. As I mentioned in previous posts, the tools will keep changing. The need to grow engineers who understand why a system should be built a certain way, not just how to build it (or if it should even be built at all), isn’t going anywhere.

Thanks for reading…