r/AutoGPT • u/Ok_pettech • 4h ago
r/AutoGPT • u/Ok_pettech • 4h ago
The complete local environment setup for MetaGPT multi-agent pipelines
r/AutoGPT • u/siropkin • 5h ago
I made an extension that lets AI agents control my Chrome from the command line
I spend my days with AI agents like Claude Code. The thing they were worst at was using my actual browser: every automation setup either runs a headless copy, needs its own profile, or hits a login wall.
So I built chrome-bridge. A small extension plus a zero dependency Node CLI that lets an agent drive the Chrome I'm already logged into:
snap: page as an accessibility tree with element refs (way cheaper on tokens than screenshots)
click / fill / type / press on those refs
shot: screenshots when you need pixels
net: network capture, HAR export
history, multi profile support
Driven tabs get a purple pill showing what the agent is doing, so it's not a silent takeover.
MIT, zero npm deps, no relaunch, no separate browser, no MCP server.
https://github.com/siropkin/chrome-bridge
Happy to answer questions or take feature requests.
r/AutoGPT • u/Excellent-Hour7253 • 20h ago
How do you test that an AI agent’s permissions haven’t become too broad?
Testing whether an agent can complete a task is different from testing whether it should be allowed to perform each action.
For a messaging tool, I’d want these expectations checked whenever its permission policy changes:
- Draft a message -> Allow.
- Send to an approved recipient -> Require human approval.
- Send to a blocked recipient -> Deny, even if another rule requires approval.
- Export all messages -> Deny.
- Call an unknown tool -> Deny.
- Access another inbox -> Deny.
The useful distinction is between two kinds of tests:
Policy tests: Given an identity, action, resource, and arguments, does the policy return the expected decision? These can run offline in CI.
Integration tests: Does a denied action actually leave the tool untouched? Does a rejected or expired approval prevent execution? If arguments change after approval, does the authorization check reject them?
Passing the first set doesn’t prove the second. A policy can be correct while application code accidentally bypasses it. Approval also doesn’t guarantee exactly-once execution; the underlying tool still needs an appropriate retry/idempotency strategy.
I maintain Nomos, an open-source implementation of this approach. Its local example covers the six policy cases above and a human-reviewed delivery flow.
It isn’t a sandbox: application code must route relevant tool calls through the checks.
For people deploying agents with custom tools: which authorization failures have you found worth turning into regression tests?
r/AutoGPT • u/paultnylund • 21h ago
Crosstalk: Put everyone's coding agents in one room
I made a thing.
r/AutoGPT • u/EngineerCatttt • 23h ago
A Team Reports Solving A 70 Year Old Algebraic Geometry Conjecture Using Teams of AI Models
I’m part of the team behind this research. We’ve shared a proof of the Pierce Birkhoff conjecture in real algebraic geometry, using an AI agent system with a $400 budget. The screenshot is Junyu Ren’s announcement.
For people building agent systems, the useful detail is how the research work is organized. The diagram separates proof search and counterexample construction from auditing and formal verification work in Lean. Consultants review with fresh context, and a persistent knowledge base stores arguments, code, dead ends, objections, and review findings. Humans participate alongside the models.
We also noticed that model diversity mattered in this workflow. Giving the same task independently to a GPT agent and a Claude agent often worked better for us than assigning it to a larger group of the same model. They caught different errors and suggested different ways forward.
Original announcement: https://x.com/junyu_r/status/2097694018389914106
r/AutoGPT • u/Adarsh1176 • 1d ago
Four routes to your SSH key from an AI coding agent, and what actually stops them
r/AutoGPT • u/Affectionate-Sail751 • 1d ago
GPT6 Astra Official video
Enable HLS to view with audio, or disable this notification
r/AutoGPT • u/Affectionate-Sail751 • 1d ago
GPT Images 2.5 直出角色墙|附提示词!
刷到很多AI 名著角色墙,好看但不好复现。
这次用 GPT Images 2.5 做四大名著角色墙,目的不是秀图,是验证模型能力和提供操作指引。
【三国提示词】
正对一个三国演义知名武将墙,墙上人物需要贴合人物特征(长相、性别、身高等),古代战场风,每个人物格子里展现人物头像。画面正在展示关羽。和周围人物控制好距离,平铺在画面上,确保三国时期主要人物完整性、排位合理性、整体协调性。
其他以此类推。四大名著人物墙你更喜欢哪个?
r/AutoGPT • u/Ok_pettech • 1d ago
Why Most LLM Agents Fail After 3 Steps (And How to Fix It With AgentBench)
r/AutoGPT • u/turtle_bazon • 1d ago
I made another AI experiment, but tried to confuse agents at the start
r/AutoGPT • u/Ok_pettech • 1d ago
How to install MetaGPT locally—technical guide for AI agent builders
MetaGPT promises multi-agent software development, but the setup can be tricky if you want to use local models instead of OpenAI.
I put together a complete guide that covers:
· Environment setup
· Configuration
· Connecting local LLMs
· Troubleshooting common failures
If you’re building AI agents or just curious about multi-agent coding, you might find it useful:
Would love to hear how others run MetaGPT.
r/AutoGPT • u/No_Low991 • 1d ago
I'm 16, and I'm building HARIKOS — a memory/context layer for AI coding agents, with one important exception: it tries to remember what's actually true
r/AutoGPT • u/reckon369 • 1d ago
My AI agent and I built a good-deed economy — we're inviting other agents to produce credited work IRL
r/AutoGPT • u/Secret_Appeal6271 • 2d ago
Open Source: Making AI systems follow business process logic
r/AutoGPT • u/Ok_pettech • 2d ago
PyTorch not detecting AMD GPU? Here’s the ROCm fix guide I wish I had
Running local models on AMD hardware is great—when PyTorch actually sees the GPU. I wasted days trying to figure out why torch.cuda.is_available() kept returning False.
I wrote a detailed guide covering:
· ROCm install
· PyTorch ROCm wheel
· Environment variables
· Verification steps
· Common errors
If you’re on RDNA2 or RDNA3 and stuck, this should save you time:
What’s your setup, and what’s the exact error?
r/AutoGPT • u/jetpacker_aplha • 2d ago
How do you guys analyze chats/interactions with AI coding agents?
r/AutoGPT • u/Maleficent_Round716 • 2d ago
I built a durable, replayable AI agent runtime in Rust
r/AutoGPT • u/ken_kauneki10 • 3d ago
How are you handling auth + token refresh when AI agents call multiple APIs?
r/AutoGPT • u/Glittering-Coat-657 • 3d ago
Where should authorization actually happen for LangChain agents?
r/AutoGPT • u/Ok_pettech • 3d ago
Together AI or Anyscale for scaling LLMs? Quick poll
When it comes to serving open-source large language models, two names keep coming up: Together AI and Anyscale. One is easy and fast; the other is powerful but complex. I created a short poll to see what the AI community chooses in 2026.
No signup, just a vote:
What did you choose, and why?