Show HN: You are now the product manager of this site

I gave an AI agent powered by Claude Opus 4.5 ↗ access to a terminal and a browser, pointed it at this HN thread ↗, and told it to treat comments as feature requests. It writes the code, tests it, and deploys. Upvotes steer priority. The site ↗ updates automatically.
This is an experiment. I don't know if it'll be interesting or devolve into chaos. Either way, we'll learn something about what happens when a crowd has direct control over a system.
I built this using Tasklet ↗ (disclosure: I work there), but you could build something similar with Langchain, Vercel AI SDK, or any other agent framework.
If you're here from HN: leave a comment and see what happens.
Setup
I started with an empty repo, no template. Just an agent with terminal and browser access. 53 messages over a weekend to get it working. Here's the gist:
How It Works
The system is pretty simple. I'm using Computer Use ↗ (OpenAI has one too ↗) both for controlling a browser (to monitor the HN thread) as well as from the terminal. Claude Opus 4.5 works really well for this, and Tasklet gives me both a sandbox VM for the headless operations as well as a full Ubuntu machine for the browser which makes this easy. The agent can click, scroll, and do anything a human would. Combined, these tools let it perform all the actions necessary to build and maintain a website. It's slower than a human and misses things visually - the models are still being improved for multi-modal input - but it works remarkably well, especially with this latest generation of models.
I didn't write any code to accomplish this agent loop - just plain English prompts. The diagram below shows generally how it works:
Those status API calls are what drive the floating bubble:

Conclusion
Let's see what happens. I'll share updates if anything interesting comes out of it.
Questions? Happy to answer on HN or reach out on X ↗ or email.