From a6f07a6c377443e886a417a55363f8611ebd534c Mon Sep 17 00:00:00 2001 From: Teknium <127238744+teknium1@users.noreply.github.com> Date: Mon, 13 Apr 2026 13:26:21 -0700 Subject: [PATCH] =?UTF-8?q?docs:=20fix=20hermes=20web=20=E2=86=92=20hermes?= =?UTF-8?q?=20dashboard=20in=20web-dashboard.md=20(#9207)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The actual CLI command is 'hermes dashboard', not 'hermes web'. cli-commands.md already had the correct name. --- website/docs/user-guide/features/web-dashboard.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/website/docs/user-guide/features/web-dashboard.md b/website/docs/user-guide/features/web-dashboard.md index 500e48e35..99f45079f 100644 --- a/website/docs/user-guide/features/web-dashboard.md +++ b/website/docs/user-guide/features/web-dashboard.md @@ -11,7 +11,7 @@ The web dashboard is a browser-based UI for managing your Hermes Agent installat ## Quick Start ```bash -hermes web +hermes dashboard ``` This starts a local web server and opens `http://127.0.0.1:9119` in your browser. The dashboard runs entirely on your machine — no data leaves localhost. @@ -26,13 +26,13 @@ This starts a local web server and opens `http://127.0.0.1:9119` in your browser ```bash # Custom port -hermes web --port 8080 +hermes dashboard --port 8080 # Bind to all interfaces (use with caution on shared networks) -hermes web --host 0.0.0.0 +hermes dashboard --host 0.0.0.0 # Start without opening browser -hermes web --no-open +hermes dashboard --no-open ``` ## Prerequisites @@ -45,7 +45,7 @@ pip install hermes-agent[web] If you installed with `pip install hermes-agent[all]`, the web dependencies are already included. -When you run `hermes web` without the dependencies, it will tell you what to install. If the frontend hasn't been built yet and `npm` is available, it builds automatically on first launch. +When you run `hermes dashboard` without the dependencies, it will tell you what to install. If the frontend hasn't been built yet and `npm` is available, it builds automatically on first launch. ## Pages @@ -283,7 +283,7 @@ If you're contributing to the web dashboard frontend: ```bash # Terminal 1: start the backend API -hermes web --no-open +hermes dashboard --no-open # Terminal 2: start the Vite dev server with HMR cd web/ @@ -297,4 +297,4 @@ The frontend is built with React 19, TypeScript, Tailwind CSS v4, and shadcn/ui- ## Automatic Build on Update -When you run `hermes update`, the web frontend is automatically rebuilt if `npm` is available. This keeps the dashboard in sync with code updates. If `npm` isn't installed, the update skips the frontend build and `hermes web` will build it on first launch. +When you run `hermes update`, the web frontend is automatically rebuilt if `npm` is available. This keeps the dashboard in sync with code updates. If `npm` isn't installed, the update skips the frontend build and `hermes dashboard` will build it on first launch.