useskl 0.1.8 → 0.2.1
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 -3
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -21,7 +21,7 @@ skl --version
|
|
|
21
21
|
The skills ecosystem tells you *how to write* a skill. skl manages **what
|
|
22
22
|
happens after**:
|
|
23
23
|
|
|
24
|
-
- **Distribute** — `skl publish` pushes a skill to your registry; `skl
|
|
24
|
+
- **Distribute** — `skl publish` pushes a skill to your registry; `skl install <skill>`
|
|
25
25
|
pulls one into a project. No copy-pasting folders between repos.
|
|
26
26
|
- **Reproduce** — every project gets a `skl.json` manifest. `skl install` rebuilds
|
|
27
27
|
the exact pinned versions on another machine (the `npm ci` of skills).
|
|
@@ -35,8 +35,8 @@ happens after**:
|
|
|
35
35
|
```sh
|
|
36
36
|
skl login # authenticate this device
|
|
37
37
|
skl init # create skl.json, choose your target agents
|
|
38
|
-
skl
|
|
39
|
-
skl install
|
|
38
|
+
skl install <user>/<skill> # install a skill + record it in skl.json
|
|
39
|
+
skl install # rebuild every skill from skl.json (new machine / CI)
|
|
40
40
|
skl publish ./my-skill # publish your own skill (versioned, immutable)
|
|
41
41
|
```
|
|
42
42
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "useskl",
|
|
3
|
-
"version": "0.1
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"description": "The skl CLI — publish, install, and version Agent Skills across Claude Code, Codex, Cursor, Copilot, Gemini & Grok. Cross-harness skill manager. Installs the `skl` command.",
|
|
5
5
|
"bin": {
|
|
6
6
|
"skl": "bin/skl.cjs"
|
|
@@ -21,10 +21,10 @@
|
|
|
21
21
|
"cli"
|
|
22
22
|
],
|
|
23
23
|
"optionalDependencies": {
|
|
24
|
-
"useskl-darwin-arm64": "0.1
|
|
25
|
-
"useskl-darwin-x64": "0.1
|
|
26
|
-
"useskl-linux-x64": "0.1
|
|
27
|
-
"useskl-linux-arm64": "0.1
|
|
24
|
+
"useskl-darwin-arm64": "0.2.1",
|
|
25
|
+
"useskl-darwin-x64": "0.2.1",
|
|
26
|
+
"useskl-linux-x64": "0.2.1",
|
|
27
|
+
"useskl-linux-arm64": "0.2.1"
|
|
28
28
|
},
|
|
29
29
|
"license": "UNLICENSED",
|
|
30
30
|
"homepage": "https://useskl.com",
|