@stefafafan/skm 0.1.2 → 0.1.3
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 +10 -6
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
# skm
|
|
2
2
|
|
|
3
|
+
<a href="https://www.npmjs.com/package/@stefafafan/skm"><img alt="NPM Version" src="https://img.shields.io/npm/v/%40stefafafan%2Fskm"></a>
|
|
4
|
+
|
|
3
5
|
`skm` is a package manager of [Agent Skills](https://agentskills.io), supporting both project and global-level skills.
|
|
4
6
|
|
|
7
|
+
See [stefafafan/skm-demo](https://github.com/stefafafan/skm-demo) for real examples of how `skm` is used in a project.
|
|
8
|
+
|
|
5
9
|
> [!WARNING]
|
|
6
10
|
> This package is in beta. There may be breaking changes.
|
|
7
11
|
|
|
@@ -35,19 +39,19 @@ npx @stefafafan/skm
|
|
|
35
39
|
Initialize a project with `skills.json` and `skills.lock.json`
|
|
36
40
|
|
|
37
41
|
```bash
|
|
38
|
-
skm init
|
|
42
|
+
skm init
|
|
39
43
|
```
|
|
40
44
|
|
|
41
45
|
Add your favorite skills.
|
|
42
46
|
|
|
43
47
|
```bash
|
|
44
|
-
skm add https://github.com/stefafafan/skills
|
|
48
|
+
skm add https://github.com/stefafafan/skills
|
|
45
49
|
```
|
|
46
50
|
|
|
47
51
|
Rename a skill locally if you prefer a different key name.
|
|
48
52
|
|
|
49
53
|
```bash
|
|
50
|
-
skm rename pin-github-actions gha-pinner
|
|
54
|
+
skm rename pin-github-actions gha-pinner
|
|
51
55
|
```
|
|
52
56
|
|
|
53
57
|
Add and commit your files.
|
|
@@ -120,11 +124,11 @@ The following files are used by `skm`
|
|
|
120
124
|
The intended manifest-first flow is:
|
|
121
125
|
|
|
122
126
|
1. Change `skills.json` with `skm` commands or by editing it directly.
|
|
123
|
-
2. Run `skm install
|
|
127
|
+
2. Run `skm install`.
|
|
124
128
|
3. Let `skills.lock.json` and `.agents/skills/` reconcile automatically.
|
|
125
129
|
|
|
126
|
-
It is recommended to add the
|
|
130
|
+
It is recommended to add the `.skm` directory to `.gitignore`.
|
|
127
131
|
|
|
128
132
|
```sh
|
|
129
|
-
.skm
|
|
133
|
+
echo '.skm' >> .gitignore
|
|
130
134
|
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stefafafan/skm",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "A package manager for AI Agent Skills. Supports installation, version management, and renaming of skills. Can be used for both global and project specific skill management.",
|
|
6
6
|
"keywords": [
|