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 paulpreibisch/AgentVibes --skill hermes-agentvibes-hookgit clone --depth 1 https://github.com/paulpreibisch/AgentVibesWrote 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/paulpreibisch/agentvibes/hermes-agentvibes-hook)<a href="https://agentmods.dev/skills/paulpreibisch/agentvibes/hermes-agentvibes-hook"><img src="https://agentmods.dev/badge/skills/paulpreibisch/agentvibes/hermes-agentvibes-hook/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/paulpreibisch/agentvibes/hermes-agentvibes-hook"><img src="https://agentmods.dev/badge/skills/paulpreibisch/agentvibes/hermes-agentvibes-hook.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector warn
SkillSpector: 3 findings, up to medium
These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →
- medium MCP Rug Pull · line 28 npx commands without a version suffix (e.g. @1.0.0) create a rug-pull risk if the upstream server is compromised and publishes a malicious update.Fix: Pin the version: npx @scope/[email protected]
- medium MCP Rug Pull · line 224 npx commands without a version suffix (e.g. @1.0.0) create a rug-pull risk if the upstream server is compromised and publishes a malicious update.Fix: Pin the version: npx @scope/[email protected]
- medium MCP Rug Pull · line 252 npx commands without a version suffix (e.g. @1.0.0) create a rug-pull risk if the upstream server is compromised and publishes a malicious update.Fix: Pin the version: npx @scope/[email protected]
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.00037 | $0.02377 |
| Opus 5 | $0.00018 | $0.01189 |
| Sonnet 5 | $0.00007 | $0.00475 |
| Haiku 4.5 | $0.00004 | $0.00238 |
Grade A, and why
hermes-agentvibes-hook scanned grade A with 1 finding 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 6d 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.
Runs shell commandslowCapability
Expected in a hook, worth knowing in a rule or an instructions file.
result = subprocess.run(cmd, capture_output=True, timeout=15) How it starts
The opening of the file, as written. The whole thing — 253 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Hermes ↔ AgentVibes TTS Hook
Send every Hermes response as spoken audio to a remote machine via the AgentVibes SSH receiver.
Architecture
Hermes (server/Docker)
└── agent:end event fires
└── hooks/agentvibes-tts/handler.py
└── strip markdown, truncate at word boundary
└── JSON payload → base64-encode
└── SSH → agentvibes-receiver@<host>:<port>
└── Remote machine queues & plays via Piper TTS
Setup
1. Install AgentVibes on the target machine (the one with speakers)
npx agentvibes install
2. Generate an SSH key on the Hermes server
ssh-keygen -t ed25519 -f /absolute/path/to/id_ed25519_agentvibes -N ""
Use an absolute path — tilde (~) expansion does not work inside Python subprocess argument lists.
Register the public key on the target machine's agentvibes-receiver user.
3. Create the hook directory and files
Create <hermes_home>/hooks/agentvibes-tts/HOOK.yaml:
name: agentvibes-tts
description: Send agent responses to AgentVibes TTS remotely
events:
- agent:end
Create <hermes_home>/hooks/agentvibes-tts/handler.py — update the four config constants at the top:
"""
AgentVibes TTS Hook — fires on agent:end to speak the agent's response.
Sends the response via SSH to the AgentVibes receiver using the full JSON
payload format (supports voice, project, effects metadata).
"""
import asyncio
import base64
import json
import logging
import os
import re
import subprocess
import time
# ---------------------------------------------------------------------------
# Configuration
# ---------------------------------------------------------------------------
AGENTVIBES_SSH_KEY = "/absolute/path/to/id_ed25519" # no tilde — subprocess won't expand it
AGENTVIBES_HOST = "<target-ip-or-hostname>"
AGENTVIBES_PORT = "<receiver-port>"
AGENTVIBES_USER = "agentvibes-receiver"
AGENTVIBES_VOICE = "en_US-libritts-high::Leo-8"
AGENTVIBES_PROJECT = "hermes"
MAX_CONTENT_LEN = 200 # chars of spoken content (prefix NOT counted)
PREFIX = "Hermes here, "
_KNOWN_HOSTS = "/absolute/path/to/known_hosts" # persistent across restarts
_LOG_FILE = os.path.join(os.path.dirname(os.path.abspath(__file__)), "tts-hook.log")
# ---------------------------------------------------------------------------
# File logger — writes to tts-hook.log next to handler.py, never to stdout
# ---------------------------------------------------------------------------
_log = logging.getLogger("agentvibes-tts")
if not _log.handlers:
try:
_h = logging.FileHandler(_LOG_FILE, encoding="utf-8")
_h.setFormatter(logging.Formatter("%(asctime)s %(levelname)s %(message)s"))
_log.addHandler(_h)
except OSError:
_log.addHandler(logging.NullHandler())
_log.setLevel(logging.INFO)
# ---------------------------------------------------------------------------
# Rate limiting — prevent queue flooding on rapid consecutive turns
# ---------------------------------------------------------------------------
_last_sent: float = 0.0
_MIN_INTERVAL_S: float = 3.0
def _tts_speak(text: str) -> None:
"""Build JSON payload and send to AgentVibes receiver over SSH."""
global _last_sent
if not text or not text.strip():
return
now = time.monotonic()
if now - _last_sent < _MIN_INTERVAL_S:
_log.info("rate-limited: %.1fs since last send — skipping", now - _last_sent)
return
_last_sent = now
# Truncate at word boundary so the spoken text never cuts mid-syllable
full_text = PREFIX + text.strip()
max_len = len(PREFIX) + MAX_CONTENT_LEN
if len(full_text) > max_len:
truncated = full_text[:max_len].rsplit(" ", 1)[0]
full_text = truncated + "..."
payload = base64.b64encode(
json.dumps({
"text": full_text,
"voice": AGENTVIBES_VOICE,
"project": AGENTVIBES_PROJECT,
"provider": "piper",
"pretext": "", # prefix already prepended above
"effects": "",
"music": "",
"volume": "",
"speed": "",
}).encode()
).decode()
cmd = [
"ssh",
"-i", AGENTVIBES_SSH_KEY,
"-o", "ConnectTimeout=5",
# accept-new: trust the host key on first connection, reject changes
# (MITM protection without interactive prompts)
"-o", "StrictHostKeyChecking=accept-new",
"-o", f"UserKnownHostsFile={_KNOWN_HOSTS}",
"-o", "BatchMode=yes",
"-p", AGENTVIBES_PORT,
f"{AGENTVIBES_USER}@{AGENTVIBES_HOST}",
payload,
]
try:
result = subprocess.run(cmd, capture_output=True, timeout=15)
if result.returncode != 0:
stderr = result.stderr.decode(errors="replace").strip()
_log.warning("ssh exit %d: %s", result.returncode, stderr or "(no stderr)")
else:
stdout = result.stdout.decode(errors="replace").strip()
_log.info("queued OK: %s", stdout)
except subprocess.TimeoutExpired:
_log.warning("ssh timed out after 15s to %s:%s", AGENTVIBES_HOST, AGENTVIBES_PORT)
except Exception as exc:
_log.warning("ssh error: %s", exc)
async def handle(event_type: str, context: dict) -> None:
"""Async handler — only processes agent:end events."""
if event_type != "agent:end":
return
response = (context.get("response") or "").strip()
if not response:
return
response = _strip_markdown(response)
loop = asyncio.get_running_loop()
await loop.run_in_executor(None, _tts_speak, response)
def _strip_markdown(text: str) -> str:
"""Remove markdown artifacts that sound unnatural in TTS."""
# Fenced code blocks — always unlistenable
text = re.sub(r"```[\s\S]*?```", "", text)
# Inline code — unwrap
text = re.sub(r"`([^`]+)`", r"\1", text)
# Bold / italic markers
text = re.sub(r"\*{1,2}([^\*]+)\*{1,2}", r"\1", text)
# Links — keep label, drop URL
text = re.sub(r"\[([^\]]+)\]\([^\)]+\)", r"\1", text)
# Emoji — strip everywhere, not just line-start
text = re.sub(
r"[\U0001F300-\U0001F9FF"
r"\U00002600-\U000027FF"
r"\U0000FE00-\U0000FE0F"
r"•→↓↑]+",
"",
text,
)
text = re.sub(r"\s+", " ", text).strip()
return text
What ships with it
2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
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.
- 6d ago First seen · 253 lines · 37 tokens per session scan A a309b3c842a2
hermes-agentvibes-hook is a skill published in the GitHub repository paulpreibisch/AgentVibes (153 stars, last pushed 1mo ago), licensed Apache-2.0. It adds 37 tokens to every session and 2,377 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 1 finding (runs shell commands). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.
Other skills, from other repositories
money-printer-turbo
An open-source system for turning a topic or keyword into a finished short video. It can create a script, select or generate visuals, add narration, subtitles, music, and transitions, and produce vertical or horizontal video.
minimax-cli
Nested swiss-knife reference for the MiniMax mmx CLI and the canonical MiniMax CLI procedure shipped with the TUI: install mmx-cli, discover the correct TUI-managed MiniMax preset/key slot without leaking secrets, match mainland vs international regions, and route image/video/music/TTS generation or one-shot shell…
image-generate
Generate an image from a text prompt via the cloud LLM image proxy, persist it as a content-addressed workspace asset, and return a ContentBlock that downstream renderers can attach. Use whenever the user asks "draw / generate / make an image of …", an agent needs a diagram / illustration as a follow-up artifact, or a…
video-recap
An end-to-end workflow for turning a video into a Chinese narrated recap. It coordinates video analysis, story planning, editing, voice generation, and final audio and subtitle assembly.
video-script
A Chinese-language video editing and narration workflow that plans the story, selects clips, assigns visuals and sound, writes timestamped narration, and validates the result.
video-assemble
A video finishing tool that combines a source video with recorded narration, adjusted original sound, and subtitles. It can create subtitle files, burn them into the video, and optionally standardise loudness.