Stop Chasing '10x Engineers' – Your Team’s Real Superpower Is a Bulletproof System / 别再追捧「十倍效率工程师」了,团队真正的核心竞争力是完善的流程体系
I recently came across a thought-provoking piece that challenges the common tech industry obsession with "rockstar" employees, and it hit way too close to home. I think we've all seen those viral clips of someone doing a job at mind-blowing speed, or heard teams brag about their one genius engineer who carries the entire project on their back. It's easy to get dazzled by that kind of individual performance, but the article argues that this is actually a huge red flag for long-term team health, not a win.
大家想想看:如果团队的交付速度、代码质量全靠一两个核心成员撑着,那他们一旦请假、离职,整个项目是不是立刻就停摆?我自己之前待过的一个团队就踩过这个坑:我们有个核心开发特别擅长排查复杂 Bug,所有人遇到搞不定的问题都找他,结果他休了两周年假,整个项目的迭代直接慢了一半,上线时间硬生生拖了一周。这根本不是他的问题,是我们的体系出了问题——我们把「解决问题」的能力寄托在了个人身上,而不是落到流程里。

The core idea here is that a good system assumes people are fallible, rather than expecting every team member to be a perfect, disciplined expert who never makes mistakes. For example, instead of just telling people "don't push directly to the master branch", you set up repository rules that literally block direct pushes. Instead of hoping everyone writes good code, you add mandatory lint checks, type checks, and test coverage requirements to the PR pipeline, so bad code literally can't get merged even if someone makes a mistake. These aren't red tape – they're guardrails that make the team's output consistent no matter who's working on the project.
文章里举的那个React项目的例子也特别有意思:他们遇到了重复渲染的性能问题,本来最简单的解决方案是加一条规则,要求所有hook返回值都加memo,从根源上避免同类问题再出现,结果有个开发强烈反对,拿「过早优化」、React官方文档没推荐当理由,说这么做不合理。作者的观点很扎心:这个人反对的根本不是规则本身,他是怕有了这套规则之后,自己「擅长排查渲染问题」的独特价值就没了,毕竟没人希望自己的不可替代性被流程消解掉。

This doesn't mean we shouldn't celebrate individual talent, of course. High performers are great assets to have, but they should be the icing on the cake, not the whole cake. If your team can only function well when your top engineer is around, you don't have a strong team – you just have a strong engineer, plus a bunch of systemic risk. The end goal of any healthy team should be that if everyone got replaced tomorrow, the project could keep running smoothly, because all the knowledge, best practices, and guardrails are written into the system, not locked in people's heads.
最后想问问大家,你们的团队有没有过「依赖某个能人」的时刻?后来是怎么解决的?我觉得与其花大价钱到处挖「十倍工程师」,不如先沉下心把自己团队的流程体系搭好,毕竟后者才是别人挖不走、也不会随便流失的核心竞争力啊。