User-local:~/.hermes/skills/<maybe-category>/<name>/SKILL.md — personal, not shared. Created via skill_manage(action='create').
In-repo (this skill is about this case):skills/<category>/<name>/SKILL.md or optional-skills/<category>/<name>/SKILL.md inside the hermes-agent repo — committed, shipped with the package. Use write_file + git add. skill_manage(action='create') does NOT target this tree.
In-repo skills must meet the repo's hardline authoring standards (see AGENTS.md, "Skill authoring standards (HARDLINE)" — that section is the source of truth; this skill is the operational walkthrough). Reviewers reject PRs that violate them, so meeting them up front is cheaper than a salvage pass later.
When to Use
User asks you to add a skill "in this branch / repo / commit"
You're committing a reusable workflow that should ship with hermes-agent
You're editing an existing skill under skills/ or optional-skills/ (use patch for small edits, write_file for rewrites; skill_manage still works for patch on in-repo skills, but not for create)
Don't use for: personal skills in ~/.hermes/skills/ (just use skill_manage)
Decide the Tier First: Bundled vs Optional
Bundled (skills/<category>/) — daily-driver behavior, broadly useful across many user types, low footprint. Hard bar: you can say "a user will load this in 5+ sessions per month" with a straight face.
Optional (optional-skills/<category>/) — niche, vertical-specific (blockchain, gaming, finance, one app), recurring-job/task skills, or anything heavy. Installed via hermes skills install official/<category>/<skill>.
When in doubt, optional. Promoting later is easy; demoting is churn. "Would be useful to anyone who ever needs this" is an optional-tier argument, not a bundled one.
Pick the category by what the tool IS, not what it feels like (an AI-agent CLI goes in autonomous-ai-agents/ even if it "feels productivity"). Confirm existing categories with search_files(pattern='*', target='files', path='skills') and don't invent new top-level categories casually.
No router / index / hub skills. A skill whose core content is a routing table pointing at sibling skills adds an indirection hop and duplicates the siblings' own When to Use triggers. If the skill would be empty without "load skill X instead" pointers, don't write it — the catalog and each sibling's triggers already do that job.
Required Frontmatter
Validator source of truth: tools/skill_manager_tool.py::_validate_frontmatter. Validator hard requirements:
Starts with --- as the first bytes (no leading blank line).
Closes with \n---\n before the body.
Parses as a YAML mapping.
name field present.
description field present (validator ceiling 1024 chars — but see the repo hardline below, which is much stricter).
Non-empty body after the closing ---.
Repo-standard shape (all fields expected, even where the validator doesn't enforce them):
---
name: my-skill-name # lowercase, hyphens, ≤64 chars (MAX_NAME_LENGTH)
description: Concise capability statement, under sixty chars.
version: 0.1.0 # semver; new skills start at 0.1.0
author: Real Name (github-handle), Hermes Agent
license: MIT
platforms: [linux, macos, windows] # audit, don't guess — see Platform Gating
metadata:
hermes:
tags: [Short, Descriptive, Tags]
related_skills: [other-in-repo-skill]
---
description rules (HARDLINE — the validator's 1024 is NOT the standard)
≤ 60 characters. One sentence. Ends with a period.
State the capability, not the implementation, and don't repeat the skill name.
No marketing words ("powerful", "comprehensive", "seamless", "advanced").
The system prompt skill index truncates at 57 chars + "..." — the trigger/capability must be self-contained in that window.
If the description contains a :, wrap it in double quotes or YAML parses it as a mapping and the docs generator crashes. Quotes don't count toward the 60.
Good: Track named companies for material news with cited digests.
Bad: Use when a user asks to monitor named competitors or companies for product launches, pricing changes, funding, ... (240 chars — rejected in review)
author rules
Credit the human first, then "Hermes Agent" as secondary collaborator: Ben Barclay (benbarclay), Hermes Agent.
Never author: Hermes Agent alone for contributed skills — credit the human, not the tool, even (especially) when an agent drafted the text.
Every entry must resolve to an existing in-repo skill in the same tree state as your PR. Do not reference skills that were only planned, live in another PR, or exist only in ~/.hermes/skills/.
Verify each entry: search_files(pattern='<name>', target='files', path='skills') (and optional-skills/).
Platform Gating: audit, don't trust
platforms: gates loading by host OS. Set it from what the skill's prose and scripts actually invoke:
POSIX-only signals to search for in scripts/: fcntl, termios, pty, os.fork, os.killpg, signal.SIGKILL, os.kill(pid, 0) liveness checks, hardcoded /tmp/proc/etc. Default posture: fix cross-platform first (tempfile.gettempdir(), pathlib.Path, psutil.pid_exists); gate narrower only when the dependency is genuinely platform-bound, and say why in ## Pitfalls.
Size Limits
Full SKILL.md: ≤ 100,000 chars enforced (MAX_SKILL_CONTENT_CHARS), but target ~100 lines for a simple skill, ~200 for a complex one. Peer skills sit at 8-14k chars.
Bulky or branch-specific material goes in references/*.md, templates/, or scripts/ — pointed to from SKILL.md, not inlined.
Don't expect the model to inline-write parsers or non-trivial logic every call — ship a helper script in scripts/ and reference it by path.
Body Structure (modern section order)
# <Skill> Skill
2-3 sentence intro: what it does, what it doesn't do, dependency stance.
## When to Use — bulleted triggers (+ "Don't use for:" counter-triggers)
## Prerequisites — exact env vars, installs, API key sourcing
## How to Run — canonical invocation through the `terminal` tool
## Quick Reference — flat command list, no narration
## Procedure — numbered steps, each with a checkable completion criterion
## Pitfalls — known limits, things that look broken but aren't
## Verification — how to prove the skill worked
Not every section applies to every skill (a pure-procedure task skill may have no Quick Reference), but When to Use + actionable body + Pitfalls + Verification are the minimum. Cut marketing intros, "Setup Check" no-ops, and re-explanations of env vars already in Prerequisites.
Reference Hermes tools, not raw shell
When the skill needs a capability, name the proper Hermes tool in backticks: terminal, read_file, write_file, patch, search_files, web_search, web_extract, browser_navigate, vision_analyze, delegate_task, cronjob. Do NOT name shell utilities the agent already has wrapped (grep → search_files, cat → read_file, sed/awk → patch, find/ls → search_files target='files'). A CLI-wrapper skill should frame invocations as terminal(command="<tool> ...", timeout=...) — bare shell prose ("run foo --version") is a review-blocking non-conformance. If the skill depends on an MCP server, name it and document setup in Prerequisites.
Never use machine-local paths
Write repo-relative paths (skills/..., tools/skill_manager_tool.py). A /home/<you>/... path baked into a committed skill breaks for every other user and is an instant review flag.
Writing Quality Principles
A skill exists to make the agent's process more predictable — the agent reliably follows the same useful discipline.
Optimize for process predictability. If a line does not change behavior, cut it.
Choose the right context load. The description is paid for every turn; details go in the body or linked references.
End steps with completion criteria. Checkable and, when it matters, exhaustive: "every modified file accounted for" beats "summarize changes."
Co-locate rules with the concept they govern.
Use strong leading words ("tight loop," "root cause," "regression test") over long repeated explanations.
Prune duplication and no-ops. "Be careful" and "use best practices" don't change model behavior — replace with a checkable criterion or delete.
Tests and Docs (required for repo skills)
Tests live at tests/skills/test_<skill>_skill.py — stdlib + pytest + unittest.mock only, no live network. Run via scripts/run_tests.sh tests/skills/test_<skill>_skill.py -q. (The generic tests/tools/test_skill_manager_tool.py passing proves nothing about YOUR skill.)
Docs regen: run python website/scripts/generate-skill-docs.py, then apply scope discipline — the generator rewrites EVERY auto-gen page. git checkout -- everything that isn't yours; the final diff must show only your SKILL.md, your one per-skill docs page, a one-line catalog row, and a one-line website/sidebars.ts insertion (verify with search_files(pattern='<your-slug>', path='website/sidebars.ts') — exactly one hit, or the page is an orphan).
.env.example (only if the skill needs new env vars): one clearly delimited commented block; touch nothing else in the file.
Workflow
Survey peers in the target category with search_files(target='files') and read 2-3 peer SKILL.md files to match tone and structure. Prefer extending an existing skill over creating a narrow sibling.
Decide tier and category (see above). When in doubt, optional — and ask before pushing rather than defaulting.
Draft with write_file to skills/<category>/<name>/SKILL.md (or optional-skills/...).
Validate locally:
import yaml, re, pathlib
content = pathlib.Path("skills/<category>/<name>/SKILL.md").read_text()
assert content.startswith("---")
m = re.search(r'\n---\s*\n', content[3:])
fm = yaml.safe_load(content[3:m.start()+3])
assert "name" in fm and "description" in fm
assert len(fm["description"]) <= 60, f"description {len(fm['description'])} chars — hardline is 60"
assert fm["description"].endswith(".")
assert "platforms" in fm
assert len(content) <= 100_000
Also verify every related_skills entry exists in-repo.
Add tests + regen docs (previous section).
Git add + commit on the active branch; open a PR.
Note: the CURRENT session's skill loader is cached — skill_view / skills_list will not see the new skill until a new session. This is expected, not a bug.
Editing Existing In-Repo Skills
Small fix:skill_manage(action='patch', ...) works on in-repo skills, as does patch.
Major rewrite:write_file the whole SKILL.md.
Supporting files:write_file to references/, templates/, or scripts/ under the skill dir.
Always commit — in-repo skills are source, not runtime state. Re-run the docs generator when frontmatter changed.
Common Pitfalls
Using skill_manage(action='create') for an in-repo skill. It writes to ~/.hermes/skills/, not the repo tree. Use write_file.
Trusting the validator's limits as the standard. The validator allows 1024-char descriptions; review rejects anything over 60. The validator doesn't check platforms:, author format, tests, or docs — review does.
author: Hermes Agent on a contributed skill. Credit the human first.
Leading whitespace before ---. Validation fails on any leading blank line or BOM.
Description too generic or trigger buried past char 57.
related_skills pointing at skills that don't exist in-repo (user-local, planned, or in a sibling PR).
Duplicating a peer. Survey the category first; extend rather than sibling.
Skipping the docs generator or pushing its unrelated drift. Both directions are wrong: no regen = orphan skill with no docs page; blind regen = a ballooned diff full of other skills' drift.
Expecting the current session to see the new skill. The loader is initialized at session start.
Letting skills accumulate sediment. When adding a rule, remove the old wording it replaces.
Verification Checklist
Tier decided deliberately (bundled bar: 5+ sessions/month; else optional-skills/)
File at skills/<category>/<name>/SKILL.md or optional-skills/<category>/<name>/SKILL.md
Frontmatter starts at byte 0 with ---, closes with \n---\n
name, description, version, author, license, platforms, metadata.hermes.{tags, related_skills} all present
Description ≤ 60 chars, one sentence, ends with a period, no marketing words
author credits the human contributor first
platforms: audited against actual prose/scripts, not copied from a sibling
Every related_skills entry resolves in-repo
Body follows the modern section order; commands framed through Hermes tools
No machine-local paths anywhere in the file
Each ordered step has a checkable completion criterion
Tests at tests/skills/test_<skill>_skill.py pass under scripts/run_tests.sh
Docs regenerated with scope discipline; sidebar has exactly one entry for the slug
git add + commit on the intended branch; PR opened
Comparativa de alternativas
fernandotellado/ai-skills — referencia práctica de frontmatter/estructura/pitfalls bajo el estándar agentskills.io; complementa a la hora de escribir SKILL.md conformes al estándar.
1---2name: hermes-agent-skill-authoring3description: Author in-repo SKILL.md files: frontmatter and structure.4license: MIT5---67# Authoring Hermes-Agent Skills (in-repo)89## Overview1011There are two places a SKILL.md can live:12131. **User-local:** `~/.hermes/skills/<maybe-category>/<name>/SKILL.md` — personal, not shared. Created via `skill_manage(action='create')`.142. **In-repo (this skill is about this case):** `skills/<category>/<name>/SKILL.md` or `optional-skills/<category>/<name>/SKILL.md` inside the hermes-agent repo — committed, shipped with the package. Use `write_file` + `git add`. `skill_manage(action='create')` does NOT target this tree.1516In-repo skills must meet the repo's **hardline authoring standards** (see AGENTS.md, "Skill authoring standards (HARDLINE)" — that section is the source of truth; this skill is the operational walkthrough). Reviewers reject PRs that violate them, so meeting them up front is cheaper than a salvage pass later.1718## When to Use1920- User asks you to add a skill "in this branch / repo / commit"21- You're committing a reusable workflow that should ship with hermes-agent22- You're editing an existing skill under `skills/` or `optional-skills/` (use `patch` for small edits, `write_file` for rewrites; `skill_manage` still works for patch on in-repo skills, but not for `create`)23- Don't use for: personal skills in `~/.hermes/skills/` (just use `skill_manage`)2425## Decide the Tier First: Bundled vs Optional2627- **Bundled (`skills/<category>/`)** — daily-driver behavior, broadly useful across many user types, low footprint. Hard bar: you can say "a user will load this in 5+ sessions per month" with a straight face.28- **Optional (`optional-skills/<category>/`)** — niche, vertical-specific (blockchain, gaming, finance, one app), recurring-job/task skills, or anything heavy. Installed via `hermes skills install official/<category>/<skill>`.2930**When in doubt, optional.** Promoting later is easy; demoting is churn. "Would be useful to anyone who ever needs this" is an optional-tier argument, not a bundled one.3132Pick the category by what the tool IS, not what it feels like (an AI-agent CLI goes in `autonomous-ai-agents/` even if it "feels productivity"). Confirm existing categories with `search_files(pattern='*', target='files', path='skills')` and don't invent new top-level categories casually.3334**No router / index / hub skills.** A skill whose core content is a routing table pointing at sibling skills adds an indirection hop and duplicates the siblings' own `When to Use` triggers. If the skill would be empty without "load skill X instead" pointers, don't write it — the catalog and each sibling's triggers already do that job.3536## Required Frontmatter3738Validator source of truth: `tools/skill_manager_tool.py::_validate_frontmatter`. Validator hard requirements:3940- Starts with `---` as the first bytes (no leading blank line).41- Closes with `\n---\n` before the body.42- Parses as a YAML mapping.43- `name` field present.44- `description` field present (validator ceiling 1024 chars — but see the repo hardline below, which is much stricter).45- Non-empty body after the closing `---`.4647Repo-standard shape (all fields expected, even where the validator doesn't enforce them):4849```yaml50---51name: my-skill-name # lowercase, hyphens, ≤64 chars (MAX_NAME_LENGTH)52description: Concise capability statement, under sixty chars.53version: 0.1.0 # semver; new skills start at 0.1.054author: Real Name (github-handle), Hermes Agent55license: MIT56platforms: [linux, macos, windows] # audit, don't guess — see Platform Gating57metadata:58 hermes:59 tags: [Short, Descriptive, Tags]60 related_skills: [other-in-repo-skill]61---62```6364### `description` rules (HARDLINE — the validator's 1024 is NOT the standard)6566- **≤ 60 characters.** One sentence. Ends with a period.67- State the capability, not the implementation, and don't repeat the skill name.68- No marketing words ("powerful", "comprehensive", "seamless", "advanced").69- The system prompt skill index truncates at 57 chars + "..." — the trigger/capability must be self-contained in that window.70- If the description contains a `:`, wrap it in double quotes or YAML parses it as a mapping and the docs generator crashes. Quotes don't count toward the 60.7172Good: `Track named companies for material news with cited digests.`73Bad: `Use when a user asks to monitor named competitors or companies for product launches, pricing changes, funding, ...` (240 chars — rejected in review)7475### `author` rules7677- Credit the **human first**, then "Hermes Agent" as secondary collaborator: `Ben Barclay (benbarclay), Hermes Agent`.78- Never `author: Hermes Agent` alone for contributed skills — credit the human, not the tool, even (especially) when an agent drafted the text.79- Maintainer-authored skills: `Teknium (teknium1), Hermes Agent`.8081### `related_skills` rules8283- Every entry must resolve to an existing **in-repo** skill in the same tree state as your PR. Do not reference skills that were only planned, live in another PR, or exist only in `~/.hermes/skills/`.84- Verify each entry: `search_files(pattern='<name>', target='files', path='skills')` (and `optional-skills/`).8586## Platform Gating: audit, don't trust8788`platforms:` gates loading by host OS. Set it from what the skill's prose and scripts actually invoke:8990| Skill uses only… | `platforms:` |91|---|---|92| Hermes tools + stdlib Python + cross-platform CLIs | `[linux, macos, windows]` |93| bash pipelines, `grep`/`awk`/`sed` chains, heredocs | `[linux, macos]` |94| `osascript`, `defaults`, `pmset` | `[macos]` |95| `apt`/`systemctl`/`/proc` | `[linux]` |9697POSIX-only signals to search for in `scripts/`: `fcntl`, `termios`, `pty`, `os.fork`, `os.killpg`, `signal.SIGKILL`, `os.kill(pid, 0)` liveness checks, hardcoded `/tmp` `/proc` `/etc`. Default posture: fix cross-platform first (`tempfile.gettempdir()`, `pathlib.Path`, `psutil.pid_exists`); gate narrower only when the dependency is genuinely platform-bound, and say why in `## Pitfalls`.9899## Size Limits100101- Full SKILL.md: ≤ 100,000 chars enforced (`MAX_SKILL_CONTENT_CHARS`), but target **~100 lines for a simple skill, ~200 for a complex one**. Peer skills sit at 8-14k chars.102- Bulky or branch-specific material goes in `references/*.md`, `templates/`, or `scripts/` — pointed to from SKILL.md, not inlined.103- Don't expect the model to inline-write parsers or non-trivial logic every call — ship a helper script in `scripts/` and reference it by path.104105## Body Structure (modern section order)106107```108# <Skill> Skill1092-3 sentence intro: what it does, what it doesn't do, dependency stance.110111## When to Use — bulleted triggers (+ "Don't use for:" counter-triggers)112## Prerequisites — exact env vars, installs, API key sourcing113## How to Run — canonical invocation through the `terminal` tool114## Quick Reference — flat command list, no narration115## Procedure — numbered steps, each with a checkable completion criterion116## Pitfalls — known limits, things that look broken but aren't117## Verification — how to prove the skill worked118```119120Not every section applies to every skill (a pure-procedure task skill may have no Quick Reference), but When to Use + actionable body + Pitfalls + Verification are the minimum. Cut marketing intros, "Setup Check" no-ops, and re-explanations of env vars already in Prerequisites.121122### Reference Hermes tools, not raw shell123124When the skill needs a capability, name the proper Hermes tool in backticks: `terminal`, `read_file`, `write_file`, `patch`, `search_files`, `web_search`, `web_extract`, `browser_navigate`, `vision_analyze`, `delegate_task`, `cronjob`. Do NOT name shell utilities the agent already has wrapped (`grep` → `search_files`, `cat` → `read_file`, `sed`/`awk` → `patch`, `find`/`ls` → `search_files target='files'`). A CLI-wrapper skill should frame invocations as `terminal(command="<tool> ...", timeout=...)` — bare shell prose ("run `foo --version`") is a review-blocking non-conformance. If the skill depends on an MCP server, name it and document setup in Prerequisites.125126### Never use machine-local paths127128Write repo-relative paths (`skills/...`, `tools/skill_manager_tool.py`). A `/home/<you>/...` path baked into a committed skill breaks for every other user and is an instant review flag.129130## Writing Quality Principles131132A skill exists to make the agent's process more predictable — the agent reliably follows the same useful discipline.1331341. **Optimize for process predictability.** If a line does not change behavior, cut it.1352. **Choose the right context load.** The description is paid for every turn; details go in the body or linked references.1363. **End steps with completion criteria.** Checkable and, when it matters, exhaustive: "every modified file accounted for" beats "summarize changes."1374. **Co-locate rules with the concept they govern.**1385. **Use strong leading words** ("tight loop," "root cause," "regression test") over long repeated explanations.1396. **Prune duplication and no-ops.** "Be careful" and "use best practices" don't change model behavior — replace with a checkable criterion or delete.140141## Tests and Docs (required for repo skills)1421431. **Tests** live at `tests/skills/test_<skill>_skill.py` — stdlib + pytest + `unittest.mock` only, no live network. Run via `scripts/run_tests.sh tests/skills/test_<skill>_skill.py -q`. (The generic `tests/tools/test_skill_manager_tool.py` passing proves nothing about YOUR skill.)1442. **Docs regen:** run `python website/scripts/generate-skill-docs.py`, then apply scope discipline — the generator rewrites EVERY auto-gen page. `git checkout --` everything that isn't yours; the final diff must show only your SKILL.md, your one per-skill docs page, a one-line catalog row, and a one-line `website/sidebars.ts` insertion (verify with `search_files(pattern='<your-slug>', path='website/sidebars.ts')` — exactly one hit, or the page is an orphan).1453. **`.env.example`** (only if the skill needs new env vars): one clearly delimited commented block; touch nothing else in the file.146147## Workflow1481491. **Survey peers** in the target category with `search_files(target='files')` and read 2-3 peer SKILL.md files to match tone and structure. Prefer extending an existing skill over creating a narrow sibling.1502. **Decide tier and category** (see above). When in doubt, optional — and ask before pushing rather than defaulting.1513. **Draft** with `write_file` to `skills/<category>/<name>/SKILL.md` (or `optional-skills/...`).1524. **Validate locally**:153 ```python154 import yaml, re, pathlib155 content = pathlib.Path("skills/<category>/<name>/SKILL.md").read_text()156 assert content.startswith("---")157 m = re.search(r'\n---\s*\n', content[3:])158 fm = yaml.safe_load(content[3:m.start()+3])159 assert "name" in fm and "description" in fm160 assert len(fm["description"]) <= 60, f"description {len(fm['description'])} chars — hardline is 60"161 assert fm["description"].endswith(".")162 assert "platforms" in fm163 assert len(content) <= 100_000164 ```165 Also verify every `related_skills` entry exists in-repo.1665. **Add tests + regen docs** (previous section).1676. **Git add + commit** on the active branch; open a PR.1687. **Note:** the CURRENT session's skill loader is cached — `skill_view` / `skills_list` will not see the new skill until a new session. This is expected, not a bug.169170## Editing Existing In-Repo Skills171172- **Small fix:** `skill_manage(action='patch', ...)` works on in-repo skills, as does `patch`.173- **Major rewrite:** `write_file` the whole SKILL.md.174- **Supporting files:** `write_file` to `references/`, `templates/`, or `scripts/` under the skill dir.175- **Always commit** — in-repo skills are source, not runtime state. Re-run the docs generator when frontmatter changed.176177## Common Pitfalls1781791. **Using `skill_manage(action='create')` for an in-repo skill.** It writes to `~/.hermes/skills/`, not the repo tree. Use `write_file`.1802. **Trusting the validator's limits as the standard.** The validator allows 1024-char descriptions; review rejects anything over 60. The validator doesn't check `platforms:`, author format, tests, or docs — review does.1813. **`author: Hermes Agent` on a contributed skill.** Credit the human first.1824. **Leading whitespace before `---`.** Validation fails on any leading blank line or BOM.1835. **Description too generic or trigger buried past char 57.**1846. **`related_skills` pointing at skills that don't exist in-repo** (user-local, planned, or in a sibling PR).1857. **Duplicating a peer.** Survey the category first; extend rather than sibling.1868. **Skipping the docs generator or pushing its unrelated drift.** Both directions are wrong: no regen = orphan skill with no docs page; blind regen = a ballooned diff full of other skills' drift.1879. **Expecting the current session to see the new skill.** The loader is initialized at session start.18810. **Letting skills accumulate sediment.** When adding a rule, remove the old wording it replaces.189190## Verification Checklist191192- [ ] Tier decided deliberately (bundled bar: 5+ sessions/month; else `optional-skills/`)193- [ ] File at `skills/<category>/<name>/SKILL.md` or `optional-skills/<category>/<name>/SKILL.md`194- [ ] Frontmatter starts at byte 0 with `---`, closes with `\n---\n`195- [ ] `name`, `description`, `version`, `author`, `license`, `platforms`, `metadata.hermes.{tags, related_skills}` all present196- [ ] Description ≤ 60 chars, one sentence, ends with a period, no marketing words197- [ ] `author` credits the human contributor first198- [ ] `platforms:` audited against actual prose/scripts, not copied from a sibling199- [ ] Every `related_skills` entry resolves in-repo200- [ ] Body follows the modern section order; commands framed through Hermes tools201- [ ] No machine-local paths anywhere in the file202- [ ] Each ordered step has a checkable completion criterion203- [ ] Tests at `tests/skills/test_<skill>_skill.py` pass under `scripts/run_tests.sh`204- [ ] Docs regenerated with scope discipline; sidebar has exactly one entry for the slug205- [ ] `git add` + commit on the intended branch; PR opened206207## Comparativa de alternativas208209- **[fernandotellado/ai-skills](https://github.com/fernandotellado/ai-skills)** — referencia práctica de frontmatter/estructura/pitfalls bajo el estándar `agentskills.io`; complementa a la hora de escribir SKILL.md conformes al estándar.
Run npx skillmds@latest add ntizar/hermes-agent-skill-authoring in your terminal (requires Node.js), paste this page's agent-chat prompt into Claude, Cursor, or any MCP-connected agent, or download the SKILL.md file and copy it into your agent's skills directory.
Author in-repo SKILL.md files: frontmatter and structure. It is listed under AI & ML on SkillMD.
This skill has not completed SkillMD's automated safety review yet. SkillMD never runs a skill's scripts for you; review the SKILL.md before installing.
This skill is tagged as working with Claude Code, Claude.ai, OpenAI Codex. SKILL.md is an open format, so most agents that read a skills directory can load it too.
Yes. Installing skills from SkillMD is free. This skill is licensed under MIT.
ntizar (@ntizar) published this skill. Their other Agent Skills are listed on their SkillMD profile.