feat: link official Hermes dashboard#1677
Closed
Michaelyklam wants to merge 1 commit into
Closed
Conversation
Collaborator
|
Closed by the v0.51.1 release in PR #1681 (merged at e23ba59). Massive thanks @Michaelyklam — this is now 19 merged PRs across the v0.50.292–v0.51.1 release window, an extraordinary contribution rate. Each PR was per-claim-vs-diff verified against your description and every security-relevant code path checked under independent review (Opus advisor, 6/6 questions clean). Your Live on production: https://github.com/nesquena/hermes-webui/releases/tag/v0.51.1 🚀 |
nesquena-hermes
pushed a commit
to Michaelyklam/hermes-webui
that referenced
this pull request
May 5, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Thinking Path
hermes dashboardis a separate local service.GET /api/status, not/api/version, so the WebUI can safely probe that endpoint server-side.Closes #1459.
What Changed
api/dashboard_probe.pyfor official dashboard detection using/api/status, short timeouts, strict loopback-only URL normalization, andauto/always/neverconfiguration.GET /api/dashboard/status,GET /api/dashboard/config, andPOST /api/dashboard/configroutes.noopener,noreferrer.docs/pr-media/1459/dashboard-nav-link.png.Why It Matters
This makes the official Hermes Agent Dashboard discoverable from WebUI without making the browser guess whether
127.0.0.1:9119means the server or the user's local machine. Keeping the probe server-side and loopback-only also avoids turning the setting into a generic SSRF/local-network scanner.Verification
Result:
Manual/browser verification:
127.0.0.1:18760and a synthetic official-dashboard status server on127.0.0.1:19119./api/dashboard/statusreturnedrunning: true,host: 127.0.0.1,port: 19119,url: http://127.0.0.1:19119,version: 0.12.0-test,enabled: auto.http://127.0.0.1:19119for the browser.window.open('http://127.0.0.1:19119', '_blank', 'noopener,noreferrer').UI media:
Risks / Follow-ups
automode suppresses probing when WebUI itself is bound to a non-loopback host, whilealwayscan still show an explicitly configured loopback target.Model Used
AI assisted.
gpt-5.5