From 21dfffd158ca57e036a277edb8cc4f68905ec1aa Mon Sep 17 00:00:00 2001 From: Stephen Chin Date: Sat, 2 May 2026 12:10:09 -0700 Subject: [PATCH] fix(hermesagent): correct JSON metadata - default_credentials: username null/null (no SSH login for hermes service account; access is via root like all PVE Helper Scripts) - Update setup note to reference root instead of hermes user - Update dashboard tunnel note to use root and -fNL flags --- json/hermesagent.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/json/hermesagent.json b/json/hermesagent.json index af5930a2..8e4ece5e 100644 --- a/json/hermesagent.json +++ b/json/hermesagent.json @@ -28,7 +28,7 @@ } ], "default_credentials": { - "username": "hermes", + "username": null, "password": null }, "notes": [ @@ -37,7 +37,7 @@ "type": "warning" }, { - "text": "After container startup, SSH in as the 'hermes' user and run 'hermes setup' to configure your LLM provider (OpenRouter, Anthropic, OpenAI, Nous Portal, or custom endpoint).", + "text": "After container startup, SSH in as root and run 'hermes setup' to configure your LLM provider (OpenRouter, Anthropic, OpenAI, Nous Portal, or custom endpoint).", "type": "info" }, { @@ -45,7 +45,7 @@ "type": "info" }, { - "text": "Access the web dashboard via SSH tunnel: ssh -L 9119:localhost:9119 hermes@, then open http://localhost:9119", + "text": "Access the web dashboard via SSH tunnel: ssh -fNL 9119:localhost:9119 root@, then open http://localhost:9119", "type": "info" } ]