# hermes [NousResearch Hermes Agent](https://github.com/NousResearch/hermes-agent) — a self-improving AI agent — packaged for lair infra and published to `git.lair.cafe/lair/hermes`. ## How it's built Upstream ships its own `Dockerfile` (debian 13 + s6-overlay), so there is **no vendored Containerfile here**. The `images` workflow (and `build.sh`) build straight from the upstream git context at the latest release tag: ``` podman build github.com/NousResearch/hermes-agent.git# \ -t git.lair.cafe/lair/hermes: -t git.lair.cafe/lair/hermes:latest ``` Builds are **release-triggered** (daily poll of the GitHub releases API; a build runs only when that version isn't already in our registry) and **self-healing** (a failed build leaves the version absent, so the next poll retries). Force a rebuild via the workflow's `force` dispatch input, or locally: ``` HERMES_REF=v0.2.0 ./build.sh ``` ## One image, two roles Upstream's compose runs a `gateway` (the agent) and a `dashboard` (web UI on `127.0.0.1:9119`) from the **same image**. Persistent state — `config.yaml`, `.env`, sessions, memory, skills — all lives under `/opt/data` (the single volume). Provider keys and the model backend go in those mounted files, never in the image. ## Deploying on bob See [`hermes.container`](hermes.container) — a rootful quadlet matching the existing `agent-zero` / `open-webui` services on bob. Summary: 1. `git.lair.cafe/lair/hermes:latest` must be published first (run the `images` workflow). 2. `sudo install -d -o 10000 -g 10000 /var/lib/hermes` 3. Drop `config.yaml` + `.env` into `/var/lib/hermes`: - **LLM backend → local sovereign inference.** Point hermes at `http://hanzalova.internal:31313/v1` (the endpoint open-webui already uses). Hermes is OpenRouter-first with per-provider base URLs and no plain OpenAI-base slot, so define the OpenAI-compatible provider/model in `config.yaml` (confirm the exact schema against hermes docs). - Secrets (any provider keys, tool keys) go in `.env`, not the quadlet. 4. Install `hermes.container` to `/etc/containers/systemd/`, `daemon-reload`, `start hermes.service`. ### Open item: dashboard LAN exposure The dashboard defaults to `127.0.0.1:9119` and **stores API keys with no auth**. The draft quadlet publishes it on the LAN at `:5100` (the 5080/5090 convention), which requires telling the dashboard to bind `0.0.0.0` inside the container (a `config.yaml`/env setting to confirm). Only expose on a trusted LAN; front it with an authenticating reverse proxy for anything wider.