docs: align runtime footer field docs

This commit is contained in:
helix4u
2026-06-06 11:20:40 -06:00
parent 3606307339
commit 8b23b2bc01
4 changed files with 8 additions and 9 deletions
+2 -2
View File
@@ -1255,13 +1255,13 @@ In the CLI, cycle through these modes with `/verbose`. To use `/verbose` in mess
### Runtime-metadata footer (gateway only)
When `display.runtime_footer.enabled: true`, Hermes appends a small runtime-context footer to the **final** message of each gateway turn — same info the CLI shows in its status bar (model, context %, cwd, session duration, tokens, cost). Off by default; opt in per-gateway if your team wants every reply to include the provenance.
When `display.runtime_footer.enabled: true`, Hermes appends a small runtime-context footer to the **final** message of each gateway turn. The current footer can show the model, context-window percentage, and current working directory. Off by default; opt in per-gateway if your team wants every reply to include this provenance.
```yaml
display:
runtime_footer:
enabled: true
fields: ["model", "context_pct", "cwd"] # any of: model, context_pct, cwd, duration, tokens, cost
fields: ["model", "context_pct", "cwd"] # supported fields: model, context_pct, cwd
```
The `/footer` slash command toggles this at runtime in any session.