# Hermes Chatto Plugin A [Chatto](https://github.com/chattocorp/chatto) platform adapter plugin for [Hermes Agent](https://github.com/NousResearch/hermes-agent). Connects your self-hosted Chatto server to Hermes so you can interact with the agent through chat rooms and DMs. All API interaction goes through [chattolib](https://github.com/chattocorp/chattolib): a persistent WebSocket realtime connection delivers inbound events, ConnectRPC over HTTP handles outbound messages, reactions, uploads and more. Messages are processed through the full Hermes Agent pipeline (tool use, memory, reasoning) and answered in real time. Tested against Chatto v0.4.20 with the vendored `chattolib[realtime]` 0.4.20.post1 (realtime protocol v1). Chatto servers older than v0.4.20 are not supported. Before setup, here's the part most people want to know: how Hermes behaves once it's in your Chatto instance. ## Hermes Agent behavior in Chatto | Context | Behavior | |---------|----------| | **DMs** | Hermes responds to every message. No `@mention` needed. Each DM has its own session. | | **Rooms** | Opt-in per room: a room listed in `CHATTO_REQUIRE_MENTION_ROOMS` gets answers only when Hermes is addressed (`@mention`, `@all`, `@here`); one listed in `CHATTO_OPTIONAL_MENTION_ROOMS` gets an answer for every message. A room on neither list stays silent — read-only. | | **Threads** | If you reply in a thread, Hermes keeps the thread context isolated from the parent room. The bot auto-follows threads it participates in. | | **Room awareness** | Every channel turn comes with the member roster attached (who is in the room, with live presence), so Hermes always knows his audience — in every thread, every turn. The roster is fetched once per room and kept fresh from presence events without extra directory lookups; the first 20 members are listed, larger rooms get an "and N more" note. DMs never carry one. | | **Processing indicators** | Hermes adds a 👀 reaction when it starts processing a message, and replaces it with ✅ on success, ❌ on failure, or 🚫 when processing was cancelled. | | **Editing your messages** | An edit within 5 minutes of posting counts as a correction: while Hermes is still working on the original, he restarts with the edited text (🚫 → 👀); if he had ignored or not yet answered the message, the gates are re-checked against the new text — adding a forgotten `@mention` this way works. Edits to messages Hermes has already answered change nothing. Disable with `CHATTO_EDIT_DISPATCH=false`. | | **Typing indicators** | Hermes broadcasts persistent typing indicators while it's working, so users know the bot is active. | | **Message splitting** | Long responses (>10000 chars) are automatically split into multiple messages. | > **Tip:** Rooms are silent until you list them. Put a room in `CHATTO_REQUIRE_MENTION_ROOMS` to have Hermes answer only `@mentions` there, or in `CHATTO_OPTIONAL_MENTION_ROOMS` to have him answer every message. ## Capability Matrix Capabilities natively implemented by the Chatto plugin adapter: | Capability | Supported | |------------|--------| | text | yes | | markdown | yes | | threads | yes | | reactions | yes | | message editing | yes | | inbound edit processing | yes (correction / late-mention / ignored, see behavior table) | | message deletion | yes | | typing indicators | yes | | processing notifications | yes (👀/✅/❌/🚫) | | file attachments | yes (chunked upload) | | image / video / audio / documents | yes (native attachments) | | DM initiation | yes | | room creation | yes | | room join/leave over DM | yes (`/join`, `/leave`) | | member directory | yes (cached) | | room member context | yes (roster on every channel turn, presence kept live from a per-room cache) | | presence broadcasting | yes (online, refreshed) | | custom status | yes | | read state management | yes | | auto-reconnect | yes (with duplicate-event suppression) | ## Prerequisites 1. **A running Chatto server** — self-hosted and accessible from the Hermes host. See the [Chatto repository](https://github.com/chattocorp/chatto) for installation instructions. 2. **A Chatto user account** — the adapter logs in with a username and password (or token). Create a dedicated account for the bot (e.g., `hermes`). 3. **Room membership** — the bot account must be a member of any room where you want it to respond; the adapter picks up every room the account has joined. Membership can be granted natively in Chatto (invite the bot account), or by DMing the bot `/join ` (see [Managing Rooms over DM](#managing-rooms-over-dm)). For DMs, simply start a direct message with the bot. 4. **Network access** — the Hermes host must reach the Chatto server URL over HTTPS (or HTTP) and establish a WebSocket connection to `/api/realtime`. > **Info:** The adapter uses WebSocket protocol v1 (compatible with Chatto v0.4.20+). Ensure your Chatto server is up to date. ## Install ### Option A: Plugin Install (Recommended) ```bash hermes plugins install https://gogs.netdome.biz/paul/hermes-chatto-plugin.git ``` Hermes clones the plugin from that Git URL into its platform-plugin directory and auto-discovers it on gateway startup — no manual registration needed. > **Note:** During install Hermes reads the env vars declared in the plugin's `plugin.yaml` (`requires_env` / `optional_env`) and prompts you for each — connection details plus a few behaviour options. Your answers are written to `~/.hermes/.env`; secrets should still live there only (see [Configuration](#configuration)). ### Option B: Manual Installation Copy the plugin files into the Hermes Agent plugin directory so they sit at `~/.hermes/plugins/platforms/chatto/`. Hermes auto-discovers platform plugins on gateway startup — no manual registration needed. ## Configuration ### Option A: Interactive Setup (Recommended) Run the guided setup command: ```bash hermes gateway setup ``` Select **Chatto** when prompted, then provide your server URL, login, and password when asked. ### Option B: Environment Variables Add the following to your `~/.hermes/.env` file: ```bash # Required (token instead of login/password also works) CHATTO_BASE_URL=https://chat.example.com CHATTO_LOGIN=hermes CHATTO_PASSWORD=your-password # Optional: home channel for cron/notification delivery when there is no # conversation context to reply into — list it in one of the mention room # lists below too if the bot should also converse there # CHATTO_HOME_CHANNEL=REljMv5Pgolo6Y9 # Optional: restrict who can talk to the bot (comma-separated logins) # CHATTO_ALLOWED_USERS=alice,bob # Optional: allow any user to talk to the bot (default: false) # CHATTO_ALLOW_ALL_USERS=true # Rooms the bot participates in — without at least one entry below, # every room except DMs stays silent: # CHATTO_REQUIRE_MENTION_ROOMS=REljMv5Pgolo6Y9 ← answer only @mentions # CHATTO_OPTIONAL_MENTION_ROOMS=REljMv5Pgolo6Y9 ← answer every message # Optional: auto-create threads for replies in rooms (default: true) # CHATTO_AUTO_THREAD=true # Optional: 👀/✅/❌/🚫 processing reactions (default: true) # CHATTO_REACTIONS=true # Optional: treat edits of chat messages as corrections (default: true). # A message being processed restarts with the edited text; a message the bot # ignored (e.g. missing @mention) is re-checked against its new text; # already-answered messages stay answered. # CHATTO_EDIT_DISPATCH=true # Optional: how long after posting an edit may still land, in seconds # (default: 300). Older edits are ignored. # CHATTO_EDIT_WINDOW=300 ``` Secrets (`CHATTO_TOKEN`, `CHATTO_PASSWORD`) belong in `~/.hermes/.env`, never in `config.yaml`. ### Option C: config.yaml Or configure via `~/.hermes/config.yaml`: ```yaml gateway: platforms: chatto: enabled: true extra: base_url: https://chat.example.com home_channel: REljMv5Pgolo6Y9 require_mention_rooms: [] # rooms that answer only @mentions optional_mention_rooms: [] # rooms that answer everything allowed_users: [] # empty = deny all (or set allow_all_users) allow_all_users: true edit_dispatch: true # process message edits as corrections edit_window: 300 # seconds after posting an edit may land ``` > **Note:** Environment variables override `config.yaml` values. ### Environment Variables | Variable | Required | Default | Description | |----------|----------|---------|-------------| | `CHATTO_BASE_URL` | Yes* | ChattoHQ (`https://chat.chatto.run`) | Base URL of the Chatto server (e.g., `https://chat.example.com`) | | `CHATTO_LOGIN` | Yes* | — | Chatto username (login) | | `CHATTO_PASSWORD` | Yes* | — | Chatto password | | `CHATTO_TOKEN` | No | — | Existing bearer token — alternative to login/password | | `CHATTO_HOME_CHANNEL` | No | _(none)_ | Default delivery target for cron/notification output when there is no inbound conversation context to reply into. Without it, context-less deliveries have no Chatto target and are not sent. Not exempt from the mention lists. | | `CHATTO_ALLOWED_USERS` | No | _(deny all)_ | Comma-separated Chatto logins (or user IDs) allowed to talk to the agent. Exact match, case-sensitive. | | `CHATTO_ALLOW_ALL_USERS` | No | `false` | Allow any Chatto user to talk to the agent (`true`/`false`) | | `CHATTO_REQUIRE_MENTION_ROOMS` | No | _(silent everywhere)_ | Comma-separated room IDs where Hermes answers only when addressed (`@name`, `@all`, `@here`). A room on neither mention list stays silent. | | `CHATTO_OPTIONAL_MENTION_ROOMS` | No | — | Comma-separated room IDs where Hermes answers every message, addressed or not. Must not overlap `CHATTO_REQUIRE_MENTION_ROOMS` (rejected at startup). | | `CHATTO_AUTO_THREAD` | No | `true` | Auto-create threads for replies in rooms (`true`/`false`) | | `CHATTO_REACTIONS` | No | `true` | 👀/✅/❌/🚫 processing reactions (`true`/`false`) | | `CHATTO_EDIT_DISPATCH` | No | `true` | Treat edits of chat messages as corrections: a message being processed restarts with the edited text, an ignored message is re-checked against its new text, already-answered messages stay answered (`true`/`false`) | | `CHATTO_EDIT_WINDOW` | No | `300` | How long after posting an edit may still land, in seconds; older edits are ignored | \* Either login+password or `CHATTO_TOKEN` is required. ## Start the Gateway Once configured, start the gateway: ```bash hermes gateway ``` The bot should connect to your Chatto server within a few seconds. Send it a message — a DM or any message in a room — to test. If nothing happens at startup — plugin failed to load, credentials rejected, server unreachable — run `hermes logs` to see what the Chatto adapter reported. You can run `hermes gateway` in the background or as a systemd service for persistent operation. ## Features ### Realtime Connection The adapter maintains a persistent WebSocket connection to the Chatto server through chattolib's event streaming API. All realtime events — room messages, reactions, DM notifications — arrive pre-decoded and are dispatched to the Hermes Agent pipeline. ### ConnectRPC API (Outbound) All outbound actions — sending messages, reactions, typing indicators, file uploads, etc. — use chattolib's high-level API methods, which handle ConnectRPC calls over HTTP with authentication and error recovery automatically. ### Markdown Support Hermes sends messages with full Markdown formatting. Chatto renders Markdown natively, so code blocks, lists, bold/italic, links, and inline code all display correctly. ### Thread / Reply Support When you reply to a message in Chatto (creating a thread), Hermes responds within that thread. Thread context stays isolated from the parent room — each thread has its own session namespace. With auto-threading enabled (default), fresh room replies open a thread under the incoming message, keeping busy-room timelines clean. The bot auto-follows threads it participates in. ### Room Member Roster Hermes cannot see who else is in a room: unaddressed channel messages are dropped by the mention gates long before they could teach him a name. So every turn in a channel carries the member roster alongside the message text — one entry per member as `@login (Display Name, presence)`, e.g. `@alice (Alice, online), @bob (Bob, offline)`. The bot's own account and deleted users are left out; rooms larger than 20 members end with `… and N more`. Presence is the Chatto status (`online`, `away`, `do not disturb`, `offline`). The roster rides on every channel turn — threads hold isolated sessions, so each turn needs its own copy. That repetition is free of API calls: the adapter keeps a small projection per room (member IDs plus their cached users), fetched once from the directory, and `presence_changed` events patch those users in place, so someone going `away` or `offline` shows up on the next turn without any extra lookup. The bot's own presence refresh never enters the roster. Membership changes (`user_joined_room`/`user_left_room`), leaving a room and reconnects discard the projection, and the room's next turn refetches once — protocol v1 sends no presence snapshot on subscribe, so a discarded cache is what forces fresh data after downtime. If the initial lookup fails, the turn proceeds without the roster and the next turn tries again. ### Reactions Hermes uses emoji reactions for processing lifecycle notifications: - 👀 — added when the agent starts processing your message - ✅ — replaces 👀 when processing completes successfully - ❌ — replaces 👀 when processing fails - 🚫 — replaces 👀 when processing was cancelled Disable the lifecycle reactions with `CHATTO_REACTIONS=false`. ### Message Editing and Deletion The adapter supports editing existing messages (via chattolib's `update_message`) and deleting them (via `delete_message`). Streaming replies are delivered as incremental edits to a single message. Inbound edits are processed too — see [Editing Your Messages](#editing-your-messages) under Usage Notes. ### Typing Indicators While the agent works, the adapter broadcasts a persistent typing indicator per room, refreshing it until the response is sent. ### Message Splitting Messages longer than 10000 characters are automatically split into multiple sequential messages (split threshold: 9900 chars to leave room for separators). ### Chunked File / Attachment Upload File attachments are uploaded via chattolib's chunked upload API: 1. `create_upload` — initiates an upload session 2. `upload_chunk` — uploads the file in 256 KB chunks (SHA-256 verified per chunk) 3. `complete_upload` — finalizes the upload and attaches it to the message Images, videos, audio and documents are posted as native Chatto attachments; several images can be bundled into a single message. ### Auto-Reconnect If the realtime stream drops, the adapter reconnects automatically with exponential backoff (1 s → 30 s max, jittered) and honours server-provided retry hints. Events the Chatto server redelivers after a reconnect are recognised by an in-memory event-ID list and processed only once. ### Read State Management After discovering rooms, the adapter marks joined rooms as read and dismisses pending notifications (`MarkRoomAsRead` / `DismissAllNotifications`), keeping the bot's unread indicators clean. ### DM Initiation The adapter can proactively start direct messages with other Chatto users via the `StartDM` RPC endpoint. This is used for cron job delivery and notifications. ### Room Creation The adapter can create new rooms via `CreateRoom`. This is available to the agent for organizing conversations or creating dedicated channels for tasks. ### Member Directory User lookups (for mention resolution etc.) go through `GetUser` and are cached per user ID and per handle to reduce API calls. ### Presence Broadcasting Presence is a TTL the server lets lapse, not a flag that stays set: `UpdatePresence` rejects `OFFLINE` outright ("stop refreshing to go offline"). The bot therefore announces itself online on startup and a background task re-announces it every 60 seconds until disconnect cancels that task. Going offline is exactly that cancellation — the adapter never sends an offline status. | Presence Status | API Value | |-----------------|-----------| | Online | 1 | | Away | 2 | | Do Not Disturb | 3 | ## Usage Notes ### Room Participation Chatto distinguishes only direct messages and rooms. Every multi-person room is opt-in, configured with two mutually exclusive lists: - `CHATTO_REQUIRE_MENTION_ROOMS` — Hermes answers a message in these rooms only when it addresses him: by `@login`, by `@display_name`, or with the room-wide handles `@all`/`@here`. Anything else is dropped. - `CHATTO_OPTIONAL_MENTION_ROOMS` — every message gets an answer, addressed or not. A message aimed at someone *else* is acknowledged with a 🫥 reaction instead of an answer. A room on neither list stays silent: it remains joined and is marked as read, but its history is never seeded into the agent's context and its messages never reach the agent pipeline — no answers, no processing reactions. This is also how to quiet server-forced rooms that every account is joined to automatically. Listing a room on both lists is rejected as conflicting configuration at startup. The lists gate inbound replies only. DMs always get a response so `/join` stays reachable, and context-less cron/notification delivery via `CHATTO_HOME_CHANNEL` is unaffected. ### Mention Recognition Mention recognition matches the Chatto web frontend (FDR-006): handles are matched case-insensitively (`@Hermes_Bot` and `@hermes_bot` are the same), only `@all` and `@here` are broadcast handles, a sentence-ending punctuation is not part of the handle (`frag @bob.` addresses Bob), mentions inside code blocks and inline code spans do not count, and an `@name` no user holds is treated as plain text — Hermes answers rather than staying silent on such a false positive. Other users are recognized by login only; mentioning them by display name is not detected as "aimed at someone else". ### Editing Your Messages Editing a message you sent is treated as a correction, not as new traffic. What an edit does depends on where the original message stands: | Original message | Effect of the edit | |------------------|--------------------| | Being processed right now (👀) | The running turn is cancelled (🚫) and restarts immediately with the edited text (👀 again). | | Queued behind another turn in the same conversation | The queued message is updated in place to the edited wording — no stale answer later. | | Ignored so far (e.g. missing `@mention` in a channel) | The admission gates are re-checked against the new text; if it passes now — mention added, for example — the message is answered for real. | | Already answered (✅/❌) | Nothing. Answered messages stay answered, so old conversations cannot be re-animated by editing them. | Two limits apply: only edits within `CHATTO_EDIT_WINDOW` seconds of posting are processed (default 300), and edits whose text is a membership command (`/join`, `/leave`) never run those commands again. The whole behavior can be turned off with `CHATTO_EDIT_DISPATCH=false`. ### Allowed Users By default, if neither `CHATTO_ALLOWED_USERS` nor `CHATTO_ALLOW_ALL_USERS` is set, the bot denies all users as a safety measure. Configure one of: - `CHATTO_ALLOWED_USERS=alice,bob` — only these Chatto logins can interact with the bot - `CHATTO_ALLOW_ALL_USERS=true` — any Chatto user can interact Setting both at once is rejected as conflicting configuration. > **Warning:** Setting `CHATTO_ALLOW_ALL_USERS=true` means any user on your Chatto server has full access to the agent's capabilities, including tool use and system access. Use this only on trusted, private Chatto instances. For deployment-level hardening beyond the bot's own gates, see the security documentation of your Hermes Agent distribution. ### Home Channel The home channel is the default outbound target for proactive messages — cron job output, reminders, and notifications when there is no inbound conversation context to reply into. Set it via: - `CHATTO_HOME_CHANNEL` env var (room ID) - `config.yaml` → `gateway.platforms.chatto.extra.home_channel` Without a set home channel, context-less cron/notification deliveries have no Chatto target and are not sent — set one if you plan to use Hermes' proactive output. The home channel follows the same participation rules as any room: a silent home channel still receives cron/notification posts, but the bot converses there only if it is listed in one of the mention lists too. ### Managing Rooms over DM The bot can manage its own room memberships when you DM it: - `/join ` — join a room by ID - `/join #name` — join a room by name (case-insensitive; ambiguous names return the candidate IDs) - `/leave ` — leave a room These commands work only in direct messages with the bot and require you to pass the same user check as normal messages (`CHATTO_ALLOWED_USERS` / `CHATTO_ALLOW_ALL_USERS`). They change membership on the Chatto server itself (RoomService/JoinRoom, RoomService/LeaveRoom), so joined rooms survive gateway restarts and `/leave`d rooms stay left. A channel `/join` reply reports the room's mention-list status: an unlisted room answers with ready-to-paste `CHATTO_REQUIRE_MENTION_ROOMS` / `CHATTO_OPTIONAL_MENTION_ROOMS` lines for `~/.hermes/.env` — that reply is the place to copy the room ID from, since room IDs are hard to find elsewhere. The bot never edits `.env` itself; a gateway restart applies the new entry. Silent rooms are also joined read-only: their history is not seeded into context. Two refusals by design: direct messages cannot be left, and leaving the configured home channel is rejected because cron/notification delivery posts there. If `CHATTO_HOME_CHANNEL` names a room the bot has not joined, the adapter logs a warning at each reconnect — invite the account natively in Chatto or DM it `/join`. ## Troubleshooting **First step for every issue below:** look at what the gateway logged around the time things went wrong: ```bash hermes logs ``` The Chatto adapter logs each connection attempt, room discovery (`_refresh_rooms`), rejected users, failed sends and reconnects there — most problems name their cause directly. ### Bot is not responding to messages **Cause**: The bot account is not a member of the room, or the user is not in `CHATTO_ALLOWED_USERS`. **Fix**: Verify the bot is a member of the room (the adapter picks up all joined rooms by default; DM the bot `/join ` to add it). Check that your Chatto login is in `CHATTO_ALLOWED_USERS`, or set `CHATTO_ALLOW_ALL_USERS=true`. Restart the gateway. ### Connection refused / WebSocket fails to connect **Cause**: The Chatto server is unreachable, or the URL is incorrect. **Fix**: Verify `CHATTO_BASE_URL` points to your Chatto server (include `https://`, no trailing slash). Test connectivity: ```bash curl -s -o /dev/null -w "%{http_code}" https://chat.example.com/api/connect/chatto.api.v1.ViewerService/GetViewer ``` If you use a reverse proxy (nginx, Apache), ensure WebSocket upgrade headers are configured for `/api/realtime`: ```nginx location /api/realtime { proxy_pass http://chatto-backend; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "upgrade"; proxy_read_timeout 600s; } ``` ### Authentication failed **Cause**: The `CHATTO_LOGIN` or `CHATTO_PASSWORD` is incorrect. **Fix**: Verify credentials by testing the login endpoint directly: ```bash curl -X POST https://chat.example.com/auth/login \ -H "Content-Type: application/json" \ -d '{"login":"hermes","password":"your-password"}' ``` If the response does not include a `token` field, the credentials are wrong. Reset the bot account password in Chatto and update `~/.hermes/.env`. ### Protocol version mismatch **Cause**: The Chatto server is running an older version that doesn't support realtime protocol v1. **Fix**: The adapter uses protocol v1, supported by Chatto v0.4.20 and later. Upgrade your Chatto server: ```bash curl -s https://chat.example.com/api/version | jq . ``` If you see a `RealtimeError` with a protocol-related message in the logs, upgrading the server is the fix. ### WebSocket disconnects / reconnection loops **Cause**: Network instability, Chatto server restarts, or firewall/proxy issues with WebSocket connections. **Fix**: The adapter automatically reconnects with exponential backoff. Check: 1. Your server's WebSocket configuration — reverse proxies need upgrade headers (see above). 2. No firewall is blocking WebSocket connections on your Chatto server. 3. The Chatto server is running and healthy. Run `hermes logs` for recent adapter output, or dig through the gateway log directly: ```bash grep -i "chatto\|websocket\|realtime" ~/.hermes/logs/gateway.log | tail -30 ``` ### 401 Unauthorized during operation **Cause**: The bearer token expired during a session. **Fix**: Check that the bot account hasn't been deactivated and the password hasn't changed. Update `CHATTO_PASSWORD` (or `CHATTO_TOKEN`) in `~/.hermes/.env` and restart the gateway. ### Bot is offline **Cause**: The Hermes gateway isn't running, or it failed to connect. **Fix**: Check that `hermes gateway` is running. Look at the terminal output or gateway logs for error messages. Common issues: wrong URL, expired credentials, Chatto server unreachable. ## Notes - **Self-hosted friendly**: Works with any self-hosted Chatto instance. No cloud account or subscription required. - **Minimal dependencies**: Only requires `chattolib[realtime]>=0.4.20.post1`, which is vendored — nothing to install. - **No message backfill**: Events missed while the gateway is down are gone — Chatto keeps no replay for the bot. Redelivered events after a reconnect are recognised and processed only once; anything genuinely new starts from the moment of reconnection. ## Acknowledgements - This project started as a fork of [jrimmer/hermes-chatto-plugin](https://github.com/jrimmer/hermes-chatto-plugin/) — little of the original code remains, but it got us started. - Our adapter implementation was inspired by [TheCodemancerLtd's Chatto platform adapter](https://github.com/TheCodemancerLtd/hermes-agent/blob/feat/chatto-integration/plugins/platforms/chatto/adapter.py). ## License MIT