747 和编码代理
747s and Coding Agents

原始链接: https://carlkolon.com/2026/02/27/engineering-747-coding-agents/

与一位747飞行员的对话引发了对职业发展本质的思考。这位飞行员精通他的技艺,但感叹经过数十年后,“没有进步”——他已经掌握了关于驾驶747的一切知识。这引起了作者(一位软件工程师)的共鸣,因为人工智能编码代理正在迅速改变他们的工作环境。 这些代理最初被用作高级搜索工具,现在通常在极少的人工干预下完成整个功能。虽然提高了生产力,但这种转变带来了一个挑战:与传统编码不同,依赖人工智能并不能培养对系统和问题解决的相同深度理解。作者发现,随着每个任务的完成,他们学到的东西越来越少,可能面临着与飞行员停滞不前的相似的未来。 尽管承认人工智能辅助的好处和必然性,作者强调了继续重视基础知识的重要性。提示代理很容易,但真正的成功依赖于*理解*问题领域——随着人工智能处理更多实现工作,这项技能正变得可选。他们建议有意识地练习手工编码,以保持和建立这种关键的专业知识。

黑客新闻 新 | 过去 | 评论 | 提问 | 展示 | 招聘 | 提交 登录 747 和编码代理 (carlkolon.com) 9 分,由 cckolon 1小时前发布 | 隐藏 | 过去 | 收藏 | 1 条评论 帮助 flyinglizard 18分钟前 [–] 这就是我至今仍未在工作中采用代理,而是坚持使用半手动流程,借助aider的原因。这是我能保持代码库所有权的唯一方式。也许这会改变,因为代码所有权将不再具有任何价值,但我感觉我们还没有到那一步。回复 指南 | 常见问题 | 列表 | API | 安全 | 法律 | 申请YC | 联系 搜索:
相关文章

原文
747s and Coding Agents

A couple years ago, I was on the way back from a work trip to Germany. I had been upgraded to business class, and I sat next to a Belgian 747 pilot, probably in his fifties or sixties. We talked a fair bit about our careers. I had left the Navy and started professionally programming less than a year before. He had been a pilot since shortly after graduating university, and had flown the 747 for about twenty years. He had studied mechanical engineering at school, and he told me in great depth about the variable geometry jet turbines in modern aircraft, which could remain efficient across a wide altitude range.

Variable stator vanes in a modern jet engine

I expressed some jealousy about how well suited he was to his job. Clearly he was a geek for aircraft, and even though most airlines don’t fly the 747 anymore, it is an incredible machine. He agreed that it was a privilege to fly the plane, but said wistfully:

In this job, after a while, there’s no improvement. You are no better today than you were yesterday.

He said that by now, he knew the 747 about as well as a pilot could. In fact, he sometimes wished he had become an engineer or designer of airplanes, so that he could learn new things as a core part of his job. Then he said:

You are lucky that your job is like that.

Since that flight, my job has changed a great deal. Coding agents can do a large portion of what I previously considered my work. I’m one of the last people who should be upset about this, since I work at an AI lab and stand to gain a great deal if AI follows through on its economic promise. Still, it has changed how I solve problems, and at times I feel more like a pilot than an engineer.

In the past, when I fixed a bug or implemented a feature, I would have to spend a minimum amount of effort understanding the situation. For example, to add pagination to this website, I would read the Jekyll docs, find the right plugin to install, read the sample config, and make the change. Possibly this wouldn’t work, in which case I would Google it, read more, try more stuff, retest, etc. In this process it was hard not to learn things. I would walk away from the problem with a better understanding of how the system worked. If I had to implement the feature again, I would be able to do it faster and more easily.

Once LLMs started getting good at coding, I would occasionally ask them for help at the beginning of this process, mostly replacing search engines. If I hit an error, I would copy and paste it into a chatbot to see what it said before trying hard to understand it (often, before reading it). This didn’t replace critical thinking, though, since I would still need to learn and plan to implement the change.

With the AI coding agents of the last few months, though, things are different. Often the agent can implement a whole feature end-to-end, with no involvement from me. Now when I need to make a change to the codebase, I don’t start by trying to understand. Instead, I see if my coding agent can “one-shot” the problem, and only step in if it seems to be failing. This happens less and less, and the features that I trust agents with have become bigger and bigger.

I believe in coding primarily as a means to an end. Coding agents have allowed me to do much more than before, so for the most part I am happy with them! But I’ll admit there is also something bothersome about turning features over to AI fully.

my productivity over the last couple years in github commits

I do not build skills or knowledge as quickly this way. If I build a feature with a coding agent and then have to do it again, I won’t be any faster the second time. It’s possible to imagine writing code with AI for twenty years and not being much more skillful at the end of it. There’s no improvement.

If I do have to step in and save the LLM, I often become lost as well. All of a sudden, I am reading someone else’s code. Rather than gradually coming to terms with a solution to a problem, I am presented with the solution wholesale—only, it’s a little bit wrong. As LLMs handle bigger tasks for me, this gets worse. My only saving grace is that I will do it less often.

You might say that the new, real skill is prompting agents (archived), but I don’t believe that. Prompting is easy and will only get easier. Hard knowledge about programming and the problem is what helps you make good design decisions, so this knowledge is the most important factor determining whether your coding agents are successful. Developing this knowledge is becoming optional.

Some people will probably respond to this by saying (snottily) that I should read the code that my agents produce, rather than rely on them blindly. I do read the code, but reviewing code is very different from producing it, and surely teaches you less. If you don’t believe this, I doubt you work in software.

Coding agents are here to stay, and you’re a fool if you don’t use them. Still, I think you’ll use them most successfully if you understand the domain in which you’re working. This used to be an essential byproduct of programming, but that’s not the case anymore. To this end, maybe it’s a good idea to write a minimum amount of code by hand as an educational task, rather than a productive one, or to try to write the solution to a problem yourself, and only compare with the LLM once you’re confident your answer is correct.

联系我们 contact @ memedata.com