From b337afdf6e2fdb586a40def480e9f02d594d0a78 Mon Sep 17 00:00:00 2001 From: Kevin Anderson Date: Fri, 19 Jun 2026 08:06:23 -0400 Subject: [PATCH] docs(cli): fix broken terminal-backend guide link in setup wizard The terminal backend onboarding step pointed at /docs/developer-guide/environments, which no longer exists. Point it at the live docs page /docs/user-guide/configuration#terminal-backend-configuration. Co-Authored-By: Claude Opus 4.8 (1M context) --- hermes_cli/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hermes_cli/setup.py b/hermes_cli/setup.py index c69a0b882..6f7514f74 100644 --- a/hermes_cli/setup.py +++ b/hermes_cli/setup.py @@ -1137,7 +1137,7 @@ def setup_terminal_backend(config: dict): print_header("Terminal Backend") print_info("Choose where Hermes runs shell commands and code.") print_info("This affects tool execution, file access, and isolation.") - print_info(f" Guide: {_DOCS_BASE}/developer-guide/environments") + print_info(f" Guide: {_DOCS_BASE}/user-guide/configuration#terminal-backend-configuration") print() current_backend = cfg_get(config, "terminal", "backend", default="local")