Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion optional-skills/productivity/here-now/SKILL.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
name: here.now
name: here-now
description: Publish static sites to {slug}.here.now and store private files in cloud Drives for agent-to-agent handoff.
version: 1.15.3
author: here.now
Expand Down
5 changes: 2 additions & 3 deletions skills/autonomous-ai-agents/hermes-agent/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,6 @@ The registry of record is `hermes_cli/commands.py` — every consumer
/tools Manage tools (CLI)
/toolsets List toolsets (CLI)
/skills Search/install skills (CLI)
/skill <name> Load a skill into session
/reload-skills Re-scan ~/.hermes/skills/ for added/removed skills
/reload Reload .env variables into the running session (CLI)
/reload-mcp Reload MCP servers
Expand Down Expand Up @@ -359,7 +358,7 @@ The registry of record is `hermes_cli/commands.py` — every consumer

### Exit
```
/quit (/exit, /q) Exit CLI
/quit (/exit) Exit CLI
```

---
Expand Down Expand Up @@ -917,7 +916,7 @@ and logs — avoids shell-escaping backslashes in bash.
### Skills not showing
1. `hermes skills list` — verify installed
2. `hermes skills config` — check platform enablement
3. Load explicitly: `/skill name` or `hermes -s name`
3. Load explicitly with the generated `/<skill-name>` slash command or `hermes -s name`

### Gateway issues
Check logs first:
Expand Down
5 changes: 5 additions & 0 deletions website/docs/reference/cli-commands.md
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,11 @@ HERMES_INFERENCE_MODEL=anthropic/claude-sonnet-4.6 hermes -z "…"

Same agent, same tools, same skills — just strips every interactive / cosmetic layer. If you need tool output in the transcript too, use `hermes chat -q` instead; `-z` is explicitly for "I only want the final answer".

Compatibility notes:

- `hermes -z` / `--oneshot` is available in Hermes v0.12.0 / v2026.4.30 and later. For scripts that must support older installs, prefer `hermes chat -q "..."`.
- Top-level `hermes -z` and `hermes chat -q` do not currently accept a `--timeout` flag. Use your shell's timeout wrapper for a whole-process deadline, or tune provider/API timeouts through the existing configuration and environment options.

## `hermes model`

Interactive provider + model selector. **This is the command for adding new providers, setting up API keys, and running OAuth flows.** Run it from your terminal — not from inside an active Hermes chat session.
Expand Down