From 53a8a73673dc6e8c8d0c553a74c5dbd098cf9666 Mon Sep 17 00:00:00 2001 From: helix4u <4317663+helix4u@users.noreply.github.com> Date: Sat, 4 Jul 2026 14:05:35 -0600 Subject: [PATCH] docs(debug): document Nous diagnostics upload --- website/docs/reference/cli-commands.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/website/docs/reference/cli-commands.md b/website/docs/reference/cli-commands.md index 2f35858ef04..4717197cbd4 100644 --- a/website/docs/reference/cli-commands.md +++ b/website/docs/reference/cli-commands.md @@ -772,11 +772,13 @@ Upload a debug report (system info + recent logs) to a paste service and get a s |--------|-------------| | `--lines ` | Number of log lines to include per log file (default: 200). | | `--expire ` | Paste expiry in days (default: 7). | +| `--nous` | Upload to Nous-internal diagnostics storage instead of a public paste service. Use this when Nous support asks for a private diagnostic bundle. | | `--local` | Print the report locally instead of uploading. | +| `--no-redact` | Disable upload-time secret redaction. By default, uploads are redacted. | -The report includes system info (OS, Python version, Hermes version), recent agent, gateway, GUI/dashboard, and desktop logs (512 KB limit per file), and redacted API key status. Keys are always redacted — no secrets are uploaded. +The report includes system info (OS, Python version, Hermes version), recent agent, gateway, GUI/dashboard, and desktop logs (512 KB limit per file), and redacted API key status. By default, uploads are redacted so secrets are not included. -Paste services tried in order: paste.rs, dpaste.com. +Default uploads use public paste services tried in order: paste.rs, dpaste.com. `--nous` uploads the same debug bundle to private Nous diagnostics storage instead; the returned viewer link is for the Nous team and auto-deletes after 14 days. ### Examples @@ -784,6 +786,7 @@ Paste services tried in order: paste.rs, dpaste.com. hermes debug share # Upload debug report, print URL hermes debug share --lines 500 # Include more log lines hermes debug share --expire 30 # Keep paste for 30 days +hermes debug share --nous # Upload a private diagnostics bundle for Nous support hermes debug share --local # Print report to terminal (no upload) ```