From c6f22c4038778f72597626931a4cdea1ae5da31a Mon Sep 17 00:00:00 2001 From: Stephen Chin Date: Mon, 11 May 2026 17:27:40 -0700 Subject: [PATCH] fix(hermesagent): remove Warning prefix from notes; set config_path to .env MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Drop 'WARNING: '/'Warning: ' prefixes from note texts — the type:warning field already communicates severity (per CrazyWolf13 review feedback) - Set config_path to /home/hermes/.hermes/.env (was directory path) --- json/hermesagent.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/json/hermesagent.json b/json/hermesagent.json index 99858b87..123151a7 100644 --- a/json/hermesagent.json +++ b/json/hermesagent.json @@ -17,7 +17,7 @@ { "type": "default", "script": "ct/hermesagent.sh", - "config_path": "/home/hermes/.hermes/", + "config_path": "/home/hermes/.hermes/.env", "resources": { "cpu": 2, "ram": 4096, @@ -33,11 +33,11 @@ }, "notes": [ { - "text": "WARNING: Installation sources scripts outside of Community Scripts repo. Please check the source before installing.", + "text": "Installation sources scripts outside of Community Scripts repo. Please check the source before installing.", "type": "warning" }, { - "text": "Warning: Hermes can execute terminal commands. The agent runs as a dedicated 'hermes' service user for isolation.", + "text": "Hermes can execute terminal commands. The agent runs as a dedicated 'hermes' service user for isolation.", "type": "warning" }, {