Conversation
xinbenlv
added a commit
to xinbenlv/zn-hermes-agent
that referenced
this pull request
Apr 10, 2026
## Why carried - Makes `/status` show which Hermes home/profile the gateway session is actually using. - Exposes the active model/provider directly instead of making users guess from config or logs. ## Upstream - PR: NousResearch#6750 - Status: open ## Summary - Extends gateway `/status` output with home-path and model visibility. - Keeps the status output operationally useful when multiple homes or models are in play. ## Drop condition - Drop once PR NousResearch#6750 lands upstream and local `main` rebases onto the upstream commit. ## Files - `gateway/run.py` - `tests/gateway/test_status_command.py`
11 tasks
peteradams2026
pushed a commit
to xinbenlv/zn-hermes-agent
that referenced
this pull request
Apr 28, 2026
--- upstream: NousResearch#6750 files: - gateway/run.py - tests/gateway/test_status_command.py --- ## Summary - Extend gateway `/status` with the active Hermes home/profile path. - Show the effective model/provider directly in `/status`. ## Drop condition - Drop once PR NousResearch#6750 lands upstream and local `main` rebases onto the upstream commit.
xinbenlv
added a commit
to xinbenlv/zn-hermes-agent
that referenced
this pull request
Apr 30, 2026
--- upstream: NousResearch#6750 files: - gateway/run.py - tests/gateway/test_status_command.py --- ## Upstream - PR: NousResearch#6750 - Status: open ## Summary - Extend gateway `/status` with the active Hermes home/profile path. - Show the effective model/provider directly in `/status`. ## Drop condition - Drop once PR NousResearch#6750 lands upstream and local main rebases onto the upstream commit.
teknium1
reviewed
Jul 12, 2026
teknium1
left a comment
Collaborator
There was a problem hiding this comment.
Thanks for the /status visibility improvement. The Hermes-home path is still absent on current main, but the model/provider portion has since been implemented more completely.
Problems
- Current
/statuslives ingateway/slash_commands.py:493-666, following extraction commit619bd7827; the PR'sgateway/run.pyhandler is no longer the active implementation. - Model/provider status is already covered by
gateway/slash_commands.py:550-610andtests/gateway/test_status_command.py:181-275, added byead38107a. It resolves live, cached, persisted, and configured state, which is stronger than the PR's older resolver. - Status output is localized (
locales/en.yaml:285-306), so the remaining path line should use a new locale key rather than a hardcoded English string.
Suggested changes
- Port only the profile-aware home-path addition into
GatewaySlashCommandsMixin._handle_status_command, add locale entries, and add a focused regression test.
Automated hermes-sweeper review.
| "📊 **Hermes Gateway Status**", | ||
| "", | ||
| f"**Session ID:** `{session_entry.session_id}`", | ||
| f"**Path:** `{display_hermes_home()}`", |
Collaborator
There was a problem hiding this comment.
Current main moved /status to gateway/slash_commands.py and localizes its output through t(...). Please port the remaining path feature there as a gateway.status.path locale key (with catalog entries), rather than adding this hardcoded line to the former handler.
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.
Summary
/status/statusUpstream context
Test Plan
~/.hermes/hermes-agent/venv/bin/python -m pytest tests/gateway/test_status_command.py -q -o addopts=''Contributed back from https://github.com/xinbenlv/zn-hermes-agent, which is being used and tested by https://github.com/xinbenlv.
Carried patch: patch-feat-pr6750
Contributed back from https://github.com/xinbenlv/zn-hermes-agent, which is being used and tested by https://github.com/xinbenlv.