hermes-remote

hermes-remote is a skill for Claude Code from osouthgate/agent-plus-skills. It costs 95 tokens per session (2,829 once invoked), scanned B, original, MIT.

A command-line tool for managing a Hermes Agent running on another machine. Hermes Agent is an AI agent service that can be controlled through a web API.

In plain words
What is it for?
It helps check status, models, environment variables, and scheduled jobs; create, pause, resume, trigger, or delete scheduled jobs; and send one-off chat requests.
Why use it?
It removes the need to manually send API requests or log in to the remote machine for routine checks and controls.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: reads .claude/ paths; mentions Claude Code; built for gbrain.

Part of the hermes-remote plugin — 1 skill shipped together

Good fit It helps check status, models, environment variables, and scheduled jobs; create, pause, resume, trigger, or delete scheduled jobs; and send one-off chat requests.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/osouthgate/agent-plus-skills/hermes-remote
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add osouthgate/agent-plus-skills --skill hermes-remote
Clone the repo
git clone --depth 1 https://github.com/osouthgate/agent-plus-skills

Made for: Claude Code.

Or install hermes-remote, the plugin that ships this one along with the rest of its 1 skill.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for hermes-remote

README.md
[![agentmods](https://agentmods.dev/badge/skills/osouthgate/agent-plus-skills/hermes-remote/github.svg)](https://agentmods.dev/skills/osouthgate/agent-plus-skills/hermes-remote)
Your own site
<a href="https://agentmods.dev/skills/osouthgate/agent-plus-skills/hermes-remote"><img src="https://agentmods.dev/badge/skills/osouthgate/agent-plus-skills/hermes-remote/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for hermes-remote

Your own site · 80×15
<a href="https://agentmods.dev/skills/osouthgate/agent-plus-skills/hermes-remote"><img src="https://agentmods.dev/badge/skills/osouthgate/agent-plus-skills/hermes-remote.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 95 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,829 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 2 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00095 $0.02829
Opus 5 $0.00048 $0.01414
Sonnet 5 $0.00019 $0.00566
Haiku 4.5 $0.00010 $0.00283

Measured 9d ago against content hash 39b1286bc42e, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade B, and why

hermes-remote scanned grade B with 2 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Reads agent configuration directoriesmediumAgent snooping

.claude/, .codex/, .gemini/ hold keys, settings and other credentials a mod has no legitimate need for.

exactly where to put them (project `.env` preferred, or `~/.claude/settings.json`

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

**This wrapper covers a deliberately narrow slice:** status, model, env list (read-only), config get/set, cron CRUD, and one-shot chat. It does NOT wrap a local CLI — there is no `hermes` remote-control CLI to fall back
hermes-remote/skills/hermes-remote/SKILL.md · 182 lines

How it starts

The opening of the file, as written. The whole thing — 182 lines — stays where its author put it; the contents beside it link to each section on GitHub.

hermes-remote

Remote CLI for talking to a Hermes Agent deployment over its REST API. Stdlib-only Python 3. No pip installs.

The binary lives at ${CLAUDE_SKILL_DIR}/../../bin/hermes-remote inside this plugin, and bin/ is auto-added to PATH when the plugin is enabled — so call it as hermes-remote.

When to reach for this

  • The user asks about the state of a remote Hermes instance (status, model, crons, env).
  • The user wants to pause, resume, trigger, or delete a Hermes cron job.
  • The user wants to create a new cron — always use the skillify pattern below, not a prompt-only job.
  • The user wants to inspect which env vars Hermes can see vs has missing.

For one-shot chat calls (/v1/chat/completions), use hermes-remote chat "<prompt>" — needs HERMES_CHAT_API_KEY set (distinct from the admin password).

hermes-remote chat "status?"                               # quick one-shot
hermes-remote chat --model anthropic/claude-haiku-4-5 ...  # override per-call
hermes-remote chat --max-tokens 200 "..."                  # cap output
hermes-remote chat --system "Be terse." "what is k8s?"     # add system prompt
hermes-remote chat --json "..."                            # full response body

For multi-turn conversations or streaming, use an OpenAI-compatible SDK pointed at $HERMES_URL/v1 — this wrapper is for one-shot calls and cron-friendly scripting.

When NOT to use this — fall back to the Hermes REST API directly

This wrapper covers a deliberately narrow slice: status, model, env list (read-only), config get/set, cron CRUD, and one-shot chat. It does NOT wrap a local CLI — there is no hermes remote-control CLI to fall back to. "Fall back" here means hit the Hermes REST API directly with curl (or http.client / requests) using the same cookie + bearer token flow hermes-remote uses internally. There is no other route.

Specific cases where you should talk to the Hermes endpoint directly, not through hermes-remote:

Read the full file on GitHub · 182 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 182 lines · 95 tokens per session scan B 39b1286bc42e

Subscribe to this mod's changes

hermes-remote is a skill published in the GitHub repository osouthgate/agent-plus-skills (2 stars, last pushed 4mo ago), licensed MIT. It adds 95 tokens to every session and 2,829 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it B with 2 findings (reads agent configuration directories, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

coolify

Operate a Coolify self-hosted PaaS through the @masonator/coolify-mcp server. Use this skill whenever the user asks Claude to inspect, deploy, restart, debug, or manage anything on Coolify — including applications, databases, services, servers, projects, environments, deployments, environment variables, private keys…

StuMason/coolify-mcp · 156 tokens

cloud-administration

Administers the cloud the company runs on rather than the one it sells — tenant and subscription structure, the SaaS estate and who owns each app, identity as the real perimeter, cloud spend that arrives as a surprise, and what the provider does not do for you. Use this to structure subscriptions or tenants, get…

cbrock84/headcount · 100 tokens

network-administration

Designs and operates the corporate network — segmentation, remote access, wireless, DNS and addressing, and diagnosing network problems. Use this to segment a network, set up or fix remote access, diagnose intermittent connectivity, plan addressing or DNS, or assess whether the network's trust assumptions still hold.

cbrock84/headcount · 62 tokens

telephony-and-conferencing

Runs voice and meeting infrastructure — phone systems and numbers, emergency calling obligations, conference rooms and their AV, call recording and its retention consequences, and the porting that makes provider changes go badly. Use this to replace a phone system, fix rooms nobody can start a meeting in, meet…

cbrock84/headcount · 85 tokens

virtualization-operations

Runs the hypervisor layer beneath the servers — host capacity and consolidation ratios, VM sprawl, snapshot discipline, resilience and live migration, and licensing that counts cores rather than instances. Use this to size or expand a cluster, work out why VMs are slow when the hosts look idle, clean up sprawl, set…

cbrock84/headcount · 86 tokens

business-continuity-and-resilience

Plans for operating through disruption — impact analysis, recovery objectives, continuity plans, and the exercises that prove they work. Use this to run a business impact analysis, set RTO and RPO, write or test a continuity plan, prepare for a supplier or site failure, or answer a customer's resilience questionnaire.

cbrock84/headcount · 69 tokens