Add Configuration Backup and Restore
TL;DR
New hermes backup and hermes import commands allow for full snapshots of agent configurations, sessions, skills, and memory, facilitating easy migration between machines.
## What changed Hermes Agent introduced two new CLI commands: hermes backup and hermes import. These commands create complete snapshots that capture agent configurations, active sessions, auto-generated skills, and the full three-layer memory store.
The update arrived after the v0.9.0 release on 13 April 2026. It targets self-hosted users who run the agent on VPS instances and need to move or duplicate setups without rebuilding from scratch.
## Why it matters Portable snapshots lower the cost of switching hosts or recovering from a failed VPS. Vibe Builders gain the ability to treat the agent as movable infrastructure rather than a machine-specific install.
The move pressures SaaS agent tools that hide state management behind subscriptions. It also bets that users will tolerate self-hosting if data can travel cleanly between machines.
## How to use it Run hermes backup from the terminal on your current VPS to produce a single snapshot file. Copy the file to the new machine and execute hermes import to restore configurations, sessions, skills, and memory.
The same actions are available in the local web dashboard started with hermes web. Both paths work on the free MIT-licensed version with no paid plan required.
## Watch for Successful zero-downtime migrations reported in GitHub issues will confirm the feature works as intended. Snapshot bloat or corrupted skill exports would break the promise. The next logical step is a selective restore command that lets users pull only memory or only skills.
Harsh’s take
For a solo Vibe Builder running real work in 2026, the backup commands remove one concrete pain point: losing weeks of learned skills and memory when a $5 VPS dies. The remaining trade-off is unchanged. You still maintain YAML files, bot tokens, and an always-on server yourself.
Backups make recovery faster but do not eliminate the operational load. They simply make it less catastrophic.
Do this now: schedule a weekly backup to an external bucket and test a full import on a second VPS before you need it.
by Harsh Desai
About Hermes Agent
View the full Hermes Agent page →All Hermes Agent updatesMore from Hermes Agent
- FeatureIntegrate LSP semantic diagnostics for file edits
The agent now runs a language server against edited files to catch type errors and undefined symbols immediately. This provides deeper analysis than basic linting for `write_file` and `patch` operations.
- App UpdateLaunch native Windows support in early beta
Hermes now runs natively on Windows via cmd.exe and PowerShell without requiring WSL. Includes a dedicated PowerShell installer and fixes for path normalization and process management.
- IntegrationAdd native support for LINE and SimpleX Chat
Hermes expands its messaging reach to 22 platforms with the addition of LINE and the privacy-focused SimpleX Chat. Both are implemented as first-class messaging adapters.