From bff3c5c82e82c72dabbe7763228831aa465d2c0c Mon Sep 17 00:00:00 2001 From: "Aaron K. Clark" Date: Fri, 22 May 2026 02:31:20 -0500 Subject: [PATCH] docs(config): replace invalid 'hermes config get' with 'hermes config show' The 'hermes config get ' 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 #30195 --- website/docs/guides/migrate-from-openclaw.md | 2 +- website/docs/guides/work-with-skills.md | 4 ++-- website/docs/user-guide/configuring-models.md | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/website/docs/guides/migrate-from-openclaw.md b/website/docs/guides/migrate-from-openclaw.md index e56aff32dbe9..8e6b8e2d54b2 100644 --- a/website/docs/guides/migrate-from-openclaw.md +++ b/website/docs/guides/migrate-from-openclaw.md @@ -225,7 +225,7 @@ The migration resolves all three formats. For env templates and SecretRef object 5. **Test messaging** — if you migrated platform tokens, restart the gateway: `systemctl --user restart hermes-gateway` -6. **Check session policies** — verify `hermes config get session_reset` matches your expectations. +6. **Check session policies** — verify the `session_reset` section of `hermes config show` matches your expectations. 7. **Re-pair WhatsApp** — WhatsApp uses QR code pairing (Baileys), not token migration. Run `hermes whatsapp` to pair. diff --git a/website/docs/guides/work-with-skills.md b/website/docs/guides/work-with-skills.md index 0798ccfd44ac..4224236ea984 100644 --- a/website/docs/guides/work-with-skills.md +++ b/website/docs/guides/work-with-skills.md @@ -161,8 +161,8 @@ Manage skill config from the CLI: # Interactive config for a specific skill hermes skills config gif-search -# View all skill config -hermes config get skills.config +# View all skill config (look under skills.config in the output) +hermes config show ``` --- diff --git a/website/docs/user-guide/configuring-models.md b/website/docs/user-guide/configuring-models.md index a4ce79eea3fe..74212ee8d229 100644 --- a/website/docs/user-guide/configuring-models.md +++ b/website/docs/user-guide/configuring-models.md @@ -192,7 +192,7 @@ hermes model # Interactive provider + model picker (the canonical way `hermes model` walks you through picking a provider, authenticating (OAuth flows open a browser; API-key providers prompt for the key), and then choosing a specific model from that provider's curated catalog. The choice is written to `model.provider` and `model.model` in `~/.hermes/config.yaml`. -To list providers/models without launching the picker, use the dashboard or the REST endpoints below. To inspect what the CLI will actually use right now: `hermes config get model` and `hermes status`. +To list providers/models without launching the picker, use the dashboard or the REST endpoints below. To inspect what the CLI will actually use right now: see `model.provider` / `model.model` in `hermes config show`, and run `hermes status`. ### Direct config edit