Hermes Agent 0.13.0 is the newest release of a popular open‑source AI agent that is already reshaping how developers build and run autonomous tools. The update brings a new Reflective Phase that lets the agent learn from its own actions, a big jump in token usage, and a cleaner way to track tool‑loop reasoning. In this article we’ll walk through what Hermes Agent is, why the 0.13.0 update matters, and how you can start using it today.
What is Hermes Agent?
Hermes Agent is a lightweight, open‑source framework that lets you create AI agents that can read, reason, and act on the web, APIs, or local files. Think of it as a robot that can read a document, decide what to do next, and then carry out that action—whether it’s sending an email, calling a REST endpoint, or generating a new file.
The core idea is simple: give the agent a prompt and a set of tools it can call. The agent then decides which tool to use, calls it, and uses the result to decide its next step. Because the agent is open source, developers can add new tools, tweak the reasoning logic, or run it on their own servers.
Core Features of 0.13.0
The 0.13.0 release adds several important pieces that make Hermes Agent more powerful and easier to use.
Reflective Phase
The new Reflective Phase lets the agent pause after a few tool calls, look back at what it did, and write new skill files in Markdown. This means the agent can automatically create new “recipes” for similar tasks it has just completed. For example, if the agent just learned how to book a flight, it can write a new skill file that will let it book flights faster next time.
Token Volume Shift
According to a recent article on TechTimes, Hermes Agent now processes 224 B tokens in a week, surpassing OpenClaw’s 186 B tokens. This jump shows that more developers are using Hermes Agent on OpenRouter, and it also means the agent can handle larger workloads.
Tool Loop Reasoning Markers
The update fixes how the agent records its reasoning during tool loops. The new markers keep the agent’s “thoughts” separate from the tool outputs, making debugging easier and ensuring the agent stays on the right track.
Reflective Phase Explained
The Reflective Phase is the most exciting part of 0.13.0. Here’s how it works in plain language:
- Task Completion – The agent finishes a task after a few tool calls.
- Reflection – It looks back at the steps it took and the results it got.
- Skill Writing – It writes a new Markdown file that captures the pattern it just used.
- Future Use – When a similar task comes up, the agent can load that skill file and skip the learning step.
This feature turns Hermes Agent into a self‑improving system. Instead of always starting from scratch, the agent builds a library of skills as it works. That means it gets faster and more accurate over time.
Example Use Case
Imagine you run a small e‑commerce store. You want an agent that can automatically pull product data from a spreadsheet, generate product descriptions, and post them to your website. With Hermes Agent 0.13.0:
- The agent reads the spreadsheet.
- It calls a text‑generation tool to create descriptions.
- After posting the data, it reflects on the process.
- It writes a skill file that remembers the exact steps needed to post a new product.
Next time you add a new product, the agent can use that skill file and skip the learning phase.
Token Volume Shift and Market Impact
The token volume shift is a clear sign that developers are trusting Hermes Agent for larger projects. The TechTimes article shows that Hermes Agent now handles 224 B tokens, while OpenClaw handles 186 B tokens. That’s a 20 % increase in usage.
Why does this matter?
- Scalability – More tokens mean the agent can process longer documents or more complex conversations.
- Community Growth – Higher usage often leads to more contributors, better documentation, and more third‑party tools.
- Competitive Edge – Developers who adopt Hermes Agent early can build more sophisticated agents faster than those stuck with older tools.
Integration with Existing Workflows

Hermes Agent is designed to fit into your existing toolchain. Below is a quick guide on how to get started.
1. Install Hermes Agent
pip install hermes-agent
2. Add a Tool
from hermes_agent import Agent, Tool
def get_weather(location: str) -> str:
# Call an external weather API
return "Sunny"
weather_tool = Tool(name="get_weather", function=get_weather)
agent = Agent(tools=[weather_tool])
3. Run the Agent
response = agent.run("What is the weather in Paris?")
print(response)
4. Use the Reflective Phase
When you run the agent, it will automatically create a skill file after the task. Look for a new Markdown file in your project folder. You can then load that skill file for future tasks.
Internal Links
- For more on how to build agents, visit our product overview.
- If you want to see real‑world examples, check out our case studies.
- Learn about the Neura AI ecosystem at the main site: Neura AI.
OpenCrabs and Hermes: Complementary Tools
OpenCrabs is another open‑source AI agent that focuses on self‑healing and self‑hosting. While Hermes Agent excels at reflective learning and tool integration, OpenCrabs offers a single‑binary, fully autonomous agent that can run on a Raspberry Pi or a cloud VM. If you need a lightweight, self‑contained agent, OpenCrabs is a good choice. If you want a more flexible, learning‑oriented agent, Hermes Agent 0.13.0 is the way to go.
Future Outlook
The Hermes Agent team is already planning new features:
- Multi‑language support – Agents that can switch between English, Spanish, and other languages.
- Better debugging tools – Visual dashboards to see the agent’s reasoning steps.
- Community skill marketplace – A place to share and download skill files.
Because Hermes Agent is open source, the community can contribute new tools, fix bugs, and suggest improvements. If you’re interested, check out the GitHub repository and start contributing today.
Conclusion
Hermes Agent 0.13.0 brings a powerful new Reflective Phase, a significant token volume increase, and cleaner reasoning markers. These updates make the agent faster, smarter, and easier to integrate into real‑world projects. Whether you’re building a chatbot, automating data pipelines, or creating a personal assistant, Hermes Agent gives you the tools to get the job done.
If you want to dive deeper, explore the official documentation, try the agent yourself, or join the community discussion on GitHub. The future of open‑source AI agents looks bright, and Hermes Agent is leading the way.