skills 1.5.20 → 1.5.22

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 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 [70 more](#supported-agents).
6
+ Supports **OpenCode**, **Claude Code**, **Codex**, **Cursor**, and [72 more](#supported-agents).
7
7
  <!-- agent-list:end -->
8
8
 
9
9
  [![skills.sh](https://skills.sh/b/vercel-labs/skills)](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 |
@@ -284,6 +289,7 @@ Skills can be installed to any of these agents:
284
289
  | Kode | `kode` | `.kode/skills/` | `~/.kode/skills/` |
285
290
  | Lingma | `lingma` | `.lingma/skills/` | `~/.lingma/skills/` |
286
291
  | MCPJam | `mcpjam` | `.mcpjam/skills/` | `~/.mcpjam/skills/` |
292
+ | MiniMax Code | `minimax-code` | `.minimax/skills/` | `~/.minimax/skills/` |
287
293
  | Mistral Vibe | `mistral-vibe` | `.vibe/skills/` | `~/.vibe/skills/` |
288
294
  | Moxby | `moxby` | `.moxby/skills/` | `~/.moxby/skills/` |
289
295
  | Mux | `mux` | `.mux/skills/` | `~/.mux/skills/` |
@@ -371,12 +377,13 @@ metadata:
371
377
  ### Skill Discovery
372
378
 
373
379
  The CLI searches for skills in these locations within a repository. Each
374
- skill container directory is walked one level deep for the common flat
375
- layout (`skills/<name>/SKILL.md`) and one extra level deep for catalog
376
- layouts (`skills/<category>/<name>/SKILL.md`). A `SKILL.md` discovered at
377
- the shallower level shadows anything nested below it. Use `--full-depth`
378
- to also discover `SKILL.md` files outside these container directories
379
- (e.g. under `examples/` or `tests/`).
380
+ skill container directory is walked up to three levels deep, covering flat
381
+ layouts (`skills/<name>/SKILL.md`) and catalog layouts with one or two category
382
+ levels (`skills/<category>/<name>/SKILL.md` or
383
+ `skills/<category>/<category>/<name>/SKILL.md`). A `SKILL.md` discovered at a
384
+ shallower level shadows anything nested below it. Use `--full-depth` to also
385
+ discover `SKILL.md` files outside these container directories (e.g. under
386
+ `examples/` or `tests/`).
380
387
 
381
388
  <!-- skill-discovery:start -->
382
389
  - Root directory (if it contains `SKILL.md`)
@@ -416,6 +423,7 @@ to also discover `SKILL.md` files outside these container directories
416
423
  - `.kode/skills/`
417
424
  - `.lingma/skills/`
418
425
  - `.mcpjam/skills/`
426
+ - `.minimax/skills/`
419
427
  - `.vibe/skills/`
420
428
  - `.moxby/skills/`
421
429
  - `.mux/skills/`
@@ -457,7 +465,7 @@ If `.claude-plugin/marketplace.json` or `.claude-plugin/plugin.json` exists, ski
457
465
  }
458
466
  ```
459
467
 
460
- This enables compatibility with the [Claude Code plugin marketplace](https://code.claude.com/docs/en/plugin-marketplaces) ecosystem. Skill paths declared in a manifest are searched at their declared depth and are not subject to the depth-2 catalog walk described above.
468
+ This enables compatibility with the [Claude Code plugin marketplace](https://code.claude.com/docs/en/plugin-marketplaces) ecosystem. Skill paths declared in a manifest are searched at their declared depth and are not subject to the bounded depth-3 catalog walk described above.
461
469
 
462
470
  If no skills are found in standard locations, a recursive search is performed.
463
471
 
@@ -542,4 +550,4 @@ Telemetry is automatically disabled in CI environments.
542
550
 
543
551
  ## License
544
552
 
545
- MIT
553
+ 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";