We Love Claude
A feature guide that maintains itself: two agents watch Claude and open PRs when it changes.
The question I was chasing
Could a documentation site keep itself current without me in the loop?
Docs rot the moment they're written. For a product shipping changes weekly across two different surfaces, a hand-maintained guide is stale before you've published it. I wanted to know if the maintenance itself could be the product.
Why it exists
Claude changes constantly, features land on desktop and web at different times, and nobody is keeping a clear running map of it. A static guide would be wrong within a week. The only version of this that's worth building is one that updates on its own.
The constraints
The whole premise collapses if a human has to babysit it. So the maintenance loop had to be genuinely autonomous (notice a change, draft a correct edit, propose it) and safe enough to trust without watching it. Autonomy that can silently publish wrong information is worse than no autonomy at all.
The decisions that mattered
Two agents, not one. Desktop and web drift independently, so each surface gets its own watcher.
PRs, not auto-merge. The agents draft changes and open pull requests; a human still gates what ships. That single decision is what makes autonomous maintenance trustworthy instead of reckless.
Astro and MDX so the content is plain files an agent can edit like code. The real work turned out to be the change classifier: teaching the agents to tell a genuine feature change from UI noise, so they don't open a PR every time a button moves two pixels.
What it is
A clear, feature-by-feature guide to Claude that stays up to date on its own. Behind it, two agents continuously crawl the desktop and web apps, spot what's shifted between releases, and automatically draft PRs to keep the site in sync.
Built with: Astro, TypeScript, MDX, Claude Code, Cursor
Where it landed
Live in beta: a working proof that agent-maintained content can actually hold. The next push is widening coverage and tightening the change classifier so more of the PRs land without edits.
Part of the Rolling Waves work archive.