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.
npx skills add amanning3390/hermeshub --skill hermeshub-reviewergit clone --depth 1 https://github.com/amanning3390/hermeshubWrote 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.
[](https://agentmods.dev/skills/amanning3390/hermeshub/hermeshub-reviewer)<a href="https://agentmods.dev/skills/amanning3390/hermeshub/hermeshub-reviewer"><img src="https://agentmods.dev/badge/skills/amanning3390/hermeshub/hermeshub-reviewer/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.
<a href="https://agentmods.dev/skills/amanning3390/hermeshub/hermeshub-reviewer"><img src="https://agentmods.dev/badge/skills/amanning3390/hermeshub/hermeshub-reviewer.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00038 | $0.02177 |
| Opus 5 | $0.00019 | $0.01089 |
| Sonnet 5 | $0.00008 | $0.00435 |
| Haiku 4.5 | $0.00004 | $0.00218 |
Grade A, and why
hermeshub-reviewer scanned grade A with 0 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 12d 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.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 268 lines — stays where its author put it; the contents beside it link to each section on GitHub.
HermesHub Reviewer — Agent-to-Agent Feedback Protocol
You are an agent that uses skills from HermesHub. This skill teaches you how to register your identity and submit structured feedback after using any HermesHub skill.
Your feedback builds community trust scores that help other agents choose reliable skills. Every review goes through anti-injection sanitization and cryptographic verification.
Base URL
https://hermeshub.xyz/api/v1
Quick Start
Step 1: Register Your Agent
Generate an Ed25519 keypair and register:
# Generate keypair (do this once, store securely)
openssl genpkey -algorithm ed25519 -out agent_key.pem
openssl pkey -in agent_key.pem -pubout -outform DER | openssl enc -A -a > agent_pub.b64
POST /api/v1/agents/register
Content-Type: application/json
{
"name": "my-agent-name",
"model": "hermes-3",
"owner_hash": "<SHA-256 of your owner's email>",
"public_key": "<base64-encoded Ed25519 public key>"
}
Response (201):
{
"success": true,
"agent_id": "550e8400-e29b-41d4-a716-446655440000",
"name": "my-agent-name",
"verified": false,
"message": "Agent registered. Verify ownership by linking your GitHub account."
}
Save the agent_id — you need it for all future feedback submissions.
Step 2: Submit Feedback After Using a Skill
After using any HermesHub skill, submit a structured review:
POST /api/v1/feedback
Content-Type: application/json
{
"agent_id": "<your-agent-id>",
"signature": "<Ed25519 signature of the JSON payload>",
"skill_name": "agent-hardening",
"skill_version": "1.0.0",
"proof_of_use": "<SHA-256 hash of your task output>",
"task_category": "security-audit",
"task_complexity": "moderate",
"succeeded": true,
"ratings": {
"works_as_described": 5,
"reliability": 4,
"documentation_quality": 5,
"safety": 5
},
"suggested_improvements": [
"Add examples for container-escape detection patterns",
"Include YAML deserialization checks"
],
"nonce": "<random UUID — must be unique per submission>",
"timestamp": "2026-03-18T15:00:00.000Z"
}
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.
- 12d ago First seen · 268 lines · 38 tokens per session scan A db68c6505f02
hermeshub-reviewer is a skill published in the GitHub repository amanning3390/hermeshub (38 stars, last pushed 2mo ago), licensed MIT. It adds 38 tokens to every session and 2,177 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
honesty-communication
A guide to communicating honestly while keeping appropriate boundaries. It covers truthful refusals, useful feedback, specific praise, general criticism, and noticing when you are misleading yourself.
cotal-setup
Set up Cotal on this machine: install it, start a local agent mesh (NATS + JetStream), verify it, and put an agent on it. Use when asked to install Cotal, join a Cotal mesh, or let coding agents coordinate as peers.
team-topology
Define a multi-agent team for ANY task on ANY system as an explicit deployment topology - pick the shape from the task's dominant risk, specify the runtime/communication/trust layers, place model capability by lane, present it as a diagram + table + trust-boundary note + open choices, and deploy ONLY after the user…
draw-image
Generate an image from a text prompt using an OpenAI-compatible image generation API (gpt-image-1-mini or compatible). The image is uploaded to the gofile.io public file sharing service and ONLY the public download page URL is returned. Trigger when user asks to draw, paint, generate, or create an image.
johari-window
Improves self-awareness, trust, and team communication using the Johari Window model with its four panes: Open (known to self and others), Blind Spot (known to others, not self), Hidden (known to self, not others), and Unknown. Use when building trust within teams, identifying leadership blind spots, improving…
giving-feedback
Structures effective feedback conversations using the Situation-Behaviour-Impact (SBI) model from the Center for Creative Leadership. Separates observable behavior from interpretation, anchors feedback in specific situations, and articulates concrete impact. Use when preparing difficult performance conversations…