@stefafafan/skm 0.1.3 → 0.1.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 +10 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -9,6 +9,8 @@ See [stefafafan/skm-demo](https://github.com/stefafafan/skm-demo) for real examp
|
|
|
9
9
|
> [!WARNING]
|
|
10
10
|
> This package is in beta. There may be breaking changes.
|
|
11
11
|
|
|
12
|
+

|
|
13
|
+
|
|
12
14
|
## Motivation
|
|
13
15
|
|
|
14
16
|
Agent Skills are convenient, but there are 2 points to consider:
|
|
@@ -73,10 +75,6 @@ skm init --global
|
|
|
73
75
|
skm add stefafafan/skills --global
|
|
74
76
|
```
|
|
75
77
|
|
|
76
|
-
```bash
|
|
77
|
-
skm list --global
|
|
78
|
-
```
|
|
79
|
-
|
|
80
78
|
## Commands
|
|
81
79
|
|
|
82
80
|
Call `help` subcommand for more information.
|
|
@@ -132,3 +130,11 @@ It is recommended to add the `.skm` directory to `.gitignore`.
|
|
|
132
130
|
```sh
|
|
133
131
|
echo '.skm' >> .gitignore
|
|
134
132
|
```
|
|
133
|
+
|
|
134
|
+
## FAQ
|
|
135
|
+
|
|
136
|
+
### Q: My Coding Agent doesn't support `.agents/skills`
|
|
137
|
+
|
|
138
|
+
It is a design decision to only support `.agents/skills` for `skm`.
|
|
139
|
+
|
|
140
|
+
If you don't mind, you can use the workaround of symbolic links (e.g. make `.claude/skills` a symlink of `.agents/skills`).
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stefafafan/skm",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
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": [
|