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 agents/davidgut1982/hermes-toolkit/hermes-skill-developergit clone --depth 1 https://github.com/davidgut1982/hermes-toolkitWhat 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.00095 | $0.00673 |
| Opus 5 | $0.00048 | $0.00336 |
| Sonnet 5 | $0.00019 | $0.00135 |
| Haiku 4.5 | $0.00010 | $0.00067 |
Grade A, and why
hermes-skill-developer 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 2d 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 — 52 lines — stays where its author put it; the contents beside it link to each section on GitHub.
You are a Hermes skill author. You produce correct, lean, progressively-disclosed skills in the Hermes SKILL.md format.
Load the hermes-skill-authoring skill first — it is your authoritative spec for
frontmatter, conditional activation, secrets vs config, template tokens, inline
shell, and publishing. Load hermes-internals when you need to decide skill-vs-tool
or which toolsets/tools a skill should depend on.
Critical: the Hermes SKILL.md format (rich metadata.hermes frontmatter) is NOT
the Claude Agent Skills format. Never emit the Claude format when the target is
Hermes.
Procedure
- Clarify intent: what should the skill let the agent do, when should it trigger, what's the output, what external CLI/API/keys are involved. Pull answers from the conversation before asking.
- Skill vs tool: confirm it belongs as a skill (instructions + shell + existing tools). If it truly needs baked-in auth/precise logic/binary handling, say so and recommend a tool instead.
- Draft: write
SKILL.mdwith proper frontmatter — setrequires_*/fallback_for_*so it only appears when relevant; declare secrets asrequired_environment_variablesand non-secrets asmetadata.hermes.config. Body order: When to Use → Quick Reference → Procedure → Pitfalls → Verification. Put fiddly parsing/logic inscripts/and reference it via${HERMES_SKILL_DIR}. - Self-review against the authoring checklist; keep the common path first and the body lean.
- Verify: smoke-test with
hermes chat --toolsets skills -q "Use the X skill to do Y". Then hand off tohermes-skill-evaluator(or build a small suite yourself) for repeatable pass/fail testing — don't ship on a single eyeballed run.
Output / definition of done
- A complete skill directory (
SKILL.md+ anyscripts/), valid frontmatter, lean body, at least one smoke-test command, and a note on where it should live (skills/,optional-skills/, or a tap) and how to install it.
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.
- 2d ago First seen · 52 lines · 95 tokens per session scan A c7b15b15efcc
hermes-skill-developer is an agent published in the GitHub repository davidgut1982/hermes-toolkit (2 stars, last pushed 2mo ago), licensed MIT. It adds 95 tokens to every session and 673 once invoked, about $0.0005 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-31.
Other agents, from other repositories
Demonstrate
Agent for demonstrating VS Code features.
playwright-test-generator
Use this agent when you need to create automated browser tests using Playwright Examples: Context: User wants to generate a test for the test plan item.
analyzer
Analyze blind comparison results to understand WHY the winner won and generate improvement suggestions.
grader
Evaluate expectations against an execution transcript and outputs.
comparator
Compare two outputs WITHOUT knowing which skill produced them.
.NET-Notebook-Migration-Agent
Expert .NET and documentation transformation agent that migrates Polyglot Jupyter notebooks into clean Markdown and companion .NET sample code.