useskl 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 +2 -2
- package/bin/skl.cjs +2 -2
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -68,8 +68,8 @@ Or download a native binary directly from
|
|
|
68
68
|
a tiny launcher that execs the right binary for your OS/arch, installed
|
|
69
69
|
automatically as an
|
|
70
70
|
[`optionalDependencies`](https://docs.npmjs.com/cli/configuring-npm/package-json#optionaldependencies)
|
|
71
|
-
package (`
|
|
72
|
-
`
|
|
71
|
+
package (`useskl-darwin-arm64`, `useskl-darwin-x64`, `useskl-linux-x64`,
|
|
72
|
+
`useskl-linux-arm64`). npm pulls only the one matching your machine — **there is
|
|
73
73
|
no postinstall download.** Windows and Alpine/musl aren't supported yet.
|
|
74
74
|
|
|
75
75
|
## Links
|
package/bin/skl.cjs
CHANGED
|
@@ -17,13 +17,13 @@ if (!OS || !CPU) {
|
|
|
17
17
|
process.exit(1);
|
|
18
18
|
}
|
|
19
19
|
|
|
20
|
-
const pkg = `
|
|
20
|
+
const pkg = `useskl-${OS}-${CPU}`;
|
|
21
21
|
let binPath;
|
|
22
22
|
try {
|
|
23
23
|
binPath = require.resolve(`${pkg}/bin/skl`);
|
|
24
24
|
} catch {
|
|
25
25
|
console.error(
|
|
26
|
-
`skl: missing platform package '${pkg}'. Reinstall skl (npm i -g
|
|
26
|
+
`skl: missing platform package '${pkg}'. Reinstall skl (npm i -g useskl), or download a binary from https://github.com/loopdoop/skl/releases`,
|
|
27
27
|
);
|
|
28
28
|
process.exit(1);
|
|
29
29
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "useskl",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
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
|
-
"
|
|
25
|
-
"
|
|
26
|
-
"
|
|
27
|
-
"
|
|
24
|
+
"useskl-darwin-arm64": "0.1.4",
|
|
25
|
+
"useskl-darwin-x64": "0.1.4",
|
|
26
|
+
"useskl-linux-x64": "0.1.4",
|
|
27
|
+
"useskl-linux-arm64": "0.1.4"
|
|
28
28
|
},
|
|
29
29
|
"license": "UNLICENSED",
|
|
30
30
|
"homepage": "https://useskl.com",
|