Where Frameworks End and Infrastructure Begins
The agent-framework tools (CrewAI, AutoGen, LangChain Hub, Agent Zero) define how the agent thinks: planning loops, tool calling, memory schemas, multi-agent coordination. They do not, by themselves, provide a place for the agent to actually run code, call APIs, or persist work between sessions. That gap is what agent infrastructure fills. Most production agent setups in 2026 combine one of each: a framework from AI Development Tools for the brain, and a runtime from this category for the body.
What "Sandbox" Actually Means
When a tool advertises a sandbox, the relevant questions are: what filesystem can the agent touch, what network can it reach, and what happens when the process crashes? A good agent sandbox isolates the agent from your laptop (so a buggy code-generation step can't rm-rf your projects directory), gives it a writable working directory it can build inside, allows outbound HTTPS to the model provider and a configurable allowlist for other services, and exits cleanly when the session ends. Vibecode CLI handles all of this on managed infrastructure. Hermes Agent lets you pick your sandbox per-task: lightweight Docker for quick scripts, Modal or Vercel Sandbox for compute-heavy work, SSH for running directly on a remote server.
Persistent Memory: What Actually Persists
"Persistent memory" is one of the most-overloaded phrases in the agent space. In practice it can mean: (1) chat history across sessions, (2) generated skills that the agent can re-use, (3) embeddings of past work for semantic recall, (4) a key-value store the agent writes to between runs, or (5) the agent's actual long-running process state. Hermes Agent does all five, which is one reason the project gets attention. Most cloud runtimes give you (1) and (2) but require you to wire up (3) and (4) yourself using a separate vector DB or object store from the Deployment & Databases category.
Messaging Gateways: Agents That Page You
The Hermes Agent feature most teams underestimate is the messaging-gateway layer (Telegram, Discord, Slack, WhatsApp, Signal). The pattern is: you DM the agent with a task, the agent works in the background on your hardware, and you get a DM when it finishes or when it needs input. This converts the agent from a foreground tool you babysit into a background worker you delegate to. The latency is high (minutes, not seconds), but the cognitive cost is near zero. For long-running refactors, scheduled maintenance, or research-and-summarize loops, this is the killer feature.
Pre-Wired APIs: What Vibecode Bundles
Most of the time spent setting up an agent is not the coding, it's the key wrangling. Vibecode CLI ships with 30+ APIs already authenticated inside the sandbox: Stripe for payments, Twilio for SMS, Resend for email, Anthropic and OpenAI for models, plus storage, search, analytics, and auth providers. The agent calls them via a unified interface without ever seeing the underlying API key. For prototyping, this collapses what used to be a half-day of setup into one prompt.
Deploy and Hosting
Vibecode CLI includes a one-click deploy path: the agent builds the app inside the sandbox, you ship it to Vibecode's App Store with a custom domain, and the same sandbox graduates to production. For self-hosted agents, deployment is whatever you already use; pair Hermes Agent with Vercel or Render from the Deployment & Databases category, and have the agent push the build artifact at the end of a session.
Pricing Overview
Vibecode CLI is credit-based: Plus, Pro, and Max tiers run roughly $20-$200/mo depending on usage. Hermes Agent is free and open source (MIT); your only costs are the model provider you point it at (Claude, GPT, or local Ollama) and the hardware to run it on. Hermes WebUI is also MIT-licensed and free. For teams pricing this out: managed cloud is predictable and scales with usage; self-hosted is variable (your model bill swings with prompt volume) but has no markup on top of the underlying APIs.
Recommended Setups
- Solo builder, shipping fast: Vibecode CLI + Claude Code or Cursor as the brain. Idea to App-Store deploy in one session.
- Solo builder, owns their stack: Hermes Agent on a local Docker backend + Ollama for free local models, with the Telegram gateway for "DM the agent and check back in an hour."
- Small team, mixed workloads: Hermes Agent on a shared server with Modal or Vercel Sandbox for compute-heavy tasks + Hermes WebUI so non-CLI teammates can use it.
- Enterprise: Self-hosted Hermes Agent on your own hardware, gateway access restricted to internal Slack, paired with a framework like AutoGen from AI Development Tools for multi-agent coordination.
What This Category Doesn't Cover
This is the smallest category on the site and that's deliberate. Agent-building frameworks (CrewAI, AutoGen, LangChain Hub) live in AI Development Tools. Coding-agent IDEs and CLIs (Claude Code, Cursor, Windsurf, Aider) live in Developer IDEs & Agents. The vector DBs and model APIs that agents depend on live in Deployment & Databases and Cloud AI Platforms. This page is specifically about the runtime layer that wraps an agent and gives it a place to work.
New tools in this category land monthly. If you ship one or run one in production, the submit page is open.