Hermes Agent is Nous Research’s open-source autonomous agent, built around what the project calls a learning loop: it creates skills from experience, improves them with use, and keeps a memory of past conversations instead of starting fresh every session. It isn’t tied to a laptop — you can run it on a $5 VPS or serverless infrastructure and talk to it from Telegram while it works. It’s also model-agnostic, supporting the Nous Portal, OpenRouter, OpenAI, and custom endpoints through a single hermes model switch.
What changed
On August 31, 2026, the project shipped v0.21.0, nicknamed the “Pantheon Release.” The headline feature is Bot Mode, which was previously an optional plugin and is now built directly into the desktop app, on by default.
With Bot Mode, every agent profile gets its own name, a generated avatar, and a spot in a shared roster. Multiple bots can share group chats similar to a Discord server, get mentioned with @, and talk to each other directly using a new hermes peer command — not just relay messages through you.
A few other changes landed in the same release:
- Cron jobs gained memory — scheduled, recurring agent tasks now retain context between runs instead of starting over each time.
- Subagents can be steered mid-task — you can redirect a running subagent live instead of waiting for it to finish or killing it.
- The agent can drive the desktop app’s own browser tab, rather than only observing it.
- The release also rolled up infrastructure work from six prior patch tags (v0.20.1–v0.20.6), including MCP 2.x SDK migration and stability fixes across the gateway and installer.
Why it matters
Most “multi-agent” setups today are something developers wire together themselves — a coordinator script routing tasks to separate agent instances. Hermes Agent folding that pattern into the app itself, with persistent identities and shared memory, lowers the bar for running a small team of specialized agents (say, one for research, one for editing, one for scheduling) without custom orchestration code.
It builds on the previous major release, v0.20.0 (“The Herald Release,” July 2026), which added real-time voice conversation and an agent-to-agent communication protocol (A2A v1.0). Pantheon is effectively the payoff of that groundwork: agents that could already talk to other systems can now talk to each other, visibly, inside one app.
Try it
# Fresh install
curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash
# Update an existing install
hermes update
Full release notes are on the GitHub releases page.