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/hcf-studios/openhermit/skill-creatornpx skills add HCF-STUDIOS/openhermit --skill skill-creatorgit clone --depth 1 https://github.com/HCF-STUDIOS/openhermitWrote 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/hcf-studios/openhermit/skill-creator)<a href="https://agentmods.dev/skills/hcf-studios/openhermit/skill-creator"><img src="https://agentmods.dev/badge/skills/hcf-studios/openhermit/skill-creator.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.00031 | $0.00958 |
| Opus 5 | $0.00015 | $0.00479 |
| Sonnet 5 | $0.00006 | $0.00192 |
| Haiku 4.5 | $0.00003 | $0.00096 |
Grade A, and why
skill-creator 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 3d 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 — 101 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Skill Creator
You are creating or updating an OpenHermit skill. A skill is a directory containing a SKILL.md file (with YAML frontmatter) and optional supporting files (scripts, references, templates). Skills are prompt-based instructions — they tell you what to do, not code plugins.
Skill Format
<skill-id>/
SKILL.md # Required — frontmatter + instructions
scripts/ # Optional — deterministic code the agent runs
references/ # Optional — documentation loaded on demand
templates/ # Optional — output templates, config files
SKILL.md Structure
---
name: <lowercase-hyphen-case, max 64 chars>
description: <one-line summary, max 256 chars — this appears in the system prompt index>
---
<body: detailed instructions for the agent>
Frontmatter rules:
name— required. Lowercase, hyphens only ([a-z0-9-]+), no leading/trailing/consecutive hyphens, max 64 chars.description— required. One clear sentence. This is the only thing shown in the system prompt, so it must be specific enough to trigger skill activation. Max 256 chars.
Process
1. Clarify the skill's purpose
Ask the user:
- What task does this skill handle?
- When should it activate? (What kind of user request triggers it?)
- What does success look like?
Generate 2-3 concrete usage examples to confirm understanding.
2. Plan the skill contents
For each example, identify what reusable resources are needed:
| Directory | When to use | Loaded into context? |
|---|---|---|
scripts/ |
Deterministic operations that must be exact (deploy, validate, transform) | No — executed via exec |
references/ |
Documentation the agent reads on demand (cat references/api-spec.md) |
On demand only |
templates/ |
Output files, config templates, boilerplate | No — copied/rendered via exec |
Keep SKILL.md under 500 lines. If longer, split into reference files.
3. Write the skill
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.
- 3d ago First seen · 101 lines · 31 tokens per session scan A e59cc35f80be
skill-creator is a skill published in the GitHub repository HCF-STUDIOS/openhermit (53 stars, last pushed 13d ago), licensed MIT. It adds 31 tokens to every session and 958 once invoked, about $0.0002 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
create-agent
Help users create and configure openma managed agents through conversation. Trigger when users say "create an agent", "I need an agent that...", "set up an agent for", "build me a bot", or describe a task to automate. Also trigger for "Create with AI" from Dashboard. Also use when users ask about the openma platform…
openma
Use the openma platform to build, deploy, and manage AI agents. Trigger when users want to create agents, start sessions, manage environments, configure model cards, handle vaults/credentials, install skills, connect MCP servers, or interact with the openma HTTP API. Also trigger when users mention "oma", "openma"…
comm-agent-skill
Communication specialist for the OpenClaw multi-agent system. Use this skill when the task involves: drafting or sending emails, posting to Discord or other chat platforms, scheduling calendar events, sending notifications, or any outbound communication on behalf of the user. Always drafts before sending and requires…
data-agent-skill
Data processing and analysis specialist for the OpenClaw multi-agent system. Use this skill when the task involves: parsing CSV/JSON/Excel files, data cleaning and transformation, SQL queries, statistical analysis, generating charts or visualizations, aggregating data from multiple sources, or extracting insights from…
research-agent-skill
Information gathering and research specialist for the OpenClaw multi-agent system. Use this skill when the task involves: web search, fact-checking, comparing products or technologies, summarizing articles, gathering documentation, researching errors, or producing structured reports with sources. Also use for "what is…
system-agent-skill
System administration specialist for the OpenClaw multi-agent system. Use this skill when the task involves: package installation (apt), service management (systemctl), configuration file editing, cron job scheduling, firewall rules (ufw), disk space management, log inspection (journalctl), user/group management…