不是模型训练,也不是普通聊天记录。
Skill 是一组可复用的 Markdown 指令,描述何时触发、如何执行、使用哪些工具、如何处理错误以及怎样验证结果。
Skills · Agent Skills System
将重复流程写成 Skill,按需加载、执行与验证。
Skill 是一组可复用的 Markdown 指令,描述何时触发、如何执行、使用哪些工具、如何处理错误以及怎样验证结果。
~/.hermes/skills/内置 Skill、Hub 安装的 Skill、Hermes 自动生成的 Skill 和手写 Skill 都集中在这个目录。Hermes 可以读取、修改和删除它们。
会话开始时只加载 Skill 名称和简短描述,不会把全部正文塞进上下文。
匹配任务后加载对应 SKILL.md;引用资料和脚本只在需要时继续读取。
已安装的 Skill 会变成斜杠命令,例如 /plan 或 /my-workflow。
curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash
iex (irm https://hermes-agent.nousresearch.com/install.ps1)
hermes setup --portal
也可以配置 OpenRouter、OpenAI、NVIDIA NIM 或其它支持的模型提供方。Skill 与模型提供方相互独立,更换模型通常不需要改写 Skill。
hermes skills list
在聊天会话中也可以输入 /skills。
/skills search docker
/skills search research
/plan 设计一个静态网站上线方案
/github-pr-workflow 为认证模块创建 PR
/excalidraw
不带参数调用时,Hermes 会先加载 Skill,再询问具体任务。也可以直接用自然语言要求 Hermes 使用某个 Skill。
/learn把文档、网页或已经明确的工作方法交给 Hermes,它会收集资料并生成符合项目规范的 Skill。
/learn 根据团队部署文档创建 production-deploy skill
mkdir -p ~/.hermes/skills/my-workflow
touch ~/.hermes/skills/my-workflow/SKILL.md
---
name: deploy-static-site
description: Deploy and verify a static Nginx site
version: 1.0.0
---
# Deploy Static Site
## When to use
Use when publishing an existing static site to an Nginx server.
## Procedure
1. Inspect the project and identify the build output.
2. Validate HTML, CSS, images, and internal links.
3. Copy files to the configured web root.
4. Run `nginx -t` before reloading Nginx.
5. Verify the public URL and HTTPS response.
## Safety
- Never overwrite an unknown web root without inspecting it.
- Never expose secrets or private configuration.
## Verification
- Nginx configuration test passes.
- The public page returns HTTP 200.
- Local assets load without 404 errors.
~/.hermes/skills/deploy-static-site/
├── SKILL.md
├── references/
│ └── nginx-layout.md
├── templates/
│ └── release-checklist.md
├── scripts/
│ └── verify-site.sh
└── assets/
└── nginx-example.conf
| 目的 | 命令 |
|---|---|
| 浏览官方可选 Skill | hermes skills browse --source official |
| 搜索 skills.sh | hermes skills search react --source skills-sh |
| 检查安装详情 | hermes skills inspect SOURCE/SKILL |
| 安装官方 Skill | hermes skills install official/research/arxiv |
| 安装单个 URL | hermes skills install https://example.com/SKILL.md --name my-skill |
| 检查更新 | hermes skills check |
| 更新已安装 Skill | hermes skills update |
| 卸载 | hermes skills uninstall my-skill |
hermes skills tap add my-org/hermes-skills
hermes skills search deploy
hermes skills install my-org/hermes-skills/deploy-runbook
hermes skills publish skills/my-skill \
--to github \
--repo owner/repo
Hermes 会检查数据外传、提示注入、破坏性命令和供应链风险。社区来源默认采用更严格的信任策略。
hermes skills audit
--force 不是万能绕过。它只能覆盖部分 caution 或 warn 级别策略;被判定为 dangerous 的 Skill 仍不能强制安装。使用前应先人工阅读源码。
hermes skills reset google-workspace --restore
--restore 会删除本地修改并恢复当前内置版本。只清除修改标记而保留当前文件时,不加该参数。
Hermes Agent 与 Skills 系统仍在快速更新。本页依据 2026 年 6 月 24 日的官方文档整理;实际使用前可运行 hermes update 并重新查看对应命令的帮助信息。