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 AtlasOmnia/donna-starter --skill hermes-config-editinggit clone --depth 1 https://github.com/AtlasOmnia/donna-starterWrote 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/atlasomnia/donna-starter/hermes-config-editing)<a href="https://agentmods.dev/skills/atlasomnia/donna-starter/hermes-config-editing"><img src="https://agentmods.dev/badge/skills/atlasomnia/donna-starter/hermes-config-editing/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/atlasomnia/donna-starter/hermes-config-editing"><img src="https://agentmods.dev/badge/skills/atlasomnia/donna-starter/hermes-config-editing.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector warn
SkillSpector: 2 findings, up to high
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 →
- high Supply Chain · line 221 Remote code is downloaded and executed. This bypasses code review and could introduce malicious code.Fix: Avoid downloading and executing remote scripts. Use trusted packages from PyPI/npm. If remote fetch is required, verify checksums and use HTTPS.
- medium Rogue Agent · line 137 Skill establishes unauthorized persistence across sessions via cron jobs, startup scripts, or state files. Session persistence allows an attacker to maintain access beyond the current interaction.Fix: Remove any persistence mechanisms (cron jobs, startup scripts, state files). Skills should not maintain state across sessions without explicit user consent.
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.03357 |
| Opus 5 | $0.00019 | $0.01679 |
| Sonnet 5 | $0.00008 | $0.00671 |
| Haiku 4.5 | $0.00004 | $0.00336 |
Grade B, and why
hermes-config-editing 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 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.
Downloads and executes remote codemediumSupply chain
curl | sh runs whatever the server returns today, which is not necessarily what it returned when this was reviewed.
curl -s http://127.0.0.1:8642/api/model/info | python3 -m json.tool Downgraded: this mod is about security review, or the phrase is quoted, so it is likely naming the pattern rather than instructing it.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
curl -s http://127.0.0.1:8642/api/model/info | python3 -m json.tool Copies of this mod
1 near-identical copy found in the catalogue:
- hermes-config-editing — 100% identical, 0 lines differ
How it starts
The opening of the file, as written. The whole thing — 256 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Hermes Config Editing
Edit ~/.hermes/config.yaml values reliably, working around the security guard that blocks direct file edits and CLI commands that don't persist for nested keys.
The Problem
- Security guard: Direct
patch/write_file onconfig.yamlis blocked — "security-sensitive configuration". Agent must not treat it as a normal file. - CLI doesn't work for all keys:
hermes config set compression.threshold 0.80runs without error but often fails to persist changes (especially nested YAML paths). - switch-provider.py may be missing: AGENTS.md historically references it, but it can be removed or moved after updates. Never assume it exists; verify with
lsbefore relying on it. If missing, fall back to manual config edits via the patterns below.
Reliable Pattern: Inspect, Then Minimal Section-Aware Edit
Use the Hermes venv Python to inspect and validate YAML, but prefer targeted text edits for config.yaml so comments and ordering survive.
# Inspect the current live values first
~/.hermes/hermes-agent/venv/bin/python3 - <<'PY'
import yaml
p='~/.hermes/config.yaml'
with open(p) as f: cfg=yaml.safe_load(f)
print('compression=', cfg.get('compression'))
print('auxiliary.compression=', (cfg.get('auxiliary') or {}).get('compression'))
PY
For a small numeric change, use a section-bounded script rather than a full YAML dump:
from pathlib import Path
p = Path('~/.hermes/config.yaml')
lines = p.read_text().splitlines(keepends=True)
out = []
in_section = False
for line in lines:
if line.startswith('compression:'):
in_section = True
elif in_section and line and not line.startswith((' ', '\n', '#')):
in_section = False
if in_section and line.lstrip().startswith('threshold:'):
indent = line[:len(line) - len(line.lstrip())]
line = f'{indent}threshold: 0.85\n'
elif in_section and line.lstrip().startswith('target_ratio:'):
indent = line[:len(line) - len(line.lstrip())]
line = f'{indent}target_ratio: 0.30\n'
out.append(line)
p.write_text(''.join(out))
What ships with it
4 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.
- 12d ago First seen · 256 lines · 38 tokens per session scan B 72c2b67d0c68
hermes-config-editing is a skill published in the GitHub repository AtlasOmnia/donna-starter (111 stars, last pushed 13d ago), licensed MIT. It adds 38 tokens to every session and 3,357 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it B with 2 findings (downloads and executes remote code, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
npm-downloads-to-leads
Takes a list of npm package names (yours or competitors'), fetches 12 weeks of daily download data from the npm API, computes a breakout velocity score per package to identify hockey-stick growth, fetches maintainer profiles from the npm registry and GitHub API, and outputs a ranked lead brief for each breakout…
gh-issue-to-demand-signal
Takes a competitor's public GitHub repo URL, fetches their open issues via the GitHub REST API, filters noise locally, clusters issues into 6 demand categories, computes a demand score per issue and per cluster, and outputs a ranked demand gap report with a GTM messaging brief. Use when asked to scan a competitor's…
domain-expired-opportunity-finder
Evaluates expired domain candidates against a target niche, scores them by topical relevance, historical activity level, and history cleanliness, then outputs a ranked shortlist with explainable reasoning and risk flags.
company-radar
Competitive intelligence orchestrator tracking companies across 8+ platforms (GitHub, Twitter, Reddit, HN, PH, YC Jobs) with heat scores and AI briefings.
linkedin-job-post-to-buyer-pain-map
Takes pasted LinkedIn job posts or hiring descriptions and converts them into a structured buyer pain map with inferred pains, capability gaps, buy-vs-build signal, account priority scores, and suggested outreach angles. Use when asked to analyze hiring posts, decode job descriptions for buyer intent, build a pain map…
producthunt-launch-kit
Use when the user asks to prepare a Product Hunt launch or generate Product Hunt listing assets. Generates tagline variants under 60 chars, a 500-char description, a maker comment, launch-day tweet thread, LinkedIn post, and a 4-email launch sequence.