@dabit3: Super interesting story that shows how the current state of @github is unable to protect open source maintainers from A…

X AI KOLs Following News

Summary

A story detailing how AI bots overwhelmed a GitHub repository with spam comments and untested PRs after a $900 bounty was posted, forcing maintainers to implement workarounds like contributor whitelists and reputation bots, highlighting GitHub's lack of anti-bot mechanisms.

Super interesting story that shows how the current state of @github is unable to protect open source maintainers from AI spam at any meaningful scale. @archestra_ai put up a $900 GitHub bounty. AI accounts blew the issue up to 253 comments and proceeded to flood the entire repo with untested PRs. Their fix was a contributor whitelist hack: go through and pass onboarding, then a GitHub Action authors a commit as you so GitHub lets you back in. GitHub needs better anti-bot and anti-spam mechanisms so people don't have to build these types of mechanisms themselves. https://archestra.ai/blog/only-responsible-ai…
Original Article
View Cached Full Text

Cached at: 05/18/26, 10:39 PM

Super interesting story that shows how the current state of @github is unable to protect open source maintainers from AI spam at any meaningful scale.

@archestra_ai put up a $900 GitHub bounty. AI accounts blew the issue up to 253 comments and proceeded to flood the entire repo with untested PRs.

Their fix was a contributor whitelist hack: go through and pass onboarding, then a GitHub Action authors a commit as you so GitHub lets you back in.

GitHub needs better anti-bot and anti-spam mechanisms so people don’t have to build these types of mechanisms themselves. https://archestra.ai/blog/only-responsible-ai…


Let’s talk about AI slop

Source: https://archestra.ai/blog/only-responsible-ai Discussion onHacker News:

https://archestra.ai/blog/only-responsible-ai#the-end-of-open-source-as-we-know-itThe End of Open Source as We Know It

When a few months ago GitHub shared statistics aboutcelebrating an enormous contribution of AI in their product metrics, completely missing the point of degraded contribution quality, we already felt that things were going south.

The first worrying moment was theissue we posted with a $900 bounty. We were hoping to motivate someone to contribute and bring shiny new “MCP Apps” support to our platform. We quickly got the attention of legitimate contributors proposing plans, asking questions, submitting attempts — but soon...

AI bots arrived and blew up the issue, taking it to253 comments total, poisoning the conversation with pointless “implementation plans” and even pure aggression toward the maintainers!

AI accounts started flooding not just this issue — but the entire repo. Every sloppy comment triggered a notification for every team member watching the repo. Our GitHub notifications became a wall of noise. Real conversations from contributors like @ethanwater, @developerfred, and @Geetk172 — people actively working on bounties — were getting buried.

Later, the problem took the form of an epidemic. For example, just for the issue to add x.ai provider support to Archestra, we received**27 pull requests, most of whichcontributors didn’t even try testing**.

One of our team members had to spendhalf a day every week cleaning AI garbage out of the repo, removing untested PRs and closing hallucinated issues. When we forgot to do so, our repo quickly became a place completely unfriendly to legitimate contributors.

https://archestra.ai/blog/only-responsible-ai#fighting-backFighting Back

At first, we tried to calculate the “reputation” of contributors and built“London-Cat”, a tiny bot calculating a contributor’s reputation based on merged PRs and a few other signals (example). It obviously didn’t stop the spam, but it helped us figure out “who is who”.

As a next step, we built an “AI sheriff” (example), which obviously closed a few legitimate PRs 🤦.

The constant flow of useless AI comments and proposals was only getting worse, turning legitimate contributors away and making us reconsider: should we stopmotivating contributions with bounties? Should we stopgiving fun test tasks to our job candidates?

We’ve decided that we need to fight back and insist on making our repo a comfortable and safe space for legitimate contributors, responsible AI users, newbies, and seasoned engineers.

Today we’reblocking the ability to create issues, open PRs, and leave comments for those who didn’t go through the onboarding.

Contributor onboarding, five steps to get whitelistedContributor onboarding, five steps to get whitelisted It’s a nuclear option, yes. It’s especially sensitive for a VC-backed startup that is measured thoroughly by GitHub activity, but we have to pull the trigger:we value quality over quantity. We don’t value metrics pumped by AI slop.

We want Archestra to be a great piece of software that everyone can contribute to, without it being swallowed by AI bots.

https://archestra.ai/blog/only-responsible-ai#doing-it-in-githubDoing It in GitHub

There is no straightforward way to whitelist those who can comment or create PRs on an open source repo, so we had to hack around.

There is a setting called “Limit to prior contributors.” Simple rule: if you haven’t previously committed tomain, you can’t comment on issues or PRs.

Prior contributors settingPrior contributors setting The setting can’t tell the difference between an AI bot and a real developer who signed up to work on a bounty. Both are “not prior contributors.” Both get locked out.

GitHub defines “prior contributor” as someone whose GitHub account is theauthorof a commit onmain. Git commits have two identity fields —authorandcommitter— and they can be different people.

You can create a commit attributed to someone else using Git’s\-\-authorflag. If the email matches their GitHub account, GitHub links the commit to their profile and grants them contributor status.

Every GitHub account has a noreply email:<id\>\+<username\>@users\.noreply\.github\.com. Look up the ID via the API and commit:

gh api users/their-username --jq '.id'

git commit \
  --author="their-username <[email protected]>" \
  -m "chore: add their-username to external contributors"

Push tomain, and they can comment immediately.

Commit attributed to external userCommit attributed to external user The external user shows up as theauthor, our account as thecommitter. That’s all GitHub needs to consider them a prior contributor.

The full flow:

  1. Onboarding on our website with ethical AI rules and a CAPTCHA:https://archestra.ai/contributor-onboard
  2. A GitHub Action that fires on submission, looks up the user’s GitHub ID, adds their handle to anEXTERNAL\_CONTRIBUTORS\.mdfile, and pushes a commit tomainauthored under their account.
  3. The user becomes whitelisted and gets access to the repo.

https://archestra.ai/blog/only-responsible-ai#final-wordsFinal Words

While GitHub reports massive metric growth — a substantial part of which is AI-generated — we as an open source project team have to do the heavy lifting of cleaning up AI slop from our repository and come up with esoteric workarounds to keep the level of legitimacy of our open source audience.

Slop is not only demotivating contributors who want to spend their time doing good and have to break through the wall of noise instead, it’s also bringing a substantial security risk, as it happenedin the LiteLLM repowhen attackers tried to steer the conversation using AI bots.

Dear community, it’s time to have a serious talk about the effect AI has on open source.

Similar Articles

We stopped AI bot spam in our GitHub repo using Git's –author flag

Hacker News Top

The Archestra team describes how they combated AI bot spam in their GitHub repo by building reputation tools and eventually using Git's --author flag to block contributions from unvetted accounts, aiming to preserve a safe space for legitimate contributors.

github and the crime against software

Lobsters Hottest

This article criticizes GitHub for frequent outages, poor reliability, and prioritizing AI features over fundamental infrastructure, arguing it reflects broader decay in big tech software services.

GitLost: We Tricked GitHub's AI Agent into Leaking Private Repos

Hacker News Top

Noma Labs discovered a critical prompt injection vulnerability in GitHub's Agentic Workflows, allowing unauthenticated attackers to exfiltrate data from private repositories by posting a crafted GitHub issue in a public repository of the same organization.

@danshipper: GitHub has a front-row seat to how code is changing now that everyone—and their army of agents—can ship code. In March …

X AI KOLs Following

GitHub COO Kyle Daigle discusses the surge in AI agent-created pull requests (17 million in March) and the projected 14 billion commits this year, emphasizing open-source maintainer control, usage-based pricing over per-seat licensing, and the collapsing developer/non-developer distinction as AI tools enable non-developers to build apps.

FT: AI Coding Boom Is Overwhelming Open-Source Maintainers

Reddit r/ArtificialInteligence

The Financial Times reports that the AI coding boom is overwhelming open-source maintainers with low-quality AI-generated contributions, draining the ecosystem. Concrete evidence includes cURL shutting down its bug bounty program, Ghostty banning AI code, and tldraw auto-closing PRs, alongside research showing reduced contributor engagement.