DEV Community

SandBase AI
SandBase AI

Posted on

We Mapped 500 AI Agent Infrastructure Projects

500 AI Agent Infrastructure Projects

The early agent conversation focused on prompts, tools, and demos. That was useful, but production systems need more than an agent loop wrapped around a few APIs.

Once agents touch real files, browsers, APIs, credentials, workflows, and customer data, the infrastructure layer becomes the product boundary. Teams need to know where code runs, what tools are available, what state is persisted, how failures are observed, and how risky actions are contained.

The 10-layer agent infrastructure stack

We expanded Awesome Agent Runtime into a curated map of 500 projects across 10 infrastructure categories:

  • Agent runtime
  • Execution sandbox
  • Browser automation
  • Tool protocol
  • App integrations
  • Memory/context
  • Safety/evals
  • Model gateway
  • Observability
  • Deployment/compute

Why this map exists

This is not a generic AI tools directory.

The goal is to track infrastructure that helps builders run agents in real products:

  • control state and workflows
  • run code safely
  • automate browsers
  • connect tools and apps
  • store memory and context
  • evaluate behavior
  • route models
  • observe failures
  • deploy and scale workloads

What we learned from the first 500 projects

Several patterns stood out while curating the first 500 projects.

Agent frameworks are maturing quickly, but runtime safety is still uneven. Builders are increasingly asking not only "can the agent call a tool?" but "where does that tool run, what can it access, and how do we recover when it behaves badly?"

Execution sandboxes and browser automation are becoming first-class agent primitives. If an agent can write code, open pages, call CLIs, or operate SaaS workflows, isolation and repeatability matter as much as model quality.

MCP and tool protocols are giving the ecosystem shared language. The protocol layer is becoming the place where agents, tools, permissions, and app integrations start to meet.

Observability is moving beyond prompt logs. Production teams need traces, evals, cost visibility, tool-call history, runtime events, and failure analysis.

Deployment is also splitting. Model inference is only one part of the stack; sandbox execution, tool infrastructure, workers, browsers, and integration runtimes all need their own operating model.

How to use the repository

Builders can use it to:

  • compare infrastructure categories
  • find projects to integrate
  • identify missing layers in their agent stack
  • submit corrections or missing projects
  • discover maintainers and adjacent ecosystems

Contribution ask

If you maintain or use a relevant project, open an issue or PR.

Useful submissions include:

  • agent runtimes and frameworks
  • execution sandboxes
  • browser automation infrastructure
  • MCP and tool protocol projects
  • memory and context layers
  • evals, guardrails, and red-team tools
  • observability and model gateways
  • deployment and compute platforms for agents

SandBase is maintaining this map because production agents need a real infrastructure ecosystem, not just better prompts.

Repository:

https://github.com/sandbaseai/awesome-agent-runtime

Top comments (0)