今天的公关垃圾信息看起来就像 21 世纪初的垃圾邮件。
PR spam today looks like email spam in the early 2000s

原始链接: https://www.greptile.com/blog/prs-on-openclaw

来自 Greptile 的 Rahul 以 OpenClaw 代码仓库为例,分析了 AI 生成的拉取请求(PR)激增的现象。当 OpenClaw 的 PR 数量从每周两个暴增至 3400 个时,由于充斥着大量低质量的 AI 生成内容,其合并率从 48% 暴跌至 9.3%。 Rahul 指出了开源开发中三个关键性的转变: 1. **信誉的需求:** 就像早期的电子邮件垃圾邮件一样,AI 贡献带来的低成本促使人们需要基于信任的过滤机制。项目方正转向基于身份的系统(例如 Mitchell Hashimoto 的“Vouch”),以优先考虑可信的贡献者。 2. **思维的同质化:** 当所有贡献者都使用相同的 AI 代理和提示词时,“林纳斯定律”(人多足以捉虫)将受到威胁。独立提交的内容正变得越来越冗余且雷同,这削弱了开源所必需的思想多样性。 3. **深度理解的价值:** 数据显示,复杂的重构代码合并率为 35%,而新功能仅为 9%。需要深度架构见解的贡献表现远优于 AI 生成的新功能。 归根结底,尽管 AI 实现了前所未有的速度,但开源的未来取决于能否开发出新的身份验证基元,并奖励 AI 无法独自复制的人类“大师级构建者”的专业知识。

```Hacker News 新闻 | 往期 | 评论 | 提问 | 展示 | 招聘 | 提交 登录 今天的公关垃圾邮件看起来就像 2000 年代初的电子邮件垃圾邮件 (greptile.com) 10 分,作者:dakshgupta,1 小时前 | 隐藏 | 往期 | 收藏 | 1 条评论 Retr0id 7 分钟前 [–] 也许我们应该省去中间商,让人们可以轻松地向开源项目捐赠代币积分,并让维护者决定如何使用它们。回复 指南 | 常见问题 | 列表 | API | 安全 | 法律 | 申请 YC | 联系 搜索: ```
相关文章

原文

I'm Rahul, and I work at Greptile, where we build AI agents that review pull requests. Greptile reviews PRs for OpenClaw which became the fastest-growing repo in GitHub history almost overnight. That gave us a front row seat to something strange.

Last December, OpenClaw was getting two pull requests a week. By February, that number jumped to 3,400/week. Before the spike, ~48% of PRs got merged; after, fewer than 9.3% of PRs got merged.

Many of those PRs were low-effort slop which were often generated by people's AI coding agents. For example, one contributor submitted 106 PRs in a single day, with the median time between submissions being three seconds.

In many ways, openclaw/openclaw offers us a preview of what the future of open source contribution may look like. Here are three observations:

PRs will require sender reputation

PR spam today looks like email spam in the early 2000s.

When I first looked at the OpenClaw data, the pattern reminded me of email. In 2000, the ILOVEYOU worm infected 45 million computers in 24 hours because the cost of sending email approached zero and people trusted the platform. As a result, people were receiving a much higher volume of emails, and some of them were malicious. Those same parameters apply to PRs today.

The first fixes are similar: blocklists to manage volume, and confidence-based filters and reputation infrastructure to catch bad actors. Today, whether your email reaches its recipient's inbox comes down to two things: who you are, and your sending history.

Contributors on OpenClaw are already being filtered by their reputation: 8.2% merge rate for first-timers, 10.3% for contributors with 2-5 PRs, 18.6% for 5+.

Mitchell Hashimoto created and maintains Ghostty, one of the most popular open source terminal emulators. As the project gained momentum, people submitted such a high volume of AI-generated PR slop that he needed to limit AI-generated contributions.

A week later, he released a solution: Vouch, a trust management system for open source contributors. Unvouched users can't contribute, and bad actors get explicitly flagged. While Vouch is project-specific for now, Mitchell's vision is for trust decisions to eventually ripple across projects that share similar values. Vouch is the open source equivalent of a sender reputation score. (Worth noting: while Vouch was working well for Ghostty, Mitchell decided to take Ghostty off GitHub.)

More contributors won't help if they all think the same way

Linus Torvalds has a famous line: "Given enough eyeballs, all bugs are shallow."

Having more eyes on the same problem brings diverse perspectives. Different people use software differently, encounter different bugs, and approach fixes in novel ways.

That rule might not hold when everyone converges on Claude / Codex / Cursor / Devin etc. In OpenClaw:

  • 4 contributors submitted PRs with the exact title "feat(web-search): add SearXNG as a search provider." They were 4 of 10+ people who independently tried to add the same feature.
  • 6 people independently fixed the same Brave Search locale bug. 2 submitted PRs with identical titles 94 minutes apart.
  • 5 people independently found the same timeout deadlock in the agent runner.

There are more eyes on OpenClaw than ever, but their perspectives are also being filtered by AI coding agents. If most contributors use the same AI coding agents with the same prompts, then their contributions will resemble each other as well.

The promise and advantage of open source has been diversity of thought. Linus's law only holds if the underlying thinking remains diverse too. A contributor who really studies a codebase will prompt differently than one who doesn't.

What's actually getting merged

In the OpenClaw PR data, features have a 9% merge rate, while refactors merge at 35%.

The contributions requiring a deep understanding of the existing codebase outperform novel feature contributions by nearly 4x. It's the common adage these days; the thinking matters a lot more than the typing. The data backs it up.

For example, the way claude-mem maps Claude Code's hook-captured tool stream into its own resumable Agent SDK observer session is a non-obvious architectural choice that requires a deep understanding of both systems. A software developer who understood this decision would be able to distill it into a checklist, which would become the prompt that makes the agent's output significantly better. An agent prompted to "build a memory system" wouldn't be able to achieve that on its own.

Until 200 years ago, the people who designed buildings also constructed them. They were known as master builders. As construction advanced, that role split into two crafts: architecture and construction. The analogy to software isn't clean. Architects still need to know how buildings stand up. But it points at something real: the contributions that survive review are increasingly the ones an agent can't do alone, the calls that require deep understanding of an existing system, not novel construction.

So, what's next?

OpenClaw went from nothing to a real world Jarvis in a few short months. One person, along with a strong community, was able to build at a pace that wasn't possible a year ago. That's pretty special.

The open source community can build faster than ever. The problems introduced by this speed will need better primitives in identity, reputation, and how we validate contributions, which will all be built. Open source has solved harder problems before.

联系我们 contact @ memedata.com