Remote OpenClaw Blog
Hermes Development Roadmap 2026: Upcoming Features and Timeline
7 min read ·
Hermes Agent has shipped 9 major releases in under 10 weeks since its February 2026 launch by Nous Research, reaching v0.9.0 as of April 13, 2026. The core development roadmap for the rest of 2026 focuses on three priorities: mobile and cross-platform reach, a pluggable context engine for advanced operators, and the stability milestones needed to reach v1.0.
Release Velocity Since Launch
Hermes Agent ships a new major version roughly every 7-10 days, a pace that outstrips most open-source agent frameworks. Since the initial v0.1.0 release in February 2026, the project has accumulated over 57,000 GitHub stars, 16 supported platforms, and 80+ ecosystem projects tracked by Hermes Atlas.
This velocity is driven by Nous Research's core team and an active contributor community. Each release ships with a detailed changelog and migration notes. The v0.8.0 release alone included 209 merged PRs and 82 resolved issues; v0.9.0 followed with 269 PRs and 167 issues.
For context on what OpenClaw is planning over the same period, see the OpenClaw development roadmap for 2026.
Version Timeline: v0.1 to v0.9
Each Hermes release has focused on a specific capability area. The following table summarizes the major milestones.
| Version | Release Name | Key Features | Date |
|---|---|---|---|
| v0.1.0 | Initial Release | Core agent, persistent memory, skills, Telegram | Feb 2026 |
| v0.2.0 | -- | Discord, Slack, multi-platform support | Mar 2026 |
| v0.4.0 | -- | 300+ PRs, infrastructure hardening | Mar 2026 |
| v0.6.0 | -- | Multi-agent orchestration, MCP server mode | Mar 2026 |
| v0.7.0 | Resilience | Pluggable memory providers, credential pool rotation, Camofox browser | Apr 3, 2026 |
| v0.8.0 | Intelligence | Live model switching, plugin system expansion, MCP OAuth 2.1, structured logging | Apr 8, 2026 |
| v0.9.0 | Everywhere | Termux/Android, iMessage, WeChat, local web dashboard, Fast Mode, pluggable context engine | Apr 13, 2026 |
The naming convention started at v0.7.0 with themed releases. Each theme signals the primary focus area for that version's development sprint.
v0.9.0: The Everywhere Release
Hermes v0.9.0 shipped April 13, 2026, expanding the agent to 16 supported platforms with three new messaging integrations, a browser-based dashboard, and significant performance improvements.
Mobile Support (Termux/Android)
Hermes now runs natively on Android devices via Termux, making it the first major open-source AI agent framework with official mobile support. The Termux integration includes full access to skills, memory, and platform connections from a phone or tablet.
iMessage and WeChat
Two new messaging platform integrations bring Hermes into ecosystems that were previously unreachable for self-hosted AI agents. iMessage support works on macOS hosts; WeChat integration supports both personal and official accounts.
Local Web Dashboard
A browser-based dashboard for managing Hermes without touching config files or the terminal. It covers session monitoring, skills browsing, configuration editing, and gateway management.
Fast Mode
The /fast command enables priority processing for OpenAI and Anthropic models with lower latency on supported models including GPT-5.4, Codex, and Claude. This is particularly useful for orchestrator agents in multi-agent setups where speed matters more than depth.
Pluggable Context Engine
Developers can now swap custom context engines that control what the agent sees each turn. This opens the door for domain-specific context filtering, custom summarization strategies, and specialized context injection without modifying the core agent.
v0.8.0: The Intelligence Release
Hermes v0.8.0 shipped April 8, 2026, with 209 merged PRs and 82 resolved issues focused on making the agent smarter and more extensible.
Live Model Switching
Operators can now switch AI models mid-session across all platforms without restarting the agent. This is valuable when a conversation shifts from a task that needs a fast, cheap model to one that requires deep reasoning.
Plugin System Expansion
Plugins can now register CLI subcommands, receive request-scoped API hooks with correlation IDs, prompt for required environment variables during install, and hook into session lifecycle events. This transforms plugins from passive tools into active participants in the agent's runtime.
MCP OAuth 2.1
The Model Context Protocol integration gained OAuth 2.1 support, enabling secure connections to MCP servers that require authenticated access. For more on how Hermes uses MCP, see our Hermes Agent MCP integration guide.
Best Next Step
Use the marketplace filters to choose the right OpenClaw bundle, persona, or skill for the job you want to automate.
Platform Hardening
Matrix reached Tier 1 status with reactions, read receipts, rich formatting, and room management. Discord gained channel controls and ignored channels. Signal received full MEDIA tag delivery. Mattermost added file attachment support.
What Comes After v0.9
Nous Research has not published a formal roadmap document, but GitHub issues, Discord discussions, and release notes signal several priorities for v0.10 and the path to v1.0.
- Per-tenant memory isolation: Separate memory stores per user or team within a single Hermes instance, enabling enterprise multi-tenant deployments without running separate servers.
- Audit logging: Structured logs of every agent action for compliance review, expected alongside or shortly after per-tenant isolation.
- Self-evolution research: Nous Research is developing hermes-agent-self-evolution using DSPy and GEPA (Genetic Evolution of Prompt Architectures) to optimize the agent's own prompts and behaviors. This is a research track, not yet production-ready.
- v1.0 stability milestone: The rapid 7-10 day release cadence will likely slow as the project approaches v1.0, with a focus on API stability guarantees, backward compatibility contracts, and long-term support commitments.
How Developers Should Prepare
The development trajectory is clear: Hermes is getting broader platform reach, deeper extensibility, and moving toward enterprise readiness. Developers building on Hermes should take these steps now.
- Pin your Hermes version. With releases shipping every 7-10 days, use specific version tags (
hermes update --version v0.9.0) in production rather than always running latest. - Adopt the plugin system. Custom integrations built as plain scripts should migrate to the v0.8.0+ plugin format, which supports CLI subcommands, lifecycle hooks, and scoped permissions.
- Use structured logging. Centralized logging to
~/.hermes/logs/(v0.8.0+) and config validation at startup will catch issues before they reach production. - Test with the pluggable context engine. If you have domain-specific needs, start building a custom context engine now. The v0.9.0 interface is the foundation for how agents will handle context going forward.
- Watch the GitHub releases page. Each release includes detailed migration notes and breaking change warnings.
For a comparison of how OpenClaw handles its own development trajectory, see the OpenClaw development roadmap. Both projects are evolving rapidly, but from different architectural starting points.
Limitations and Tradeoffs
Hermes Agent's rapid development pace creates specific risks for production operators.
- Rapid release cadence means frequent breaking changes. Features introduced in one version may change interface in the next. This is typical for pre-v1.0 software but requires more testing before upgrading in production.
- No formal long-term support policy. Unlike OpenClaw's foundation model with quarterly community calls, Hermes development is driven by Nous Research's internal priorities and Discord community feedback. There is no public RFC process for major design decisions.
- Mobile support is new and untested at scale. The Termux/Android integration in v0.9.0 is a first release. Expect rough edges, especially with background process management on mobile devices.
- Enterprise features are still planned, not shipped. Per-tenant isolation and audit logging are signaled for v0.9/v0.10 but have not been released. Do not plan enterprise deployments around unshipped features.
- Self-evolution is research, not production. The DSPy/GEPA self-evolution pipeline is experimental. It is not integrated into the main agent and should not be relied upon for production workflows.
Related Guides
- OpenClaw Development Roadmap 2026
- What Is Hermes Agent?
- Hermes Agent Setup Guide
- Hermes Agent MCP Integration
FAQ
What version is Hermes Agent on as of April 2026?
Hermes Agent is on v0.9.0, released April 13, 2026. This is the ninth major release since the initial v0.1.0 launch in February 2026. The project ships a new major version approximately every 7-10 days.
When will Hermes Agent reach v1.0?
Nous Research has not announced a specific v1.0 date. Based on the current velocity (9 major versions in 10 weeks) and the remaining enterprise features on the roadmap (per-tenant isolation, audit logging), a v1.0 release in mid-to-late 2026 is a reasonable expectation, though not confirmed.
Is Hermes Agent free and open source?
Yes. Hermes Agent is open source under the MIT license, maintained by Nous Research. The full source code is available on GitHub. Nous Portal offers optional paid features like hosted model access, but the agent itself is free.
How does the Hermes roadmap compare to OpenClaw's?
Both projects are evolving rapidly but from different positions. OpenClaw is more mature with a foundation governance model, quarterly community calls, and an RFC process. Hermes moves faster with weekly releases driven by Nous Research's core team. OpenClaw's 2026 priorities are multi-agent orchestration, a plugin SDK, and a web dashboard. Hermes has already shipped multi-agent and a web dashboard and is focused on platform reach, enterprise features, and self-evolution research.
How many platforms does Hermes Agent support?
As of v0.9.0, Hermes Agent supports 16 platforms including Telegram, Discord, Slack, WhatsApp, Signal, Matrix, Mattermost, iMessage, WeChat, and Termux/Android. Platform support has been a primary focus of the v0.8 and v0.9 release cycles.
Frequently Asked Questions
When will Hermes Agent reach v1.0?
Nous Research has not announced a specific v1.0 date. Based on the current velocity (9 major versions in 10 weeks) and the remaining enterprise features on the roadmap (per-tenant isolation, audit logging), a v1.0 release in mid-to-late 2026 is a reasonable expectation, though not confirmed.
How does the Hermes roadmap compare to OpenClaw's?
Both projects are evolving rapidly but from different positions. OpenClaw is more mature with a foundation governance model, quarterly community calls, and an RFC process. Hermes moves faster with weekly releases driven by Nous Research's core team. OpenClaw's 2026 priorities are multi-agent orchestration, a plugin SDK, and a web dashboard. Hermes has already shipped multi-agent and a web dashboard and