OpenClaw vs Hermes Agent: Which Open-Source AI Agent Should You Run in 2026
OpenClaw is the most-starred repo on GitHub and the most exposed to skill-marketplace malware. Hermes Agent is smaller, self-improving, and built for a locked-down home server.
BLUF
Pick OpenClaw if you want the biggest ecosystem, the widest channel coverage, and you are willing to lock down a skill marketplace that has already shipped malware. Pick Hermes Agent if you want a smaller, calmer project that gets measurably better at your specific tasks over time and you are comfortable running fewer, more vetted integrations. Neither is a toy: both run real shell commands, real browsers, and real messaging accounts, so both need a sandboxed VPS, not your laptop with your production SSH keys on it.
What each one is
OpenClaw started life as Clawdbot, built by Austrian developer Peter Steinberger and released in November 2025. Anthropic's trademark concerns and a wave of account hijacks forced two renames in the same week: Clawdbot to Moltbot on January 27, 2026, then Moltbot to OpenClaw on January 30, 2026. The rebrand did nothing to slow adoption. OpenClaw passed React to become the single most-starred repository on GitHub on March 3, 2026, and was sitting north of 380,000 stars by late August 2026. It is a local-first personal agent: memory and data live as Markdown files on disk, it connects through roughly two dozen messaging and productivity channels, it runs on multiple model providers, and it can spin up isolated sub-agent workers through its Paperclip orchestration layer. Its skill marketplace, ClawHub, hosts more than 13,000 community-built skills.
Hermes Agent is Nous Research's answer, released on February 25, 2026 under the MIT license. It is a persistent, self-hosted agent meant to run on a server around the clock rather than get invoked task by task. Its defining feature is a closed learning loop: after any task that takes five or more tool calls, a background process writes a Markdown skill file documenting how the task was solved and indexes it for future sessions, so the agent's playbook grows the more you use it. All memory, skills, and conversation history sit in a local SQLite database on hardware you control. It connects to 16 to 20-plus messaging platforms depending on the release, and it works with any model backend: Nous Portal, OpenRouter, OpenAI, or a self-hosted endpoint.
Install and requirements
OpenClaw needs Node.js, with Node 24 now the recommended baseline and Node 22 LTS (22.19+) as the floor. Setup involves the CLI, a config file for your model provider, and then wiring up channels one by one, each with its own OAuth or API token. Because it is local-first by default, plenty of users start it on a laptop or Mac mini before anyone flags that as a bad idea for a tool that executes shell commands.
Hermes Agent leans harder into "treat this like a server app." The documented minimum is a 1 vCPU / 2 GB RAM VPS with Docker, using the official nousresearch/hermes-agent image, plus an API key for whichever model you connect. Community guides put a full self-host, model, and first messaging channel at 20 to 30 minutes for anyone comfortable with a Linux terminal. There is no meaningfully different desktop-first path the way OpenClaw offers one, which nudges the deployment norm toward a proper isolated box from day one.
Memory and learning
This is the sharpest technical difference between the two. OpenClaw's memory is Markdown files on disk: transparent, greppable, and easy to back up, but it does not learn on its own. Whatever gets remembered is whatever you or a skill explicitly wrote down.
Hermes Agent's memory is a local SQLite database, and it is paired with an active learning loop rather than a passive log. After a multi-step task, the agent summarizes what worked into a reusable skill document with YAML frontmatter, then searches that accumulated skill library on future runs. That closed loop, built on DSPy and GEPA-style evolutionary refinement in the Hermes runtime, is the single feature every serious writeup about the project leads with, and it is the reason Nous Research markets Hermes as "the agent that grows with you" rather than a fixed automation script.
Integrations
OpenClaw covers roughly two dozen channels, spanning WhatsApp, Telegram, Discord, Slack, Signal, email, calendar, browser automation, and shell access, and its Paperclip layer lets you fan a job out across multiple isolated sub-agents that each keep their own memory and session context. That breadth is a big part of why it grew faster than any open-source repo in GitHub's history.
Hermes Agent's platform list overlaps heavily with OpenClaw's core (Telegram, Discord, Slack, WhatsApp, Signal) and then goes wider into protocols OpenClaw does not prioritize: Matrix, IRC, XMPP, Nostr, Mastodon, Bluesky, WeChat, LINE, KakaoTalk, and Viber, putting counts at 16 to 20+ platforms depending on which release you check. If your world is decentralized or non-Western chat protocols, Hermes covers more of it out of the box. If your world is mainstream productivity tooling and heavy browser or shell automation, OpenClaw's ecosystem is deeper.
Security model
This is where the comparison stops being close. OpenClaw's scale made it the biggest target in open-source AI, and researchers have found it. Bitdefender Labs reported that roughly 17% of the ClawHub skills it analyzed in the platform's first few weeks carried malicious payloads, some designed to exfiltrate credentials, install cryptominers, or plant persistent backdoors behind what looked like ordinary productivity skills. Independent trackers logged 138 CVEs across OpenClaw and its predecessor names between February and April 2026 alone, including CVE-2026-25253 (CVSS 8.8, remote code execution), and researchers identified more than 40,000 exposed OpenClaw instances on the public internet, many with no authentication at all. Palo Alto Networks' Unit 42 has specifically called out ClawHub as an AI supply-chain risk, not a hypothetical one.
Hermes Agent has not attracted the same volume of published exploit research, but that is partly a function of scale, not necessarily a lower attack surface: a smaller install base means fewer researchers and fewer attackers have gone looking. Its architecture works in Hermes' favor on one point, though: it does not have an equivalent third-party skill marketplace generating a comparable supply-chain surface, since skills are largely written by the agent itself from its own task history rather than downloaded from a public registry.
Bottom line either way: run both behind a sandbox, an isolated VPS, and least-privilege API keys. Do not run either one with credentials you cannot afford to lose.
Community and pace
OpenClaw's community is enormous and moves fast: hundreds of thousands of stars, a large third-party skill ecosystem, and a release cadence tracked by dedicated sites like The Claw Report. That scale is also what feeds the security research volume above, good and bad, since more eyes are watching the code and more attackers are probing it.
Hermes Agent's community is smaller but growing quickly on its own terms, reported at roughly 60,000 to over 200,000 stars at different points across 2026 depending on when the snapshot was taken, alongside hundreds of contributors and a stated zero-open-P0-defects bar by its v0.18.2 release in July 2026. It reads as a more curated, Nous Research-steered project rather than a sprawling community bazaar.
Cost of running
Neither tool charges a license fee; both are free and open source (OpenClaw under Apache 2.0 per its current licensing, Hermes Agent under MIT). Your real cost is infrastructure plus model API usage. Hermes Agent's documented floor, a 1 vCPU / 2 GB RAM VPS, typically runs a few dollars a month before you add model spend. OpenClaw does not publish an equivalent hard floor since it is commonly run locally, but any serious deployment (isolated VPS, not your laptop) lands in the same range. On top of hosting, both are bring-your-own-model, so your actual bill scales with how many tool calls your agent makes and which model you point it at: a frontier model on a chatty agent can cost more per month than the server it runs on.
Verdict by profile
- Power user who wants the biggest ecosystem and the widest channel coverage: OpenClaw. Just budget real time for skill vetting and instance hardening.
- Someone who wants an agent that actually improves at their recurring tasks: Hermes Agent. The learning loop is the feature that matters here, and nothing in OpenClaw replicates it natively.
- Security-conscious team running this for actual work, not a demo: Hermes Agent's smaller surface and lack of a public skill marketplace make it the lower-risk default, though "lower-risk" is not "risk-free."
- Decentralized or non-mainstream chat protocols (Matrix, Nostr, Mastodon): Hermes Agent covers more of that ground than OpenClaw does.
- You just want to see what all the GitHub-star noise is about: OpenClaw, with a burner VPS and no real credentials attached.
For the wider field beyond these two, see our guides to the best autonomous AI agents and the best open-source AI agents.
From the team behind Toolradar
Growth partner for B2B tech
Toolradar also helps B2B tech companies grow, content marketing & distribution through 5 newsletters (720K+ tech professionals), AI Academy, and the Toolradar directory.
See how we work
Written by
Louis Corneloup
Founder & Editor-in-Chief at Toolradar. Founder & CEO of Dupple, the publisher of 5 industry newsletters reaching 720K+ tech professionals. Reviews B2B software using a public methodology, see /how-we-rate and /editorial-policy.
Related Articles
7 Best Free CAD Software Tools in 2026 (Tested & Compared)
Seven free CAD tools verified against their vendors' own licence and pricing pages in August 2026, split by what you are actually making: parametric mechanical parts, 2D drawings, browser sketches or meshes. Every catch named, from Onshape's public documents to SketchUp Free's missing DXF export.
10 Best Free Drawing Software in 2026 (Tested & Compared)
Ten free drawing apps verified against their vendor pages in August 2026, split by what you actually draw: raster painting, vector illustration, browser and tablet work, and whiteboard sketching. Every license, platform and catch is named.
The AI Layoff Reversal: Why Companies Are Rehiring the Workers They Automated
A wave of 2026 reporting shows companies quietly rehiring the workers they replaced with AI. The failure was not the technology. It was automating the wrong tasks and buying tools without evaluating fit.