<- all tokdocs

Hermes Agent Is the Most Popular AI Agent in the World, and It Runs on Your Laptop

Watch on TikTok

View on TikTok ->

Hermes Agent hit 140,000 GitHub stars in three months and overtook OpenClaw as the number one agent on OpenRouter. It served 224 billion tokens in a single day. The model underneath it, Qwen 3.6, fits in 20 gigabytes of memory and matches the performance of models ten times its size. All of it is open source.

What Makes Hermes Different

Most AI agents suffer from the same problem: they forget everything between sessions. You fix a deployment issue on Monday, and on Tuesday the agent has no idea it ever happened. You end up re-explaining the same context, re-running the same tool chains, and watching it make the same mistakes.

Hermes solves this with what it calls procedural memory. Every time the agent completes a successful tool chain, it saves that sequence as a skill file. These are plain Python scripts, shell scripts, or markdown files stored in a local folder at ~/.hermes/skills/. When you start a new session, the agent reloads the entire folder. It also maintains a small markdown file for persistent facts and runs full-text search over every past session it has ever executed.

The practical effect is that Hermes remembers how you fixed something last time instead of reinventing the solution from scratch.

The Model: Qwen 3.6 Open Weights

Hermes runs on Qwen 3.6, an open-weights model that requires only about 20 GB of memory. According to the video, this model matches the output quality of 400-billion-parameter models that would need far more hardware to run. That means the top-ranked agent on the OpenRouter leaderboard can run locally on a laptop with a decent GPU, with no API calls required.

The Honest Limitation

The video acknowledges a specific constraint worth highlighting. Hermes markets itself as "self-improving," but the model weights never actually update. The underlying model is frozen. What improves is the retrieval layer: the agent gets better at looking up past tool calls and reusing them. This is a skill cache, not autonomous learning. The model itself does not change based on your interactions with it.

That distinction matters. Hermes improves its workflow recall over time, but it does not learn new capabilities or reasoning patterns that were absent from the base model.

Why This Matters for Local-First AI

For the first time, the most-used agent on a major leaderboard is something you can run on consumer hardware. You do not need an API key, a cloud subscription, or a data center. The combination of open weights, local execution, and persistent memory puts Hermes in a category that did not exist six months ago.

This is especially relevant for developers and teams working with sensitive codebases or operating in environments where sending data to external APIs is a non-starter.

Key Takeaways

  • Hermes Agent hit 140K GitHub stars in three months and became the number one agent on OpenRouter, serving 224 billion tokens in a single day.
  • Procedural memory saves successful tool chains as skill files in a local folder, so the agent remembers what worked across sessions.
  • The underlying model is Qwen 3.6, an open-weights model that fits in 20 GB and competes with models that are 20 times larger.
  • "Self-improving" is a marketing claim. The weights are frozen. The improvement comes from retrieving and replaying past tool calls.
  • This is the first top-ranked agent that runs on a laptop, which opens local-first AI workflows for developers who need privacy or offline access.

Resources

Published June 11, 2026. Writeup generated from a favorited TikTok.