ali-skills 0.0.5 → 0.0.6

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.
@@ -0,0 +1,508 @@
1
+ # @ali/cli-skills
2
+
3
+ The CLI for the open agent skills ecosystem.
4
+
5
+ <!-- agent-list:start -->
6
+
7
+ Supports **OpenCode**, **Claude Code**, **Codex**, **Cursor**, and [38 more](#available-agents).
8
+
9
+ <!-- agent-list:end -->
10
+
11
+ 当前仓库从社区 https://github.com/vercel-labs/skills.git 1.4.5版本fork,做了阿里内网skills安装支持
12
+
13
+ ## 和社区的差异
14
+
15
+ - add 命令时,如果是 owner/repo 的参数,默认走code.alibaba-inc.com内网的git托管服务
16
+ - 私有仓库的处理方式:无论是社区还是内网的git服务,如果仓库是私有仓库,会将文件存储到oss,此时skills贡献者要执行`publish`命令完成组件的注册和代码推送
17
+ - 所有操作日志增加了工号/花名/邮箱
18
+
19
+ ## Install a Skill
20
+
21
+ ```bash
22
+ npx @ali/cli-skills add vercel-labs/agent-skills
23
+ ```
24
+
25
+ ### Source Formats
26
+
27
+ ```bash
28
+ # GitHub shorthand (owner/repo)
29
+ npx @ali/cli-skills add vercel-labs/agent-skills
30
+
31
+ # Full GitHub URL
32
+ npx @ali/cli-skills add https://github.com/vercel-labs/agent-skills
33
+
34
+ # Direct path to a skill in a repo
35
+ npx @ali/cli-skills add https://github.com/vercel-labs/agent-skills/tree/main/skills/web-design-guidelines
36
+
37
+ # GitLab URL
38
+ npx @ali/cli-skills add https://gitlab.com/org/repo
39
+
40
+ # Any git URL
41
+ npx @ali/cli-skills add git@github.com:vercel-labs/agent-skills.git
42
+
43
+ # Local path
44
+ npx @ali/cli-skills add ./my-local-skills
45
+ ```
46
+
47
+ ### Options
48
+
49
+ | Option | Description |
50
+ | ------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------- |
51
+ | `-g, --global` | Install to user directory instead of project |
52
+ | `-a, --agent <agents...>` | <!-- agent-names:start -->Target specific agents (e.g., `claude-code`, `codex`). See [Available Agents](#available-agents)<!-- agent-names:end --> |
53
+ | `-s, --skill <skills...>` | Install specific skills by name (use `'*'` for all skills) |
54
+ | `-b, --branch <branch>` | Specify the branch (or ref) to install from. Useful for branches with slashes (e.g., `feat/add-skills`) |
55
+ | `-l, --list` | List available skills without installing |
56
+ | `--copy` | Copy files instead of symlinking to agent directories |
57
+ | `-y, --yes` | Skip all confirmation prompts |
58
+ | `--all` | Install all skills to all agents without prompts |
59
+
60
+ ### Examples
61
+
62
+ ```bash
63
+ # List skills in a repository
64
+ npx @ali/cli-skills add vercel-labs/agent-skills --list
65
+
66
+ # Install specific skills
67
+ npx @ali/cli-skills add vercel-labs/agent-skills --skill frontend-design --skill skill-creator
68
+
69
+ # Install a skill with spaces in the name (must be quoted)
70
+ npx @ali/cli-skills add owner/repo --skill "Convex Best Practices"
71
+
72
+ # Install to specific agents
73
+ npx @ali/cli-skills add vercel-labs/agent-skills -a claude-code -a opencode
74
+
75
+ # Non-interactive installation (CI/CD friendly)
76
+ npx @ali/cli-skills add vercel-labs/agent-skills --skill frontend-design -g -a claude-code -y
77
+
78
+ # Install all skills from a repo to all agents
79
+ npx @ali/cli-skills add vercel-labs/agent-skills --all
80
+
81
+ # Install all skills to specific agents
82
+ npx @ali/cli-skills add vercel-labs/agent-skills --skill '*' -a claude-code
83
+
84
+ # Install specific skills to all agents
85
+ npx @ali/cli-skills add vercel-labs/agent-skills --agent '*' --skill frontend-design
86
+
87
+ # Install from a specific branch
88
+ npx @ali/cli-skills add owner/repo --branch main
89
+
90
+ # Install from a branch with slashes in its name
91
+ npx @ali/cli-skills add owner/repo -b feat/add-skills
92
+ ```
93
+
94
+ ### Installation Scope
95
+
96
+ | Scope | Flag | Location | Use Case |
97
+ | ----------- | --------- | ------------------- | --------------------------------------------- |
98
+ | **Project** | (default) | `./<agent>/skills/` | Committed with your project, shared with team |
99
+ | **Global** | `-g` | `~/<agent>/skills/` | Available across all projects |
100
+
101
+ ### Installation Methods
102
+
103
+ When installing interactively, you can choose:
104
+
105
+ | Method | Description |
106
+ | ------------------------- | ------------------------------------------------------------------------------------------- |
107
+ | **Symlink** (Recommended) | Creates symlinks from each agent to a canonical copy. Single source of truth, easy updates. |
108
+ | **Copy** | Creates independent copies for each agent. Use when symlinks aren't supported. |
109
+
110
+ ## Other Commands
111
+
112
+ | Command | Description |
113
+ | ------------------------------------- | ---------------------------------------------- |
114
+ | `npx @ali/cli-skills list` | List installed skills (alias: `ls`) |
115
+ | `npx @ali/cli-skills find [query]` | Search for skills interactively or by keyword |
116
+ | `npx @ali/cli-skills remove [skills]` | Remove installed skills from agents |
117
+ | `npx @ali/cli-skills check` | Check for available skill updates |
118
+ | `npx @ali/cli-skills update` | Update all installed skills to latest versions |
119
+ | `npx @ali/cli-skills init [name]` | Create a new SKILL.md template |
120
+
121
+ ### `cli-skills list`
122
+
123
+ List all installed skills. Similar to `npm ls`.
124
+
125
+ ```bash
126
+ # List all installed skills (project and global)
127
+ npx @ali/cli-skills list
128
+
129
+ # List only global skills
130
+ npx @ali/cli-skills ls -g
131
+
132
+ # Filter by specific agents
133
+ npx @ali/cli-skills ls -a claude-code -a cursor
134
+ ```
135
+
136
+ ### `cli-skills find`
137
+
138
+ Search for skills interactively or by keyword.
139
+
140
+ ```bash
141
+ # Interactive search (fzf-style)
142
+ npx @ali/cli-skills find
143
+
144
+ # Search by keyword
145
+ npx @ali/cli-skills find typescript
146
+ ```
147
+
148
+ ### `cli-skills check` / `cli-skills update`
149
+
150
+ ```bash
151
+ # Check if any installed skills have updates
152
+ npx @ali/cli-skills check
153
+
154
+ # Update all skills to latest versions
155
+ npx @ali/cli-skills update
156
+ ```
157
+
158
+ ### `cli-skills init`
159
+
160
+ ```bash
161
+ # Create SKILL.md in current directory
162
+ npx @ali/cli-skills init
163
+
164
+ # Create a new skill in a subdirectory
165
+ npx @ali/cli-skills init my-skill
166
+ ```
167
+
168
+ ### `cli-skills remove`
169
+
170
+ Remove installed skills from agents.
171
+
172
+ ```bash
173
+ # Remove interactively (select from installed skills)
174
+ npx @ali/cli-skills remove
175
+
176
+ # Remove specific skill by name
177
+ npx @ali/cli-skills remove web-design-guidelines
178
+
179
+ # Remove multiple skills
180
+ npx @ali/cli-skills remove frontend-design web-design-guidelines
181
+
182
+ # Remove from global scope
183
+ npx @ali/cli-skills remove --global web-design-guidelines
184
+
185
+ # Remove from specific agents only
186
+ npx @ali/cli-skills remove --agent claude-code cursor my-skill
187
+
188
+ # Remove all installed skills without confirmation
189
+ npx @ali/cli-skills remove --all
190
+
191
+ # Remove all skills from a specific agent
192
+ npx @ali/cli-skills remove --skill '*' -a cursor
193
+
194
+ # Remove a specific skill from all agents
195
+ npx @ali/cli-skills remove my-skill --agent '*'
196
+
197
+ # Use 'rm' alias
198
+ npx @ali/cli-skills rm my-skill
199
+ ```
200
+
201
+ | Option | Description |
202
+ | -------------- | ------------------------------------------------ |
203
+ | `-g, --global` | Remove from global scope (~/) instead of project |
204
+ | `-a, --agent` | Remove from specific agents (use `'*'` for all) |
205
+ | `-s, --skill` | Specify skills to remove (use `'*'` for all) |
206
+ | `-y, --yes` | Skip confirmation prompts |
207
+ | `--all` | Shorthand for `--skill '*' --agent '*' -y` |
208
+
209
+ ## What are Agent Skills?
210
+
211
+ Agent skills are reusable instruction sets that extend your coding agent's capabilities. They're defined in `SKILL.md`
212
+ files with YAML frontmatter containing a `name` and `description`.
213
+
214
+ Skills let agents perform specialized tasks like:
215
+
216
+ - Generating release notes from git history
217
+ - Creating PRs following your team's conventions
218
+ - Integrating with external tools (Linear, Notion, etc.)
219
+
220
+ Discover skills at **[skills.sh](https://skills.sh)**
221
+
222
+ ## Supported Agents
223
+
224
+ Skills can be installed to any of these agents:
225
+
226
+ <!-- supported-agents:start -->
227
+
228
+ | Agent | `--agent` | Project Path | Global Path |
229
+ | ------------------------------------- | ---------------------------------------- | ---------------------- | ------------------------------- |
230
+ | Amp, Kimi Code CLI, Replit, Universal | `amp`, `kimi-cli`, `replit`, `universal` | `.agents/skills/` | `~/.config/agents/skills/` |
231
+ | Antigravity | `antigravity` | `.agent/skills/` | `~/.gemini/antigravity/skills/` |
232
+ | Augment | `augment` | `.augment/skills/` | `~/.augment/skills/` |
233
+ | Claude Code | `claude-code` | `.claude/skills/` | `~/.claude/skills/` |
234
+ | OpenClaw | `openclaw` | `skills/` | `~/.openclaw/skills/` |
235
+ | Cline, Warp | `cline`, `warp` | `.agents/skills/` | `~/.agents/skills/` |
236
+ | CodeBuddy | `codebuddy` | `.codebuddy/skills/` | `~/.codebuddy/skills/` |
237
+ | Codex | `codex` | `.agents/skills/` | `~/.codex/skills/` |
238
+ | Command Code | `command-code` | `.commandcode/skills/` | `~/.commandcode/skills/` |
239
+ | Continue | `continue` | `.continue/skills/` | `~/.continue/skills/` |
240
+ | Cortex Code | `cortex` | `.cortex/skills/` | `~/.snowflake/cortex/skills/` |
241
+ | Crush | `crush` | `.crush/skills/` | `~/.config/crush/skills/` |
242
+ | Cursor | `cursor` | `.agents/skills/` | `~/.cursor/skills/` |
243
+ | Droid | `droid` | `.factory/skills/` | `~/.factory/skills/` |
244
+ | Gemini CLI | `gemini-cli` | `.agents/skills/` | `~/.gemini/skills/` |
245
+ | GitHub Copilot | `github-copilot` | `.agents/skills/` | `~/.copilot/skills/` |
246
+ | Goose | `goose` | `.goose/skills/` | `~/.config/goose/skills/` |
247
+ | Junie | `junie` | `.junie/skills/` | `~/.junie/skills/` |
248
+ | iFlow CLI | `iflow-cli` | `.iflow/skills/` | `~/.iflow/skills/` |
249
+ | Kilo Code | `kilo` | `.kilocode/skills/` | `~/.kilocode/skills/` |
250
+ | Kiro CLI | `kiro-cli` | `.kiro/skills/` | `~/.kiro/skills/` |
251
+ | Kode | `kode` | `.kode/skills/` | `~/.kode/skills/` |
252
+ | MCPJam | `mcpjam` | `.mcpjam/skills/` | `~/.mcpjam/skills/` |
253
+ | Mistral Vibe | `mistral-vibe` | `.vibe/skills/` | `~/.vibe/skills/` |
254
+ | Mux | `mux` | `.mux/skills/` | `~/.mux/skills/` |
255
+ | OpenCode | `opencode` | `.agents/skills/` | `~/.config/opencode/skills/` |
256
+ | OpenHands | `openhands` | `.openhands/skills/` | `~/.openhands/skills/` |
257
+ | Pi | `pi` | `.pi/skills/` | `~/.pi/agent/skills/` |
258
+ | Qoder | `qoder` | `.qoder/skills/` | `~/.qoder/skills/` |
259
+ | Qwen Code | `qwen-code` | `.qwen/skills/` | `~/.qwen/skills/` |
260
+ | Roo Code | `roo` | `.roo/skills/` | `~/.roo/skills/` |
261
+ | Trae | `trae` | `.trae/skills/` | `~/.trae/skills/` |
262
+ | Trae CN | `trae-cn` | `.trae/skills/` | `~/.trae-cn/skills/` |
263
+ | Windsurf | `windsurf` | `.windsurf/skills/` | `~/.codeium/windsurf/skills/` |
264
+ | Zencoder | `zencoder` | `.zencoder/skills/` | `~/.zencoder/skills/` |
265
+ | Neovate | `neovate` | `.neovate/skills/` | `~/.neovate/skills/` |
266
+ | Pochi | `pochi` | `.pochi/skills/` | `~/.pochi/skills/` |
267
+ | AdaL | `adal` | `.adal/skills/` | `~/.adal/skills/` |
268
+
269
+ <!-- supported-agents:end -->
270
+
271
+ > [!NOTE]
272
+ > **Kiro CLI users:** After installing skills, manually add them to your custom agent's `resources` in
273
+ > `.kiro/agents/<agent>.json`:
274
+ >
275
+ > ```json
276
+ > {
277
+ > "resources": ["skill://.kiro/skills/**/SKILL.md"]
278
+ > }
279
+ > ```
280
+
281
+ The CLI automatically detects which coding agents you have installed. If none are detected, you'll be prompted to select
282
+ which agents to install to.
283
+
284
+ ## Creating Skills
285
+
286
+ Skills are directories containing a `SKILL.md` file with YAML frontmatter:
287
+
288
+ ```markdown
289
+ ---
290
+ name: my-skill
291
+ description: What this skill does and when to use it
292
+ ---
293
+
294
+ # My Skill
295
+
296
+ Instructions for the agent to follow when this skill is activated.
297
+
298
+ ## When to Use
299
+
300
+ Describe the scenarios where this skill should be used.
301
+
302
+ ## Steps
303
+
304
+ 1. First, do this
305
+ 2. Then, do that
306
+ ```
307
+
308
+ ### Required Fields
309
+
310
+ - `name`: Unique identifier (lowercase, hyphens allowed)
311
+ - `description`: Brief explanation of what the skill does
312
+
313
+ ### Optional Fields
314
+
315
+ - `metadata.internal`: Set to `true` to hide the skill from normal discovery. Internal skills are only visible and
316
+ installable when `INSTALL_INTERNAL_SKILLS=1` is set. Useful for work-in-progress skills or skills meant only for
317
+ internal tooling.
318
+
319
+ ```markdown
320
+ ---
321
+ name: my-internal-skill
322
+ description: An internal skill not shown by default
323
+ metadata:
324
+ internal: true
325
+ ---
326
+ ```
327
+
328
+ ### Skill Discovery
329
+
330
+ The CLI searches for skills in these locations within a repository:
331
+
332
+ <!-- skill-discovery:start -->
333
+
334
+ - Root directory (if it contains `SKILL.md`)
335
+ - `skills/`
336
+ - `skills/.curated/`
337
+ - `skills/.experimental/`
338
+ - `skills/.system/`
339
+ - `.agents/skills/`
340
+ - `.agent/skills/`
341
+ - `.augment/skills/`
342
+ - `.claude/skills/`
343
+ - `./skills/`
344
+ - `.codebuddy/skills/`
345
+ - `.commandcode/skills/`
346
+ - `.continue/skills/`
347
+ - `.cortex/skills/`
348
+ - `.crush/skills/`
349
+ - `.factory/skills/`
350
+ - `.goose/skills/`
351
+ - `.junie/skills/`
352
+ - `.iflow/skills/`
353
+ - `.kilocode/skills/`
354
+ - `.kiro/skills/`
355
+ - `.kode/skills/`
356
+ - `.mcpjam/skills/`
357
+ - `.vibe/skills/`
358
+ - `.mux/skills/`
359
+ - `.openhands/skills/`
360
+ - `.pi/skills/`
361
+ - `.qoder/skills/`
362
+ - `.qwen/skills/`
363
+ - `.roo/skills/`
364
+ - `.trae/skills/`
365
+ - `.windsurf/skills/`
366
+ - `.zencoder/skills/`
367
+ - `.neovate/skills/`
368
+ - `.pochi/skills/`
369
+ - `.adal/skills/`
370
+ <!-- skill-discovery:end -->
371
+
372
+ ### Plugin Manifest Discovery
373
+
374
+ If `.claude-plugin/marketplace.json` or `.claude-plugin/plugin.json` exists, skills declared in those files are also discovered:
375
+
376
+ ```json
377
+ // .claude-plugin/marketplace.json
378
+ {
379
+ "metadata": { "pluginRoot": "./plugins" },
380
+ "plugins": [
381
+ {
382
+ "name": "my-plugin",
383
+ "source": "my-plugin",
384
+ "skills": ["./skills/review", "./skills/test"]
385
+ }
386
+ ]
387
+ }
388
+ ```
389
+
390
+ This enables compatibility with the [Claude Code plugin marketplace](https://code.claude.com/docs/en/plugin-marketplaces) ecosystem.
391
+
392
+ If no skills are found in standard locations, a recursive search is performed.
393
+
394
+ ## Compatibility
395
+
396
+ Skills are generally compatible across agents since they follow a
397
+ shared [Agent Skills specification](https://agentskills.io). However, some features may be agent-specific:
398
+
399
+ | Feature | OpenCode | OpenHands | Claude Code | Cline | CodeBuddy | Codex | Command Code | Kiro CLI | Cursor | Antigravity | Roo Code | Github Copilot | Amp | OpenClaw | Neovate | Pi | Qoder | Zencoder |
400
+ | --------------- | -------- | --------- | ----------- | ----- | --------- | ----- | ------------ | -------- | ------ | ----------- | -------- | -------------- | --- | -------- | ------- | --- | ----- | -------- |
401
+ | Basic skills | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
402
+ | `allowed-tools` | Yes | Yes | Yes | Yes | Yes | Yes | Yes | No | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | No |
403
+ | `context: fork` | No | No | Yes | No | No | No | No | No | No | No | No | No | No | No | No | No | No | No |
404
+ | Hooks | No | No | Yes | Yes | No | No | No | No | No | No | No | No | No | No | No | No | No | No |
405
+
406
+ ## Troubleshooting
407
+
408
+ ### "No skills found"
409
+
410
+ Ensure the repository contains valid `SKILL.md` files with both `name` and `description` in the frontmatter.
411
+
412
+ ### Skill not loading in agent
413
+
414
+ - Verify the skill was installed to the correct path
415
+ - Check the agent's documentation for skill loading requirements
416
+ - Ensure the `SKILL.md` frontmatter is valid YAML
417
+
418
+ ### Permission errors
419
+
420
+ Ensure you have write access to the target directory.
421
+
422
+ ## Environment Variables
423
+
424
+ | Variable | Description |
425
+ | ------------------------- | -------------------------------------------------------------------------- |
426
+ | `INSTALL_INTERNAL_SKILLS` | Set to `1` or `true` to show and install skills marked as `internal: true` |
427
+ | `DISABLE_TELEMETRY` | Set to disable anonymous usage telemetry |
428
+ | `DO_NOT_TRACK` | Alternative way to disable telemetry |
429
+
430
+ ```bash
431
+ # Install internal skills
432
+ INSTALL_INTERNAL_SKILLS=1 npx @ali/cli-skills add vercel-labs/agent-skills --list
433
+ ```
434
+
435
+ ## Telemetry
436
+
437
+ This CLI collects anonymous usage data to help improve the tool. No personal information is collected.
438
+
439
+ Telemetry is automatically disabled in CI environments.
440
+
441
+ ## 本地调试
442
+
443
+ ### 方式一:仓库源码调试(推荐)
444
+
445
+ 使用 `pnpm run dev` 启动,脚本中已通过 `--env-file` 指定 `.env` 文件,会自动注入其中的环境变量:
446
+
447
+ ```bash
448
+ pnpm run dev add vercel-labs/agent-skills # add 命令安装 skill
449
+ pnpm run dev list # list 命令列出 skill
450
+ ```
451
+
452
+ > **注意**:直接 `node src/cli.ts` 的方式需要 Node.js >= 16v22(原生支持运行 TypeScript 文件)
453
+
454
+ ### 方式二:本机命令调试(link -g)
455
+
456
+ 将本仓库 link 到全局,之后可直接使用 `cli-skills` 命令:
457
+
458
+ ```bash
459
+ # 在 cli-skills 目录下执行
460
+ pnpm link -g
461
+
462
+ # 然后直接调用命令
463
+ cli-skills add vercel-labs/agent-skills
464
+ cli-skills list
465
+ ```
466
+
467
+ > 注意:通过 link 方式运行时不会自动加载 `.env`,如需注入环境变量,可在命令前手动指定:
468
+ >
469
+ > ```bash
470
+ > SKILLS_API_URL=http://x.x.x.x:3000/api/skills cli-skills add vercel-labs/agent-skills
471
+ > ```
472
+
473
+ ---
474
+
475
+ ## Related Links
476
+
477
+ - [Agent Skills Specification](https://agentskills.io)
478
+ - [Skills Directory](https://skills.sh)
479
+ - [Amp Skills Documentation](https://ampcode.com/manual#agent-skills)
480
+ - [Antigravity Skills Documentation](https://antigravity.google/docs/skills)
481
+ - [Factory AI / Droid Skills Documentation](https://docs.factory.ai/cli/configuration/skills)
482
+ - [Claude Code Skills Documentation](https://code.claude.com/docs/en/skills)
483
+ - [OpenClaw Skills Documentation](https://docs.openclaw.ai/tools/skills)
484
+ - [Cline Skills Documentation](https://docs.cline.bot/features/skills)
485
+ - [CodeBuddy Skills Documentation](https://www.codebuddy.ai/docs/ide/Features/Skills)
486
+ - [Codex Skills Documentation](https://developers.openai.com/codex/skills)
487
+ - [Command Code Skills Documentation](https://commandcode.ai/docs/skills)
488
+ - [Crush Skills Documentation](https://github.com/charmbracelet/crush?tab=readme-ov-file#agent-skills)
489
+ - [Cursor Skills Documentation](https://cursor.com/docs/context/skills)
490
+ - [Gemini CLI Skills Documentation](https://geminicli.com/docs/cli/skills/)
491
+ - [GitHub Copilot Agent Skills](https://docs.github.com/en/copilot/concepts/agents/about-agent-skills)
492
+ - [iFlow CLI Skills Documentation](https://platform.iflow.cn/en/cli/examples/skill)
493
+ - [Kimi Code CLI Skills Documentation](https://moonshotai.github.io/kimi-cli/en/customization/skills.html)
494
+ - [Kiro CLI Skills Documentation](https://kiro.dev/docs/cli/custom-agents/configuration-reference/#skill-resources)
495
+ - [Kode Skills Documentation](https://github.com/shareAI-lab/kode/blob/main/docs/skills.md)
496
+ - [OpenCode Skills Documentation](https://opencode.ai/docs/skills)
497
+ - [Qwen Code Skills Documentation](https://qwenlm.github.io/qwen-code-docs/en/users/features/skills/)
498
+ - [OpenHands Skills Documentation](https://docs.openhands.ai/modules/usage/how-to/using-skills)
499
+ - [Pi Skills Documentation](https://github.com/badlogic/pi-mono/blob/main/packages/coding-agent/docs/skills.md)
500
+ - [Qoder Skills Documentation](https://docs.qoder.com/cli/Skills)
501
+ - [Replit Skills Documentation](https://docs.replit.com/replitai/skills)
502
+ - [Roo Code Skills Documentation](https://docs.roocode.com/features/skills)
503
+ - [Trae Skills Documentation](https://docs.trae.ai/ide/skills)
504
+ - [Vercel Agent Skills Repository](https://github.com/vercel-labs/agent-skills)
505
+
506
+ ## License
507
+
508
+ MIT
@@ -0,0 +1,125 @@
1
+ /*!----------------- Skills CLI ThirdPartyNotices -------------------------------------------------------
2
+
3
+ The Skills CLI incorporates third party material from the projects listed below.
4
+ The original copyright notice and the license under which this material was received
5
+ are set forth below. These licenses and notices are provided for informational purposes only.
6
+
7
+ ---------------------------------------------
8
+ Third Party Code Components
9
+ --------------------------------------------
10
+
11
+ ================================================================================
12
+ Package: @clack/prompts@0.11.0
13
+ License: MIT
14
+ Repository: https://github.com/bombshell-dev/clack
15
+ --------------------------------------------------------------------------------
16
+
17
+ MIT License
18
+
19
+ Copyright (c) Nate Moore
20
+
21
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
22
+
23
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
24
+
25
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
26
+
27
+
28
+ ================================================================================
29
+ Package: gray-matter@4.0.3
30
+ License: MIT
31
+ Repository: https://github.com/jonschlinkert/gray-matter
32
+ --------------------------------------------------------------------------------
33
+
34
+ The MIT License (MIT)
35
+
36
+ Copyright (c) 2014-2018, Jon Schlinkert.
37
+
38
+ Permission is hereby granted, free of charge, to any person obtaining a copy
39
+ of this software and associated documentation files (the "Software"), to deal
40
+ in the Software without restriction, including without limitation the rights
41
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
42
+ copies of the Software, and to permit persons to whom the Software is
43
+ furnished to do so, subject to the following conditions:
44
+
45
+ The above copyright notice and this permission notice shall be included in
46
+ all copies or substantial portions of the Software.
47
+
48
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
49
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
50
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
51
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
52
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
53
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
54
+ THE SOFTWARE.
55
+
56
+
57
+ ================================================================================
58
+ Package: picocolors@1.1.1
59
+ License: ISC
60
+ Repository: https://github.com/alexeyraspopov/picocolors
61
+ --------------------------------------------------------------------------------
62
+
63
+ ISC License
64
+
65
+ Copyright (c) 2021-2024 Oleksii Raspopov, Kostiantyn Denysov, Anton Verinov
66
+
67
+ Permission to use, copy, modify, and/or distribute this software for any
68
+ purpose with or without fee is hereby granted, provided that the above
69
+ copyright notice and this permission notice appear in all copies.
70
+
71
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
72
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
73
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
74
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
75
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
76
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
77
+ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
78
+
79
+
80
+ ================================================================================
81
+ Package: simple-git@3.30.0
82
+ License: MIT
83
+ Repository: https://github.com/steveukx/git-js
84
+ --------------------------------------------------------------------------------
85
+
86
+ MIT License
87
+
88
+ Permission is hereby granted, free of charge, to any person obtaining a copy
89
+ of this software and associated documentation files (the "Software"), to deal
90
+ in the Software without restriction, including without limitation the rights
91
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
92
+ copies of the Software, and to permit persons to whom the Software is
93
+ furnished to do so, subject to the following conditions:
94
+
95
+ The above copyright notice and this permission notice shall be included in all
96
+ copies or substantial portions of the Software.
97
+
98
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
99
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
100
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
101
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
102
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
103
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
104
+ SOFTWARE.
105
+
106
+
107
+ ================================================================================
108
+ Package: xdg-basedir@5.1.0
109
+ License: MIT
110
+ Repository: https://github.com/sindresorhus/xdg-basedir
111
+ --------------------------------------------------------------------------------
112
+
113
+ MIT License
114
+
115
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
116
+
117
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
118
+
119
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
120
+
121
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
122
+
123
+
124
+ ================================================================================
125
+ */
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env node
2
+
3
+ import module from 'node:module';
4
+
5
+ // https://nodejs.org/api/module.html#module-compile-cache
6
+ if (module.enableCompileCache && !process.env.NODE_DISABLE_COMPILE_CACHE) {
7
+ try {
8
+ module.enableCompileCache();
9
+ } catch {
10
+ // Ignore errors
11
+ }
12
+ }
13
+
14
+ await import('../dist/cli.mjs');