docs(reference): document --no-supervise / HERMES_GATEWAY_NO_SUPERVISE from #33583#33751
Merged
benbarclay merged 4 commits intoMay 28, 2026
Merged
Conversation
1 task
Bryce-huang
pushed a commit
to wbkunlun/hermes-agent
that referenced
this pull request
May 29, 2026
…E from NousResearch#33583 (NousResearch#33751) * docs(reference): document --no-supervise / HERMES_GATEWAY_NO_SUPERVISE (en) * docs(reference): document --no-supervise / HERMES_GATEWAY_NO_SUPERVISE (en) * docs(reference): document --no-supervise / HERMES_GATEWAY_NO_SUPERVISE (zh) * docs(reference): document --no-supervise / HERMES_GATEWAY_NO_SUPERVISE (zh) #AI commit#
KKT-OPT
pushed a commit
to KKT-OPT/hermes-agent
that referenced
this pull request
May 31, 2026
…E from NousResearch#33583 (NousResearch#33751) * docs(reference): document --no-supervise / HERMES_GATEWAY_NO_SUPERVISE (en) * docs(reference): document --no-supervise / HERMES_GATEWAY_NO_SUPERVISE (en) * docs(reference): document --no-supervise / HERMES_GATEWAY_NO_SUPERVISE (zh) * docs(reference): document --no-supervise / HERMES_GATEWAY_NO_SUPERVISE (zh)
gweeteve
pushed a commit
to gweeteve/hermes-agent
that referenced
this pull request
Jun 2, 2026
…E from NousResearch#33583 (NousResearch#33751) * docs(reference): document --no-supervise / HERMES_GATEWAY_NO_SUPERVISE (en) * docs(reference): document --no-supervise / HERMES_GATEWAY_NO_SUPERVISE (en) * docs(reference): document --no-supervise / HERMES_GATEWAY_NO_SUPERVISE (zh) * docs(reference): document --no-supervise / HERMES_GATEWAY_NO_SUPERVISE (zh)
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
#33583 (
feat(docker): auto-redirect gateway run to supervised mode inside s6 image) introduced a new opt-out CLI flag--no-superviseonhermes gateway runand a matching env varHERMES_GATEWAY_NO_SUPERVISE, but only updatedwebsite/docs/user-guide/docker.mdwith a tip admonition. The canonical reference tables —reference/cli-commands.md(hermes gatewayOptions) andreference/environment-variables.md(HERMES_GATEWAY_*block) — still don't list either, so users searching the reference for the opt-out flag find nothing.This PR adds the missing rows to both reference tables (EN + zh-Hans mirror), with text grounded directly in the source:
hermes_cli/main.py:11418—gateway runsubparser registers--no-supervise(boolean opt-out arg).hermes_cli/gateway.py:5185-5186— handler readsargs.no_superviseORHERMES_GATEWAY_NO_SUPERVISEenv (truthy values1/true/yes).hermes_cli/gateway.py:5207— stderr breadcrumb advertises the opt-out path.Files
website/docs/reference/cli-commands.md(+1) —--no-superviserow inhermes gatewayOptions tablewebsite/docs/reference/environment-variables.md(+1) —HERMES_GATEWAY_NO_SUPERVISErow in theHERMES_GATEWAY_*blockwebsite/i18n/zh-Hans/docusaurus-plugin-content-docs/current/reference/cli-commands.md(+1) — zh-Hans mirrorwebsite/i18n/zh-Hans/docusaurus-plugin-content-docs/current/reference/environment-variables.md(+1) — zh-Hans mirrorPure docs, ~4 LOC additive. No code change. If this has already landed via separate patch, please feel free to close and mark accordingly.