skills 1.5.3 → 1.5.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -1
- package/dist/cli.mjs +10 -1
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
The CLI for the open agent skills ecosystem.
|
|
4
4
|
|
|
5
5
|
<!-- agent-list:start -->
|
|
6
|
-
Supports **OpenCode**, **Claude Code**, **Codex**, **Cursor**, and [
|
|
6
|
+
Supports **OpenCode**, **Claude Code**, **Codex**, **Cursor**, and [51 more](#supported-agents).
|
|
7
7
|
<!-- agent-list:end -->
|
|
8
8
|
|
|
9
9
|
## Install a Skill
|
|
@@ -251,6 +251,7 @@ Skills can be installed to any of these agents:
|
|
|
251
251
|
| Gemini CLI | `gemini-cli` | `.agents/skills/` | `~/.gemini/skills/` |
|
|
252
252
|
| GitHub Copilot | `github-copilot` | `.agents/skills/` | `~/.copilot/skills/` |
|
|
253
253
|
| Goose | `goose` | `.goose/skills/` | `~/.config/goose/skills/` |
|
|
254
|
+
| Hermes Agent | `hermes-agent` | `.hermes/skills/` | `~/.hermes/skills/` |
|
|
254
255
|
| Junie | `junie` | `.junie/skills/` | `~/.junie/skills/` |
|
|
255
256
|
| iFlow CLI | `iflow-cli` | `.iflow/skills/` | `~/.iflow/skills/` |
|
|
256
257
|
| Kilo Code | `kilo` | `.kilocode/skills/` | `~/.kilocode/skills/` |
|
|
@@ -360,6 +361,7 @@ The CLI searches for skills in these locations within a repository:
|
|
|
360
361
|
- `.factory/skills/`
|
|
361
362
|
- `.forge/skills/`
|
|
362
363
|
- `.goose/skills/`
|
|
364
|
+
- `.hermes/skills/`
|
|
363
365
|
- `.junie/skills/`
|
|
364
366
|
- `.iflow/skills/`
|
|
365
367
|
- `.kilocode/skills/`
|
package/dist/cli.mjs
CHANGED
|
@@ -953,6 +953,15 @@ const agents = {
|
|
|
953
953
|
return existsSync(join(configHome, "goose"));
|
|
954
954
|
}
|
|
955
955
|
},
|
|
956
|
+
"hermes-agent": {
|
|
957
|
+
name: "hermes-agent",
|
|
958
|
+
displayName: "Hermes Agent",
|
|
959
|
+
skillsDir: ".hermes/skills",
|
|
960
|
+
globalSkillsDir: join(home, ".hermes/skills"),
|
|
961
|
+
detectInstalled: async () => {
|
|
962
|
+
return existsSync(join(home, ".hermes"));
|
|
963
|
+
}
|
|
964
|
+
},
|
|
956
965
|
junie: {
|
|
957
966
|
name: "junie",
|
|
958
967
|
displayName: "Junie",
|
|
@@ -2308,7 +2317,7 @@ async function tryBlobInstall(ownerRepo, options = {}) {
|
|
|
2308
2317
|
tree
|
|
2309
2318
|
};
|
|
2310
2319
|
}
|
|
2311
|
-
var version$1 = "1.5.
|
|
2320
|
+
var version$1 = "1.5.4";
|
|
2312
2321
|
const isCancelled$1 = (value) => typeof value === "symbol";
|
|
2313
2322
|
async function isSourcePrivate(source) {
|
|
2314
2323
|
const ownerRepo = parseOwnerRepo(source);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "skills",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.4",
|
|
4
4
|
"description": "The open agent skills ecosystem",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -63,6 +63,7 @@
|
|
|
63
63
|
"gemini-cli",
|
|
64
64
|
"github-copilot",
|
|
65
65
|
"goose",
|
|
66
|
+
"hermes-agent",
|
|
66
67
|
"junie",
|
|
67
68
|
"iflow-cli",
|
|
68
69
|
"kilo",
|