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 agentmods add skills/s0heyl/hermes-loop-master/hermes-loop-masternpx skills add s0heyl/hermes-loop-master --skill hermes-loop-mastergit clone --depth 1 https://github.com/s0heyl/hermes-loop-masterWrote 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/s0heyl/hermes-loop-master/hermes-loop-master)<a href="https://agentmods.dev/skills/s0heyl/hermes-loop-master/hermes-loop-master"><img src="https://agentmods.dev/badge/skills/s0heyl/hermes-loop-master/hermes-loop-master.svg" alt="Measured on agentmods" 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 | $0.00069 | $0.03448 |
| Opus 5 | $0.00034 | $0.01724 |
| Sonnet 5 | $0.00014 | $0.00690 |
| Haiku 4.5 | $0.00007 | $0.00345 |
Grade A, and why
hermes-loop-master 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 4d 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 — 378 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Hermes Loop Master
Overview
Hermes Loop Master is a disciplined operating loop for coding with Hermes Agent. It is built for work where "looks done" is not good enough: production fixes, multi-step features, refactors, security-sensitive changes, and any task that may continue across sessions.
The skill changes the agent's behavior in five ways:
- Spec first — write a compact execution contract before editing code.
- One slice at a time — implement the smallest meaningful increment, not a bundle of nearby improvements.
- Verify with evidence — run real commands and record what returned.
- Review adversarially — inspect the diff for fake-done shortcuts before declaring success.
- Leave a handoff — make the next session able to resume without guessing.
The loop is intentionally file-backed. Durable task files survive context compression, new sessions, model switches, and interrupted runs.
When to Use
Use this skill when the user asks Hermes to:
- build or modify a feature with more than two steps,
- fix a bug that needs reproduction and verification,
- work in a production or public repository,
- touch authentication, authorization, payment, data migrations, secrets, user data, or deployment paths,
- refactor code where scope creep is likely,
- continue work from a previous session,
- coordinate with subagents or external coding tools,
- prepare a PR or public release.
Use the Tiny Change Path instead of the full loop when the task is a one-file typo, formatting-only change, comment update, or trivial documentation fix. Even then, verify the exact file changed and report the diff.
Do not use this skill to bypass user approval, hide uncertainty, or perform destructive operations without confirmation.
Adaptive Modes
Classify once during the safety gate, then use the lightest mode that can still prove the work:
| Mode | Trigger | Required loop | Efficiency target |
|---|---|---|---|
| Tiny | One-file typo, copy, comment, or mechanical low-risk edit | Read → patch → cheapest relevant check → diff summary. Full artifacts are optional unless the repository already uses them. | Target no more than 8 tool calls. |
| Standard | Normal bug fix, bounded feature, or refactor | Compact LOOP.md, RED→GREEN when behavior changes, targeted test, broader regression check, diff review, short handoff. |
Target no more than 20 tool calls. |
| Critical | Security, auth, payment, migration, user data, production, or irreversible risk | Full artifacts, RED→GREEN evidence, positive/negative/preservation/failure coverage, Independent Oracle where available, broader verification, adversarial review, handoff. | No fixed cap; evidence completeness wins. |
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.
- 4d ago First seen · 378 lines · 69 tokens per session scan A cda98bbcfef9
hermes-loop-master is a skill published in the GitHub repository s0heyl/hermes-loop-master (18 stars, last pushed 1mo ago), licensed MIT. It adds 69 tokens to every session and 3,448 once invoked, about $0.0003 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
idea-superpowers-suite
Use when running the full idea workflow: capture a rough idea, expand it into design/UI/implementation docs, research similar products, and generate build-ready Markdown artifacts.
idea-to-implementation-doc
Use when reviewing one specific idea/design doc, researching similar products, and producing a separate technical implementation plan or roadmap.
idea-to-ui-design-brief
Use when turning a product/design doc into a focused UI design brief, optional AI image-generation concept prompts, and implementation-ready UI direction without replacing the main idea workflow.
idea-to-design-doc
Use when turning a rough idea into a focused product/design Markdown doc through guided questions, without moving into implementation too early.
deliver
Prepare an inspectable Hardproof delivery during DELIVER with final scope, evidence, risks, rollback, and reproducible reporting.
design
Shape the smallest reversible Hardproof design from discovery evidence during DESIGN, including contracts, failures, and risks.