InvokeModel requests. You get Hermes’s workflow — including its self-improving skills and learning loop — with Claude or other Bedrock models as the backing inference, and no API keys to manage.
Experimental pack. Hermes is under active development by NousResearch. Expect upstream changes between Lowkey versions.
What makes Hermes different
- Self-improving skills. Hermes has a built-in learning loop that improves the skills it uses over time, letting the agent get better at tasks it repeats.
- Lightweight. Hermes runs on a
t4g.mediumwith no data volume. It’s the right choice when you want a capable terminal agent without the resource overhead of OpenClaw. - Bedrock via bedrockify. Hermes expects an OpenAI-compatible API. The pack configures it to talk to bedrockify at
http://localhost:8090/v1, which translates its calls into Bedrock requests using the instance’s IAM role. - OpenAI-style model IDs. Hermes uses model IDs in the format
anthropic/claude-opus-4.6, not Bedrock-style IDs likeus.anthropic.claude-opus-4-6-v1. Bedrockify handles the translation. - No gateway, no memory service. Unlike OpenClaw, Hermes is a pure CLI binary. Nothing runs in the background between sessions.
Compatible profiles
Prerequisites
- AWS CLI configured with admin access in a dedicated sandbox account
- Amazon Bedrock model access enabled in your target region (default:
us-east-1) - No API keys, Docker, or interactive login needed
Install
--skip-setup to suppress interactive prompts. It writes ~/.hermes/config.yaml and ~/.hermes/.env, pointing Hermes at bedrockify on localhost.
Connect and use
After the stack deploys, SSM into the instance and runhermes directly:
Configuration options
Use
--hermes-model to change the model, not the generic --model flag. The generic --model flag carries Bedrock-style IDs (e.g. us.anthropic.claude-opus-4-6-v1) from the bootstrap dispatcher, which Hermes does not accept. The pack ignores --model entirely and reads --hermes-model instead.--hermes-model:
Bedrockify translates these OpenAI-style IDs into their corresponding Bedrock model IDs at inference time.
Resource requirements
Notes and limitations
- Hermes is a pure CLI pack — no background gateway service runs between sessions. Each
hermesinvocation is a fresh process. - Hermes has no built-in persistent memory between sessions the way OpenClaw does. If you need cross-session continuity and multi-channel access, use OpenClaw instead.
- The
--hermes-modelflag is Hermes-specific. You cannot use Bedrock ARNs or cross-region inference IDs directly — bedrockify maps the OpenAI-style ID to a Bedrock model ID internally. - Tearing down the stack leaves no lingering state to clean up — the data volume is 0 GB and the instance has no persistent agent storage.