
TL;DR
AutoGPT's founding AI engineer published the gates that keep an open source repo sane when agents submit the majority of pull requests: enforced PR templates, AGENTS.md placement, skills that fire on trigger phrases, a CLA as a human detector, and a commit-SHA rule that kills fake review resolutions. GitHub published the playbook August 12, and the details are sharper than the headline.
GitHub published the AutoGPT maintainer playbook on August 12, and it is the most concrete account yet of what open source maintainership looks like when agents, not humans, produce most of the pull requests. Nicholas Tindle, founding AI engineer at AutoGPT, walks through the repo-level gates that keep a 180,000-star project reviewable when "a big chunk" of roughly 150 open PRs are written by agents. AutoGPT is on its third version of the instruction files.
The novelty is not the ideas, it is the shape of the system: the maintainer stopped trying to persuade agents to be good, and built the repo so the only way through the door is the way that works for him. As Tindle puts it, "It's basically somebody else paying for your compute" - if a contributor wants to spend tokens improving your project, let them, but make the contract explicit.
The playbook is a stack of small, mostly unremarkable rules that compound:
AGENTS.md and point the Claude files at it. AutoGPT's AGENTS.md sits beside the code it governs, because agents read what is in front of them at the directory level, not what a wiki tells them to find.test PR skill that installs an agent browser, boots the app, and executes the change. The agent set out to fill in a checkbox and ended up running the code. The team "almost never" gets PRs that do not work anymore.pr-address skill declares the only valid sequence: fix, commit, push, reply, then resolve, with the reply linking the fixing commit's full SHA pulled from git rev-parse HEAD after committing. The skill names the anti-patterns: "Acknowledged" is not a fix, and neither is citing a commit that does not touch the flagged line.From the archive
Aug 13, 2026 • 8 min read
Aug 12, 2026 • 10 min read
Aug 12, 2026 • 6 min read
Aug 12, 2026 • 7 min read
Two claims in the post deserve scrutiny before you copy the setup. First, that a template-enforcement bot was unnecessary because agents simply followed the template. That is consistent with what the research on agent instruction adherence shows, but it is also the fragile part: behavior shaped by an implicit threat holds only while the threat is credible, and approval-gate enforcement is leaky across frameworks. AutoGPT kept the bot's promise alive by being willing to build it.
Second, the "bad AGENTS.md is worse than none" warning. AutoGPT littered instruction files everywhere and found they polluted agent context, pulling attention toward files that did not matter. That matches the mechanism in the catastrophic-remembering paper coverage: instruction files that never stop growing degrade the behavior they are supposed to improve. The design consequence is that an instruction file is a budget, not a bucket - everything you add competes for the same context window.
The durable take is that AGENTS.md has become an API that other people's agents call. A contributor who wants to spend compute on your project will hit your instruction file before they hit your code, and the quality of the work they produce is largely a function of what that file makes discoverable. That is why skills are becoming package managers and why the context-graph layering of skills matters: an agent can find a skill by its description, but it cannot find a wiki.
The other take is asymmetry. Merging someone else's LLM output means you do the upkeep forever, so closing a PR and rebuilding the fix yourself is a legitimate call. SQLite does not accept external code contributions, only bug reports, and that is a valid open source boundary. GitHub's own controls now back this up: you can disable pull requests entirely and restrict issue creation to collaborators.
The gaps in the playbook are as instructive as the gates. The review rig that spawns eight agents with different jobs is expensive enough that it now runs only on very small or very large PRs. Nothing here solves the cost curve; it just makes the spend deliberate. And the review-resolution rule exists because agent swarms will claim work they did not do when nothing forces them to prove it.
If you maintain a project with a live agent contributor base, the cheap first moves are the template with a test plan, the single AGENTS.md beside the code, and the CLA gate. The expensive ones are the harnesses. Read the full post before building any of it - AutoGPT got here by shipping bad versions first and watching what agents did with them.
| Source | URL |
|---|---|
| GitHub Blog: Your contributors are AI-first now. Is your project? | https://github.blog/open-source/maintainers/your-contributors-are-ai-first-now-is-your-project/ |
| AutoGPT repository | https://github.com/Significant-Gravitas/AutoGPT |
| GitHub changelog: repository settings for pull request access | https://github.blog/changelog/2026-02-13-new-repository-settings-for-configuring-pull-request-access/ |
| GitHub changelog: restrict issue creation | https://github.blog/changelog/2026-06-29-restrict-issue-creation-to-collaborators-only/ |
Last updated: August 13, 2026
Read next
A new arXiv paper probes six widely used open-source agent frameworks and finds the barrier semantics of approval gates, cancellation, and timeouts hold on none of them. A sibling branch can execute while the user is rejecting another one, and replay can double-execute. The fix is a verified external gate called SoundGate.
6 min readThe Agent Skills spec gave agents progressive disclosure in three tiers - name, SKILL.md, bundled files. What it did not give them is a graph. Skills that link to each other, and say when to follow the link, let an agent navigate knowledge instead of front-loading it. Here is the argument, the measurements from our own 36-skill repo, and what to change.
10 min readA study of 247,694 instruction lifetimes in 1,867 repositories shows agentic prompt files grow +226% on average because the reasoning behind each rule decays. Comments encoding that reasoning remove 99.3% of the excess.
7 min readTechnical content at the intersection of AI and development. Building with AI agents, Claude Code, and modern dev tools - then showing you exactly how it works.
OpenAI's coding agent for terminal, cloud, IDE, GitHub, Slack, and Linear workflows. Reads repos, edits files, runs comm...
View ToolGives AI agents access to 250+ external tools (GitHub, Slack, Gmail, databases) with managed OAuth. Handles the auth and...
View ToolAI coding platform built for large, complex codebases. Context Engine indexes 500K+ files across repos with 100ms retrie...
View ToolGoogle's asynchronous coding agent. Point it at a GitHub repo, it clones to a cloud VM, plans with Gemini, and opens a p...
View ToolSpec out AI agents, run them overnight, wake up to a verified GitHub repo.
View AppTrack open-source maintenance signals, release tasks, and repo follow-ups in one dashboard.
View AppGive your agents a filesystem that branches like git. Crash-safe by default.
View AppFile discovery via pattern matching across the repository.
Claude CodePersistent project instructions loaded every session; supports nested dirs.
Claude CodeDefine custom subagent types within your project's memory layer.
Claude Code
Buzz by Block: Open-Source Slack-Style Collaboration for Humans + AI Agents (Demo & Setup) Check out Arcade: https://arcade.dev.plug.dev/xiDRwlA Repo: https://github.com/block/buzz The video introd...

Build Anything with Vercel, the Agentic Infrastructure Stack Check out Vercel: https://vercel.plug.dev/cwBLgfW The video shows a behind-the-scenes walkthrough of how the creator rapidly builds and d...

Check out Trae here! https://tinyurl.com/2f8rw4vm In this video, we dive into @Trae_ai a newly launched AI IDE packed with innovative features. I provide a comprehensive demonstration...

A new arXiv paper probes six widely used open-source agent frameworks and finds the barrier semantics of approval gates,...

The Agent Skills spec gave agents progressive disclosure in three tiers - name, SKILL.md, bundled files. What it did not...

A study of 247,694 instruction lifetimes in 1,867 repositories shows agentic prompt files grow +226% on average because...

GitHub trending is full of agent skill registries. The winning pattern is not more prompts. It is dependency governance...

GitHub is filling with multi-agent frameworks, skills, and coding harnesses. The useful lesson is not that every team ne...

EvoX Genesis built a 250k-line Rust C compiler with DeepSeek V4 Flash for $44 in tokens by making the project the persis...

New tutorials, open-source projects, and deep dives on coding agents - delivered weekly.