From 3f0d44af8ae380996057b620afeae258af830634 Mon Sep 17 00:00:00 2001 From: Aman113114-IITD Date: Fri, 22 May 2026 11:12:52 +0000 Subject: [PATCH] docs: replace invalid 'hermes config get ' with 'hermes config show' 'hermes config get ' is referenced in three guides but is not a valid subcommand. The valid subcommands under 'hermes config' are {show,edit,set,path,env-path,check,migrate}. 'hermes config show' is already used elsewhere in the docs (including 'hermes config show | grep ' in the FAQ), so it's the idiomatic replacement. - work-with-skills.md: 'View all skill config' now uses 'hermes config show | grep ^skills\.config' - migrate-from-openclaw.md: session-policy check now reads the value from 'hermes config show' - configuring-models.md: 'inspect what the CLI will actually use' now uses 'hermes config show | grep ^model\.' Refs #30195 --- website/docs/guides/migrate-from-openclaw.md | 2 +- website/docs/guides/work-with-skills.md | 2 +- website/docs/user-guide/configuring-models.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/website/docs/guides/migrate-from-openclaw.md b/website/docs/guides/migrate-from-openclaw.md index eda670576..38a27e622 100644 --- a/website/docs/guides/migrate-from-openclaw.md +++ b/website/docs/guides/migrate-from-openclaw.md @@ -229,7 +229,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** — run `hermes config show` and verify the `session_reset` value 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 7e6131233..331558924 100644 --- a/website/docs/guides/work-with-skills.md +++ b/website/docs/guides/work-with-skills.md @@ -162,7 +162,7 @@ Manage skill config from the CLI: hermes skills config gif-search # View all skill config -hermes config get skills.config +hermes config show | grep '^skills\.config' ``` --- diff --git a/website/docs/user-guide/configuring-models.md b/website/docs/user-guide/configuring-models.md index f1ef2aa6f..00ad11d43 100644 --- a/website/docs/user-guide/configuring-models.md +++ b/website/docs/user-guide/configuring-models.md @@ -206,7 +206,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: `hermes config show | grep '^model\.'` and `hermes status`. ### Direct config edit