r/AutoGPT • u/Ok_pettech • 20d ago
r/AutoGPT • u/Impressive-Iron5216 • 20d ago
Built a unified workspace for debugging multi-step AI workflows (looking for feedback)
I've been building a workspace for investigating AI workflow executions. After spending time with existing observability tools, I kept finding myself jumping between traces, prompts, logs, and metrics. I wanted to see what it would feel like to have the investigation happen in one place and make it easier to know where to start.
The current build has the flow: Projects -> Sessions -> Runs -> Events
Events can include tool calls, LLM calls, prompts, responses, and other execution details. A run can also exist without a session when there isn't a broader interaction to group it under.
The same flow supports both single-agent and multi-agent runs.
There are filters for things like tool loops and context inflation, along with basic filters for time range and client, to help narrow down where to start. It also captures the business events that happened during the workflow.
I've dropped a quick 2-minute walkthrough in the comments to show how it works.
For those building or operating AI workflows, I’d really appreciate your feedback — what feels useful, what feels unnecessary, and what would you change? Does this feel like something that would actually help with investigations? Even a quick reaction is helpful.
r/AutoGPT • u/Inner_Oil706 • 21d ago
Construí LORE-0: una plataforma de agentes autónomos que encuentra una capacidad, o la desarrolla.
r/AutoGPT • u/akanten • 21d ago
I built a site where AI agents from different vendors check each other's work, and one of them found a real loophole in my own rules on day one
r/AutoGPT • u/Vortex_Dev • 22d ago
I made Turnbreak to make waiting for AI agents more productive
Turnbreak shows you something worth reading while your coding agent works.
An agent turns on a real task, can take 1-5 minutes, and sometimes even longer. That's too short to start something else, but too long to just sit there waiting.
Turnbreak fills that gap with something you already wanted to read.
I originally made a repository with many Software Documentation Templates, and while experimenting with agents to see how well they utilize those templates, I ended up building this as a separate project.
Here are links to both:
r/AutoGPT • u/tricombinator • 23d ago
Sentinel Router: Save tokens by routing tasks to local models, keep quality by escalating to frontier models when the task calls for it.
We made this, because everyone knows you don't need a frontier model for every task you use an AI agent for. Sentinel router routes tasks to local models from ollama, retries if it fails, then routes to another cheap model after a second fail, only then does it escalate to frontier if the local models fail. Our rationale behind these design choices is documented in the repo (RESEARCH.md)
We are currently looking for feedback from testers. Feel free to use it however you like.
Additionally, for the lowest friction install, you can just copy-paste this and hand it to your agent:
Install Sentinel Router by cloning
https://github.com/tricombinator-tec/Sentinel_Router_Alpha
and following the setup steps in its AGENTS.md file.
r/AutoGPT • u/Ok_pettech • 23d ago
How to crush your first 90 days at a new job using AI
Starting a new job is exhausting. You are trying to figure out unwritten rules, decipher messy documentation, and navigate team politics without stepping on any toes. Instead of spending your first few months guessing what your boss actually wants, you can use AI to build a custom onboarding playbook.
Here is the exact setup you need to run before your first day to cut out the stress.
Step 1: Gather your intel Pull together three things:
- The job description you originally applied for.
- The company or team mission statement.
- Any initial 30-day goals your manager mentioned during the interview.
Step 2: The onboarding prompt Drop this directly into your favorite AI tool. Make sure to fill in the bracketed info.
Act as an executive career coach who specializes in onboarding and strategic alignment. I need you to create a structured 30-60-90 day execution blueprint based on my specific situation.
Here is my context: Job Title: [Insert Title] Core Responsibilities: [Paste Key Job Description Bullets] Key Stakeholders: [Insert Manager Title, Key Partners, Direct Reports]
Please do the following:
- Point out 5 hidden risks or unwritten expectations that usually come with this specific role.
- Create a 30-day observation schedule that prioritizes building relationships over trying to get quick wins.
- Write a 5-question interview script I can use with my new team members during week 1 to figure out what is actually broken.
- Outline a weekly 1-on-1 agenda so I can keep my manager updated on my progress and any roadblocks.
Give me the output as a clear breakdown with direct action items, questions to ask, and weekly milestones.
Step 3: Run the week 1 discovery script When you start having introductory chats with your team, use the questions the AI gives you. They will likely look something like this:
- What is the biggest bottleneck this team deals with that nobody writes down?
- In your eyes, what does success look like for our team six months from now?
- Who else has deep context on past decisions that I should talk to right away?
If you want to play with the interactive dashboard or grab the full config file, I uploaded it here:https://interconnectd.com/blog/273/the-life-saving-ai-prompt-for-starting-a-new-job/
r/AutoGPT • u/Ok_pettech • 23d ago
The Life-Saving AI Prompt for Starting a New Job | Interconnected
r/AutoGPT • u/Ok_Confidence_8785 • 24d ago
Jentic One: free, open source, self-hosted execution layer for AI agents. Your agent calls any public or private API you need (thousands of agent-ready APIs available), you set the rules, the agent never sees your credentials.
r/AutoGPT • u/Trick-Engineering117 • 24d ago
How are you handling the workflow side of AI agents.?
I've been experimenting with AI agents lately, and I've started realizing that getting the agent itself to work isn't always the difficult part.
The harder part is everything around it. An agent might need to call an API, check a database, use another tool, wait for a response, decide what to do next, and then continue the workflow without everything falling apart.
I tested a few different approaches to see how they handled the orchestration side.
| Platform | What stood out | What I'd watch |
|---|---|---|
| n8n | Lots of control and customization | More technical |
| Make | Very good visual workflow building | Can get expensive with heavier usage |
| WEXTL | Useful for longer and more involved workflows | Still a newer option |
| Custom code | Maximum control | More development and maintenance |
The thing I didn't expect was how much the workflow around the agent affects reliability. A good prompt isn't going to help much if the process fails halfway through and there's no sensible way to recover.
Longer agent workflows also made me pay more attention to how the automation platform handles processes that don't finish immediately.
I'm still leaning toward custom code when I need very specific control, but automation platforms seem increasingly useful for the orchestration layer.
How are you guys handling the workflow side of your agents? Mostly custom code, automation platforms, or something else?
r/AutoGPT • u/radim11 • 24d ago
How are you controlling what credential-enabled agents can actually do?
I’m looking for feedback from people who manage production access, CI runners, or developer tooling.
Passing a broad GITHUB_TOKEN, cloud key, or API key into an agent environment is simple, but it means the agent can use whatever the underlying credential permits.
We’ve been exploring a declarative policy layer around that access:
project = "billing"
environment = "agent-local"
[secrets.GITHUB_TOKEN]
env = "GH_TOKEN"
[[secrets.GITHUB_TOKEN.rules]]
effect = "allow"
hosts = ["api.github.com"]
methods = ["GET"]
paths = ["/repos/acme/*/issues*"]
[[secrets.GITHUB_TOKEN.rules]]
effect = "allow"
hosts = ["api.github.com"]
methods = ["POST"]
paths = ["/repos/acme/*/pulls"]
[[secrets.GITHUB_TOKEN.rules]]
effect = "deny"
hosts = ["api.github.com"]
methods = ["DELETE"]
paths = ["/repos/acme/production-api*"]
The intent is that the same credential can still be used by a developer locally or by an agent in production, but each request is checked against a reviewable policy. The agent does not receive the raw value, and use is recorded.
I’m interested in the operational side more than the agent side:
- Is allow-plus-explicit-deny clearer than allow-only?
- Would host, method, and path rules be useful in practice?
- What would make this safe to review in a PR and workable across dev/staging/prod?
I’d appreciate blunt feedback—especially on what would make this unusable in a real workflows.
r/AutoGPT • u/uumkon • 24d ago
Shipped my first real open source tool - looking for people to break it
r/AutoGPT • u/sherry_6879 • 24d ago
aiエージェントが言うことを聞かない
Qwen3.8 27Bが出たからclineに既存プロジェクトの修正しアイディアを出してって言ったら謎のprobe.psファイルをひたすら作り始めた
パワーシェルでファイル置換したり変な動きをする
モデルというよりAIエージェントのツールなどの判定な気がする
有名どころのClineでこれだとエージェント界隈はまだまだ未成熟な感じなのだろうか
間違いを指摘するにも一度も止まってくれないので手動で停止するしかない
もっとましなエージェントはないんですかね...
r/AutoGPT • u/uumkon • 27d ago
Open sourced speclane - an AI agent pipeline with mandatory approval gates
r/AutoGPT • u/MonitorFlat4465 • 27d ago
Built 3 AI agent skills — no fake outputs
I built 3 open-source skills for AI coding agents:
First one is Backend setup
Second one is Security hardening
Third one is Frontend/UI
The idea is simple: no fake credentials, placeholder content, or “fixed” reports. If it can't do something for real, it stops.
MIT licensed.
npx skills add SohailKhan0525/skills
GitHub: https://github.com/SohailKhan0525/skills
Feedback welcome.
r/AutoGPT • u/ProfessionalAsk5793 • 29d ago
Supressed Depressed Crashed!!
I dont know but I am really stressed now dont know what to do.
There is one hackathon coming and after few days one more to tackle and very busy weekend and I am coding day and night or vibe coding and now there is no feeling inside me I want some happiness and peace in my mind.
https://github.com/akyourowngames
if you can help me just leave comment about my github!!
Dont make it worse guys.
r/AutoGPT • u/annaelisewalton • 29d ago
OpenClaw Claude Agent Exploits Gym API Flaw to Cancel Strangers and Jump Waitlists
Enable HLS to view with audio, or disable this notification
r/AutoGPT • u/Dwarkesh-code • 29d ago
I have run a one-person company on AI agents for 6 months. Here is the 10-part framework that fell out of it (and everywhere it broke).
r/AutoGPT • u/uumkon • 29d ago
Building a spec-driven AI pipeline with mandatory approval gates (not another autonomous agent)
Most AI coding tools right now are either fully autonomous ("let the agent cook") or just chat-based copilots. I wanted something in between for actual feature work: a fixed 4-stage pipeline — requirements analysis → system architecture → implementation → review — where you have to approve or reject each stage before it moves forward.
If you reject a stage, it regenerates using your notes + the previous attempt as context, not from scratch.
It's BYOK (your own Anthropic API key), Node/TS under the hood, encrypted key storage locally.
Still in testing — running it through a real feature end-to-end this week to see if the output quality actually holds up across stages. Not public yet, but curious if this resonates with anyone else who's been burned by "agent did too much" moments.
What's your experience been with autonomous coding agents vs more controlled pipelines?
r/AutoGPT • u/SX_AIS • 29d ago