Use NemoHermes when you want NemoClaw to create an OpenShell sandbox that runs Hermes instead of the default OpenClaw agent.
The nemohermes command is an alias for nemoclaw with the Hermes agent pre-selected.
Review the Prerequisites before starting.
Docker must be installed, running, and reachable from the current shell before Hermes onboarding can build the sandbox image.
On Linux, the installer can install Docker, start the service, and add your user to the docker group.
If it changes group membership, run the printed newgrp docker recovery command before rerunning the installer.
On macOS, start Docker Desktop or Colima before you run the installer.
The first Hermes build can take several minutes because NemoClaw builds the Hermes sandbox base image if it is not already cached.
Start the installer with NEMOCLAW_AGENT=hermes set in your shell.
The installer installs the CLI, selects the nemohermes alias, and runs the guided onboarding flow.
If a headless host needs to expose the Hermes API through a remote URL or tunnel, set CHAT_UI_URL before onboarding.
Use the externally reachable origin for port 8642, without the /v1 path.
NemoClaw derives the forwarded port from this value, binds the forward for remote access when the origin is non-loopback, and prints the final OpenAI-compatible base URL with /v1 in the ready summary.
For SSH local port forwarding to 127.0.0.1:8642, leave CHAT_UI_URL unset.
Do not append an OpenClaw #token= fragment to the Hermes URL.
Hermes API clients authenticate with the bearer token from the generated Hermes environment instead of an OpenClaw dashboard URL token.
If NemoClaw is already installed, start Hermes onboarding directly.
The onboard wizard asks for an inference provider, model, any required credential, and sandbox name before it prints the review summary.
After you confirm, NemoClaw registers inference, prompts for supported messaging channels, builds and starts the sandbox, sets up Hermes, then applies the selected network policy tier and presets.
At any prompt, press Enter to accept the default shown in [brackets], type back to return to the previous prompt, or type exit to quit.
The default Hermes sandbox name is hermes.
Use a distinct sandbox name, such as my-hermes, so you can run Hermes and OpenClaw sandboxes side by side.
NemoClaw prevents same-name reuse when an existing sandbox uses a different agent.
Choose the inference provider that matches where you want Hermes model traffic to go. The provider options and credential environment variables are the same as the standard NemoClaw quickstart. For provider-specific prompts, refer to the Inference Options page. The Hermes wizard does not ask for Brave Web Search because Hermes does not use NemoClaw’s OpenClaw web-search configuration.
After provider and model selection, review the summary and confirm the build.
NemoClaw writes Hermes configuration into /sandbox/.hermes, routes model traffic through inference.local, and starts the Hermes gateway inside the sandbox.
The Hermes image includes runtime dependencies for the supported NemoClaw messaging integrations, API service, and health endpoint.
The base image does not include unsupported Hermes integrations.
Hermes uses an agent-specific baseline policy that allows the Hermes binary and Python runtime to reach the required Nous Research service endpoints, PyPI, NVIDIA inference endpoints, and selected messaging APIs.
For CI or scripted installs, set the required environment variables before running the installer.
The example below uses NVIDIA Endpoints and creates a sandbox named my-hermes.
Use the provider variables from Inference Options when you choose a different provider.
When onboarding completes, NemoClaw prints the sandbox name, model, lifecycle commands, and Hermes API endpoint.
Hermes exposes an OpenAI-compatible API on port 8642, not a browser dashboard.
To also launch the native Hermes web dashboard, opt in before onboarding:
The dashboard uses port 9119 by default.
Set NEMOCLAW_HERMES_DASHBOARD_PORT before onboarding to choose a different port.
Set NEMOCLAW_HERMES_DASHBOARD_TUI=1 to enable Hermes’ optional in-browser TUI tab.
For upstream dashboard features, see the
Hermes web dashboard documentation.
To chat with the agent from a terminal, follow these steps:
Connect to the sandbox and start the Hermes CLI.
Inside the sandbox, run the Hermes CLI.
The onboard flow starts the port forward automatically. Check the health endpoint from the host to confirm that the Hermes API is reachable.
If the command cannot connect after a reboot or terminal restart, start the forward again.
Configure an OpenAI-compatible client with the base URL http://127.0.0.1:8642/v1.
Hermes uses API header authentication for client requests.
Do not append an OpenClaw #token= URL fragment to the Hermes endpoint.
When NEMOCLAW_HERMES_DASHBOARD=1 is set during onboarding, NemoClaw starts hermes dashboard --no-open inside the sandbox and forwards http://127.0.0.1:9119/ on the host.
The API endpoint remains separate on 8642.
If the dashboard forward is missing after a reboot or terminal restart, start it again:
Treat the dashboard as a local management UI. Avoid exposing it on shared or public networks unless you put it behind your own access controls.
Use the same lifecycle commands as a standard NemoClaw sandbox.
The nemohermes alias keeps help text and recovery messages aligned with Hermes, while targeting the same registered sandbox.
nemoclaw list shows the agent type for each sandbox so you can distinguish Hermes and OpenClaw entries.
To change the active model or provider without rebuilding the sandbox, use nemohermes inference set.
It updates the OpenShell inference route and patches /sandbox/.hermes/config.yaml without restarting Hermes.
To remove the sandbox when you are done, destroy it explicitly.
nemohermes alias behavior.