docs(config): fix invalid 'hermes config get' references in 3 guides - #30293
Closed
CryptoJones wants to merge 1 commit into
Closed
docs(config): fix invalid 'hermes config get' references in 3 guides#30293CryptoJones wants to merge 1 commit into
CryptoJones wants to merge 1 commit into
Conversation
… show' The 'hermes config get <key>' subcommand does not exist. Three guides referenced it, producing 'unrecognized arguments' errors when followed verbatim. The valid command is 'hermes config show', which dumps the full resolved config; readers can then locate the relevant key in the output. Closes NousResearch#30195
This was referenced May 22, 2026
Contributor
|
Superseded by #30390, which was merged to main as part of the Bucket-1 docs-correctness sweep (PR #34781). Your PR fixed the same issue — the 'hermes config get' → 'hermes config show' fix — and the merged version preserves per-commit authorship for the contributor whose variant was the most complete. Both contributors are credited. Thanks for catching this! |
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.
Closes #30195.
hermes config get <key>is referenced in three guides but is not a valid subcommand — the closest existing form ishermes config show, which dumps the entire resolved config and accepts no positional arguments. Following the docs verbatim producesunrecognized argumentserrors.Going with the docs-only fix (Option 1 in the issue). The issue body suggested
hermes config show | grep '^<key>', but that doesn't work for nested keys in YAML output (e.g.skills.configlives under askills:parent), so I went with plainhermes config showplus a short "look at X in the output" hint where it reads naturally.Changed:
website/docs/guides/work-with-skills.md:165—hermes config get skills.config→hermes config show(comment now points the reader atskills.configin the output)website/docs/guides/migrate-from-openclaw.md:228—hermes config get session_reset→ "thesession_resetsection ofhermes config show"website/docs/user-guide/configuring-models.md:195—hermes config get model→ "seemodel.provider/model.modelinhermes config show"Verified no remaining
hermes config getreferences inwebsite/docs/(the one remainingconfig gethit inmcp-mcporter.mdis for the unrelatedmcporterbinary).Option 2 in the issue (adding a real
hermes config show <key>per-key getter) is the better UX but is a CLI change — happy to leave that for a follow-up if maintainers want it.