Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
赵月辉
/
hermes-skills
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
5d92ed68
authored
Jun 22, 2026
by
赵月辉
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update README.md
parent
bd0e8340
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
60 additions
and
3 deletions
+60
-3
README.md
+60
-3
No files found.
README.md
View file @
5d92ed68
# Hermes Skills 仓库结构规范
## 目录结构
```
hermes-skills/ # 仓库根目录
├── README.md # (可选) 仓库说明
└── skills/ # 必须:技能根目录
...
...
@@ -7,7 +12,7 @@ hermes-skills/ # 仓库根目录
│ ├── apple-reminders/
│ │ └── SKILL.md
│ └── findmy/
│
└
── SKILL.md
│ ── SKILL.md
├── coding/
│ ├── claude-code/
│ │ └── SKILL.md
...
...
@@ -15,4 +20,57 @@ hermes-skills/ # 仓库根目录
│ └── SKILL.md
└── automation/
└── macos-computer-use/
└── SKILL.md
\ No newline at end of file
── SKILL.md
```
## SKILL.md 文件格式
每个技能必须包含一个
`SKILL.md`
文件,格式如下:
```
markdown
---
name: apple-notes
description: Manage Apple Notes via memo CLI: create, search, edit.
---
# Apple Notes Skill
详细的技能使用说明、提示词模板等...
```
## 规范要求
1.
**必须**
有
`skills/`
根目录
2.
**必须**
按分类组织:
`skills/<category>/<skill-name>/SKILL.md`
3.
`SKILL.md`
必须包含 YAML frontmatter(
`---`
包裹),至少要有
`name`
和
`description`
4.
分类名可以自定义,比如
`apple`
、
`coding`
、
`automation`
等
5.
技能名使用小写+短横线,如
`apple-notes`
## 示例
创建一个新的技能:
```
bash
mkdir
-p
skills/coding/code-review
cat
>
skills/coding/code-review/SKILL.md
<<
'
EOF
'
---
name: code-review
description: Review code for bugs, style issues, and best practices.
---
# Code Review Skill
You are an expert code reviewer. When reviewing code:
1. Check for bugs and potential issues
2. Suggest improvements for readability
3. Ensure adherence to best practices
EOF
```
然后提交到仓库:
```
bash
git add
.
git commit
-m
"feat(skills): add code-review skill"
git push origin master
```
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment