From 7318c560a05acfb941fedf882774ce38400e0c8a Mon Sep 17 00:00:00 2001 From: Claude Date: Fri, 12 Jun 2026 02:02:15 +0000 Subject: [PATCH] Skip first-run onboarding wizard in gateway mode Set HERMES_WEBUI_SKIP_ONBOARDING=1 so the provider-setup wizard doesn't appear on first login. When connecting to an existing gateway the provider is already configured there; the wizard is redundant. https://claude.ai/code/session_01Xwf5nZf6d1npMerNteodq2 --- apps/hermes-webui/config.json | 4 ++-- apps/hermes-webui/docker-compose.json | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/apps/hermes-webui/config.json b/apps/hermes-webui/config.json index e6f779a..cc5919d 100644 --- a/apps/hermes-webui/config.json +++ b/apps/hermes-webui/config.json @@ -11,7 +11,7 @@ "utilities" ], "description": "Hermes WebUI is a lightweight, dark-themed web interface that connects to your existing Hermes Agent gateway, sharing sessions and history with the CLI and other interfaces. It provides near-complete parity with the CLI experience via a three-panel layout with session management, chat, and workspace file browsing. Use it in any browser, or pair it with the Hermes Agent Mobile iOS app by setting a password.", - "tipi_version": 2, + "tipi_version": 3, "version": "0.51.345", "source": "https://github.com/nesquena/hermes-webui", "website": "https://github.com/nesquena/hermes-webui", @@ -21,7 +21,7 @@ "amd64" ], "created_at": 1780963200000, - "updated_at": 1781049600000, + "updated_at": 1781136000000, "dynamic_config": true, "form_fields": [ { diff --git a/apps/hermes-webui/docker-compose.json b/apps/hermes-webui/docker-compose.json index cf33784..140c816 100644 --- a/apps/hermes-webui/docker-compose.json +++ b/apps/hermes-webui/docker-compose.json @@ -11,6 +11,7 @@ { "key": "HERMES_WEBUI_PORT", "value": "8787" }, { "key": "HERMES_WEBUI_STATE_DIR", "value": "/data" }, { "key": "HERMES_WEBUI_CHAT_BACKEND", "value": "gateway" }, + { "key": "HERMES_WEBUI_SKIP_ONBOARDING", "value": "1" }, { "key": "HERMES_WEBUI_GATEWAY_BASE_URL", "value": "${HERMES_WEBUI_GATEWAY_BASE_URL}" }, { "key": "HERMES_WEBUI_PASSWORD", "value": "${HERMES_WEBUI_PASSWORD}" }, { "key": "HERMES_WEBUI_DEFAULT_MODEL", "value": "${HERMES_WEBUI_DEFAULT_MODEL}" }