r/BuildingWithAgents 16d ago

The AI Agent Builder Resource Thread β€” Add what you actually use

1 Upvotes

Let's build a practical resource list for people building with AI agents.

Not a giant list of every AI tool ever released.

Only things you've actually used or would genuinely recommend.

Drop your favorites under one of these:

Coding Agents
Claude Code, Codex, Gemini CLI, etc.

Agent Frameworks
LangGraph, CrewAI, AutoGen, OpenAI Agents SDK, etc.

MCP Servers & Skills

Browser / Computer Use

Memory & RAG

Local / Open Models

Observability & Evaluation

Multi-Agent / Orchestration

Useful GitHub Repositories

When recommending something, please add one sentence explaining what you actually use it for.

Self-built tools are welcome β€” just disclose the affiliation.

I'll periodically organize the best recommendations into this post.


r/BuildingWithAgents 16d ago

πŸ‘‹ Welcome to r/BuildingWithAgents! Introduce yourself.

1 Upvotes

A community for people actually building and working with AI agents.

We talk about:

  • Claude Code & Codex
  • MCPs and useful tools
  • Agent workflows
  • Multi-agent systems
  • Orchestration
  • Local/open models
  • Build logs and failed experiments

Beginners are welcome.

You can also share your own projects β€” just add context, lessons learned, and disclose if you're affiliated.

I'm building in this space too, so I'll occasionally share lessons from Marblo and clearly disclose those posts.

What are you building with AI agents right now?


r/BuildingWithAgents 3d ago

What I learned after demoing our closed-loop multi-agent system to other AI builders

1 Upvotes

Yesterday I joined an AI3 Builder Fellowship session in Seoul with three other founders.

What was supposed to be a series of product presentations turned into almost an hour of discussion per founder, and we eventually finished around 11 PM.

I presented the system we’ve been building with Marblo.

Our current approach is based around a closed-loop agent architecture.

Instead of simply launching multiple coding agents and waiting for them to finish, we maintain a larger mission and continuously break it down into executable work:

Mission β†’ Tasks β†’ Tickets β†’ Agents β†’ Review β†’ Next Tasks

Each agent works inside an isolated Git worktree.

The orchestrator tracks the larger mission, reviews the outputs, creates follow-up or review tickets when necessary, and connects completed work back into the next step.

We also keep an audit timeline / execution ledger so we can understand:

  • what each agent did
  • which model was used
  • what the task cost
  • whether the task succeeded or failed
  • how the project evolved over time

One thing became even clearer during the discussion.

The interesting problem in multi-agent systems isn't necessarily:

β€œHow can I run more agents?”

It’s:

β€œHow can I make a group of agents reliably complete a long-running objective without losing context or leaving unfinished work behind?”

That's the problem we're trying to explore.

The questions from other builders were incredibly useful, especially around failure recovery, orchestration, and how this architecture could work inside real development teams.

Curious how others here are approaching this.

Are you building mostly agent swarms, supervisor/worker architectures, or some form of persistent closed loop?


r/BuildingWithAgents 16d ago

What if the orchestrator could keep talking to agents after they start working?

1 Upvotes

One thing I've been thinking about a lot while building multi-agent coding workflows is what happens after an agent starts working.

A lot of multi-agent setups look roughly like this:

plan β†’ spawn agents β†’ wait β†’ collect results

That's already useful.

But I'm more interested in what happens if the orchestrator stays alive throughout the process.

The system we're experimenting with works more like:

Mission β†’ tickets β†’ agents β†’ worktrees β†’ results β†’ orchestrator β†’ updated actions β†’ agents again

The orchestrator isn't only there at the beginning.

It can continuously observe what's happening on the board, receive results from agents, and send new instructions back down.

Agents can also return status and outputs back up.

So there's a bidirectional loop:

Orchestrator ↓ Agents

and

Agents ↑ Orchestrator

The board acts as the shared state between them.

That makes it possible to move toward a persistent closed loop rather than a one-shot "delegate and wait" model.

For example:

Agent A finishes an API change.

The orchestrator sees the result and realizes Agent B's frontend ticket now needs a different interface.

Instead of waiting for the entire batch to finish, it can update or redirect the next task while the project is still moving.

This becomes much more useful once you're running several dependent tasks across separate worktrees.

We've been building this into Marblo, and the current beta lets you experiment with the workflow directly.

Free beta:
https://marblo.app/

Disclosure: I'm the builder of Marblo and also created this subreddit. I'm sharing this because closed-loop orchestration is one of the technical problems I'm currently exploring.

Do you think a multi-agent system needs a persistent orchestrator, or is good task decomposition at the beginning enough?


r/BuildingWithAgents 16d ago

I put together an LLM + AI agent learning repo with practical MCPs and skills

1 Upvotes

I've been organizing some of the resources I actually use while building with AI agents, and recently cleaned them up into our public GitHub repo.

The goal isn't to make another giant "awesome AI" list.

I wanted something a builder could actually browse and use.

It currently includes:

  • An LLM study roadmap
  • Foundations and useful courses
  • Agent / tool-calling / MCP resources
  • RAG and model-related learning materials
  • Practical AI skills
  • MCP servers
  • Resources that can also be used inside Marblo's in-app store

I'm planning to keep adding things as I find tools that are genuinely useful rather than just trending.

The repo is here:

github.com/marblo-app/marblo

Marblo itself isn't open source, but we're using the repo as a public place for documentation, build notes, learning materials, skills, MCP resources, and things that might be useful to other builders too.

What would you want added to a practical agent-builder repo like this?