hermes-config-editing

hermes-config-editing is a skill for Claude Code, Codex from AtlasOmnia/donna-starter. It costs 38 tokens per session (3,357 once invoked), scanned B, original, MIT.

A procedure for safely changing values in Hermes's YAML configuration file, including nested settings that ordinary commands may fail to save.

In plain words
What is it for?
Changing Hermes settings such as compression thresholds and provider-related configuration. It also checks whether expected helper scripts exist before relying on them.
Why use it?
The configuration file is protected from direct edits, while some command-line changes can report success without actually persisting. The procedure checks current values and makes a small, validated edit while preserving comments and ordering.

Skill for Claude CodeCodex

Which agent this was written for is unclear — built for hermes-agent. Also seen: mentions subagents; mentions AGENTS.md; mentions Codex.

Good fit Changing Hermes settings such as compression thresholds and provider-related configuration. It also checks whether expected helper scripts exist before relying on them.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/atlasomnia/donna-starter/hermes-config-editing
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 AtlasOmnia/donna-starter --skill hermes-config-editing
Clone the repo
git clone --depth 1 https://github.com/AtlasOmnia/donna-starter

Made for: Claude Code, Codex.

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-config-editing

README.md
[![agentmods](https://agentmods.dev/badge/skills/atlasomnia/donna-starter/hermes-config-editing/github.svg)](https://agentmods.dev/skills/atlasomnia/donna-starter/hermes-config-editing)
Your own site
<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.

agentmods 80×15 button for hermes-config-editing

Your own site · 80×15
<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>
Per session 38 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,357 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. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
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.
How audits are shown
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.00038 $0.03357
Opus 5 $0.00019 $0.01679
Sonnet 5 $0.00008 $0.00671
Haiku 4.5 $0.00004 $0.00336

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

Security

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.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/verify-compression.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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
Origin

Copies of this mod

1 near-identical copy found in the catalogue:

skills/autonomous-ai-agents/hermes-config-editing/SKILL.md · 256 lines

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 on config.yaml is 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.80 runs 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 ls before 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))

Read the full file on GitHub · 256 lines

Files

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.

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. 12d ago First seen · 256 lines · 38 tokens per session scan B 72c2b67d0c68

Subscribe to this mod's changes

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.

Related

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…

Varnan-Tech/opendirectory · 172 tokens

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…

Varnan-Tech/opendirectory · 154 tokens

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.

Varnan-Tech/opendirectory · 45 tokens

company-radar

Competitive intelligence orchestrator tracking companies across 8+ platforms (GitHub, Twitter, Reddit, HN, PH, YC Jobs) with heat scores and AI briefings.

Varnan-Tech/opendirectory · 39 tokens

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…

Varnan-Tech/opendirectory · 134 tokens

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.

Varnan-Tech/opendirectory · 58 tokens