skills 1.5.19 → 1.5.21
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/LICENSE +21 -0
- package/README.md +11 -2
- package/dist/_chunks/libs/@clack/prompts.mjs +1 -0
- package/dist/cli.mjs +695 -145
- package/package.json +4 -1
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Vercel, Inc.
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
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 [70 more](#supported-agents).
|
|
7
7
|
<!-- agent-list:end -->
|
|
8
8
|
|
|
9
9
|
[](https://skills.sh/vercel-labs/skills)
|
|
@@ -85,8 +85,13 @@ npx skills add vercel-labs/agent-skills --skill '*' -a claude-code
|
|
|
85
85
|
|
|
86
86
|
# Install specific skills to all agents
|
|
87
87
|
npx skills add vercel-labs/agent-skills --agent '*' --skill frontend-design
|
|
88
|
+
|
|
89
|
+
# Install from a direct SKILL.md or archive download URL
|
|
90
|
+
npx skills add https://example.com/download/my-skill
|
|
88
91
|
```
|
|
89
92
|
|
|
93
|
+
Direct download URLs are tried after well-known discovery. They may point to a single valid `SKILL.md` file or a `.zip`, `.tar`, `.tar.gz`, or `.tgz` archive; the URL does not need to include a file extension. Downloads are limited to 10 MiB, extracted content to 25 MiB, and archives to 1000 files by default. Override with `SKILLS_DOWNLOAD_MAX_BYTES`, `SKILLS_EXTRACT_MAX_BYTES`, and `SKILLS_EXTRACT_MAX_FILES` when you trust the source.
|
|
94
|
+
|
|
90
95
|
### Installation Scope
|
|
91
96
|
|
|
92
97
|
| Scope | Flag | Location | Use Case |
|
|
@@ -272,12 +277,14 @@ Skills can be installed to any of these agents:
|
|
|
272
277
|
| Gemini CLI | `gemini-cli` | `.agents/skills/` | `~/.gemini/skills/` |
|
|
273
278
|
| GitHub Copilot | `github-copilot` | `.agents/skills/` | `~/.copilot/skills/` |
|
|
274
279
|
| Goose | `goose` | `.goose/skills/` | `~/.config/goose/skills/` |
|
|
280
|
+
| Grok Build | `grok` | `.grok/skills/` | `~/.grok/skills/` |
|
|
275
281
|
| Hermes Agent | `hermes-agent` | `.hermes/skills/` | `~/.hermes/skills/` |
|
|
276
282
|
| inference.sh | `inference-sh` | `.inferencesh/skills/` | `~/.inferencesh/skills/` |
|
|
277
283
|
| Jazz | `jazz` | `.jazz/skills/` | `~/.jazz/skills/` |
|
|
278
284
|
| Junie | `junie` | `.junie/skills/` | `~/.junie/skills/` |
|
|
279
285
|
| iFlow CLI | `iflow-cli` | `.iflow/skills/` | `~/.iflow/skills/` |
|
|
280
286
|
| Kilo Code | `kilo` | `.kilocode/skills/` | `~/.kilocode/skills/` |
|
|
287
|
+
| Kimchi | `kimchi` | `.kimchi/skills/` | `~/.config/kimchi/harness/skills/` |
|
|
281
288
|
| Kiro CLI | `kiro-cli` | `.kiro/skills/` | `~/.kiro/skills/` |
|
|
282
289
|
| Kode | `kode` | `.kode/skills/` | `~/.kode/skills/` |
|
|
283
290
|
| Lingma | `lingma` | `.lingma/skills/` | `~/.lingma/skills/` |
|
|
@@ -402,12 +409,14 @@ to also discover `SKILL.md` files outside these container directories
|
|
|
402
409
|
- `agent/skills/`
|
|
403
410
|
- `.forge/skills/`
|
|
404
411
|
- `.goose/skills/`
|
|
412
|
+
- `.grok/skills/`
|
|
405
413
|
- `.hermes/skills/`
|
|
406
414
|
- `.inferencesh/skills/`
|
|
407
415
|
- `.jazz/skills/`
|
|
408
416
|
- `.junie/skills/`
|
|
409
417
|
- `.iflow/skills/`
|
|
410
418
|
- `.kilocode/skills/`
|
|
419
|
+
- `.kimchi/skills/`
|
|
411
420
|
- `.kiro/skills/`
|
|
412
421
|
- `.kode/skills/`
|
|
413
422
|
- `.lingma/skills/`
|
|
@@ -538,4 +547,4 @@ Telemetry is automatically disabled in CI environments.
|
|
|
538
547
|
|
|
539
548
|
## License
|
|
540
549
|
|
|
541
|
-
MIT
|
|
550
|
+
This project is licensed under the [MIT License](LICENSE).
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { a, block, fastStringWidth, getColumns, getRows, n$1, r, require_src, settings, wrapAnsi, wrapTextWithPrefix } from "./core.mjs";
|
|
2
2
|
import { styleText } from "node:util";
|
|
3
3
|
import process$1 from "node:process";
|
|
4
|
+
import "node:path";
|
|
4
5
|
var import_src = require_src();
|
|
5
6
|
function isUnicodeSupported() {
|
|
6
7
|
if (process$1.platform !== "win32") return process$1.env.TERM !== "linux";
|