@alexsun-top/skills 1.4.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 ADDED
@@ -0,0 +1,464 @@
1
+ # skills
2
+
3
+ The CLI for the open agent skills ecosystem.
4
+
5
+ <!-- agent-list:start -->
6
+ Supports **OpenCode**, **Claude Code**, **Codex**, **Cursor**, and [37 more](#available-agents).
7
+ <!-- agent-list:end -->
8
+
9
+ ## Install a Skill
10
+
11
+ ```bash
12
+ npx skills add vercel-labs/agent-skills
13
+ ```
14
+
15
+ ### Source Formats
16
+
17
+ ```bash
18
+ # GitHub shorthand (owner/repo)
19
+ npx skills add vercel-labs/agent-skills
20
+
21
+ # Full GitHub URL
22
+ npx skills add https://github.com/vercel-labs/agent-skills
23
+
24
+ # Direct path to a skill in a repo
25
+ npx skills add https://github.com/vercel-labs/agent-skills/tree/main/skills/web-design-guidelines
26
+
27
+ # GitLab URL
28
+ npx skills add https://gitlab.com/org/repo
29
+
30
+ # Any git URL
31
+ npx skills add git@github.com:vercel-labs/agent-skills.git
32
+
33
+ # Any HTTPS git URL with explicit ref
34
+ npx skills add https://git.example.com/team/skill-pack.git@release-2026
35
+
36
+ # GitHub URL with explicit tag/branch/commit ref
37
+ npx skills add https://github.com/user/skills.git@v1.2.3
38
+
39
+ # Any SSH git URL with explicit ref
40
+ npx skills add git@git.example.com:team/skill-pack.git@main
41
+
42
+ # Local path
43
+ npx skills add ./my-local-skills
44
+ ```
45
+
46
+ ### Options
47
+
48
+ | Option | Description |
49
+ | ------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------- |
50
+ | `-g, --global` | Install to user directory instead of project |
51
+ | `-a, --agent <agents...>` | <!-- agent-names:start -->Target specific agents (e.g., `claude-code`, `codex`). See [Available Agents](#available-agents)<!-- agent-names:end --> |
52
+ | `-s, --skill <skills...>` | Install specific skills by name (use `'*'` for all skills) |
53
+ | `-l, --list` | List available skills without installing |
54
+ | `--copy` | Copy files instead of symlinking to agent directories |
55
+ | `-y, --yes` | Skip all confirmation prompts |
56
+ | `--all` | Install all skills to all agents without prompts |
57
+
58
+ ### Examples
59
+
60
+ ```bash
61
+ # List skills in a repository
62
+ npx skills add vercel-labs/agent-skills --list
63
+
64
+ # Install specific skills
65
+ npx skills add vercel-labs/agent-skills --skill frontend-design --skill skill-creator
66
+
67
+ # Install a skill with spaces in the name (must be quoted)
68
+ npx skills add owner/repo --skill "Convex Best Practices"
69
+
70
+ # Install to specific agents
71
+ npx skills add vercel-labs/agent-skills -a claude-code -a opencode
72
+
73
+ # Non-interactive installation (CI/CD friendly)
74
+ npx skills add vercel-labs/agent-skills --skill frontend-design -g -a claude-code -y
75
+
76
+ # Install all skills from a repo to all agents
77
+ npx skills add vercel-labs/agent-skills --all
78
+
79
+ # Install all skills to specific agents
80
+ npx skills add vercel-labs/agent-skills --skill '*' -a claude-code
81
+
82
+ # Install specific skills to all agents
83
+ npx skills add vercel-labs/agent-skills --agent '*' --skill frontend-design
84
+ ```
85
+
86
+ ### Installation Scope
87
+
88
+ | Scope | Flag | Location | Use Case |
89
+ | ----------- | --------- | ------------------- | --------------------------------------------- |
90
+ | **Project** | (default) | `./<agent>/skills/` | Committed with your project, shared with team |
91
+ | **Global** | `-g` | `~/<agent>/skills/` | Available across all projects |
92
+
93
+ ### Installation Methods
94
+
95
+ When installing interactively, you can choose:
96
+
97
+ | Method | Description |
98
+ | ------------------------- | ------------------------------------------------------------------------------------------- |
99
+ | **Symlink** (Recommended) | Creates symlinks from each agent to a canonical copy. Single source of truth, easy updates. |
100
+ | **Copy** | Creates independent copies for each agent. Use when symlinks aren't supported. |
101
+
102
+ ## Other Commands
103
+
104
+ | Command | Description |
105
+ | ---------------------------- | ---------------------------------------------- |
106
+ | `npx skills list` | List installed skills (alias: `ls`) |
107
+ | `npx skills find [query]` | Search for skills interactively or by keyword |
108
+ | `npx skills remove [skills]` | Remove installed skills from agents |
109
+ | `npx skills check` | Check for available skill updates |
110
+ | `npx skills update` | Update all installed skills to latest versions |
111
+ | `npx skills init [name]` | Create a new SKILL.md template |
112
+
113
+ ### `skills list`
114
+
115
+ List all installed skills. Similar to `npm ls`.
116
+
117
+ ```bash
118
+ # List all installed skills (project and global)
119
+ npx skills list
120
+
121
+ # List only global skills
122
+ npx skills ls -g
123
+
124
+ # Filter by specific agents
125
+ npx skills ls -a claude-code -a cursor
126
+ ```
127
+
128
+ ### `skills find`
129
+
130
+ Search for skills interactively or by keyword.
131
+
132
+ ```bash
133
+ # Interactive search (fzf-style)
134
+ npx skills find
135
+
136
+ # Search by keyword
137
+ npx skills find typescript
138
+ ```
139
+
140
+ ### `skills check` / `skills update`
141
+
142
+ ```bash
143
+ # Check if any installed skills have updates
144
+ npx skills check
145
+
146
+ # Update all skills to latest versions
147
+ npx skills update
148
+ ```
149
+
150
+ ### `skills init`
151
+
152
+ ```bash
153
+ # Create SKILL.md in current directory
154
+ npx skills init
155
+
156
+ # Create a new skill in a subdirectory
157
+ npx skills init my-skill
158
+ ```
159
+
160
+ ### `skills remove`
161
+
162
+ Remove installed skills from agents.
163
+
164
+ ```bash
165
+ # Remove interactively (select from installed skills)
166
+ npx skills remove
167
+
168
+ # Remove specific skill by name
169
+ npx skills remove web-design-guidelines
170
+
171
+ # Remove multiple skills
172
+ npx skills remove frontend-design web-design-guidelines
173
+
174
+ # Remove from global scope
175
+ npx skills remove --global web-design-guidelines
176
+
177
+ # Remove from specific agents only
178
+ npx skills remove --agent claude-code cursor my-skill
179
+
180
+ # Remove all installed skills without confirmation
181
+ npx skills remove --all
182
+
183
+ # Remove all skills from a specific agent
184
+ npx skills remove --skill '*' -a cursor
185
+
186
+ # Remove a specific skill from all agents
187
+ npx skills remove my-skill --agent '*'
188
+
189
+ # Use 'rm' alias
190
+ npx skills rm my-skill
191
+ ```
192
+
193
+ | Option | Description |
194
+ | -------------- | ------------------------------------------------ |
195
+ | `-g, --global` | Remove from global scope (~/) instead of project |
196
+ | `-a, --agent` | Remove from specific agents (use `'*'` for all) |
197
+ | `-s, --skill` | Specify skills to remove (use `'*'` for all) |
198
+ | `-y, --yes` | Skip confirmation prompts |
199
+ | `--all` | Shorthand for `--skill '*' --agent '*' -y` |
200
+
201
+ ## What are Agent Skills?
202
+
203
+ Agent skills are reusable instruction sets that extend your coding agent's capabilities. They're defined in `SKILL.md`
204
+ files with YAML frontmatter containing a `name` and `description`.
205
+
206
+ Skills let agents perform specialized tasks like:
207
+
208
+ - Generating release notes from git history
209
+ - Creating PRs following your team's conventions
210
+ - Integrating with external tools (Linear, Notion, etc.)
211
+
212
+ Discover skills at **[skills.sh](https://skills.sh)**
213
+
214
+ ## Supported Agents
215
+
216
+ Skills can be installed to any of these agents:
217
+
218
+ <!-- supported-agents:start -->
219
+ | Agent | `--agent` | Project Path | Global Path |
220
+ |-------|-----------|--------------|-------------|
221
+ | Amp, Kimi Code CLI, Replit, Universal | `amp`, `kimi-cli`, `replit`, `universal` | `.agents/skills/` | `~/.config/agents/skills/` |
222
+ | Antigravity | `antigravity` | `.agent/skills/` | `~/.gemini/antigravity/skills/` |
223
+ | Augment | `augment` | `.augment/skills/` | `~/.augment/skills/` |
224
+ | Claude Code | `claude-code` | `.claude/skills/` | `~/.claude/skills/` |
225
+ | OpenClaw | `openclaw` | `skills/` | `~/.openclaw/skills/` |
226
+ | Cline | `cline` | `.cline/skills/` | `~/.cline/skills/` |
227
+ | CodeBuddy | `codebuddy` | `.codebuddy/skills/` | `~/.codebuddy/skills/` |
228
+ | Codex | `codex` | `.agents/skills/` | `~/.codex/skills/` |
229
+ | Command Code | `command-code` | `.commandcode/skills/` | `~/.commandcode/skills/` |
230
+ | Continue | `continue` | `.continue/skills/` | `~/.continue/skills/` |
231
+ | Cortex Code | `cortex` | `.cortex/skills/` | `~/.snowflake/cortex/skills/` |
232
+ | Crush | `crush` | `.crush/skills/` | `~/.config/crush/skills/` |
233
+ | Cursor | `cursor` | `.agents/skills/` | `~/.cursor/skills/` |
234
+ | Droid | `droid` | `.factory/skills/` | `~/.factory/skills/` |
235
+ | Gemini CLI | `gemini-cli` | `.agents/skills/` | `~/.gemini/skills/` |
236
+ | GitHub Copilot | `github-copilot` | `.agents/skills/` | `~/.copilot/skills/` |
237
+ | Goose | `goose` | `.goose/skills/` | `~/.config/goose/skills/` |
238
+ | Junie | `junie` | `.junie/skills/` | `~/.junie/skills/` |
239
+ | iFlow CLI | `iflow-cli` | `.iflow/skills/` | `~/.iflow/skills/` |
240
+ | Kilo Code | `kilo` | `.kilocode/skills/` | `~/.kilocode/skills/` |
241
+ | Kiro CLI | `kiro-cli` | `.kiro/skills/` | `~/.kiro/skills/` |
242
+ | Kode | `kode` | `.kode/skills/` | `~/.kode/skills/` |
243
+ | MCPJam | `mcpjam` | `.mcpjam/skills/` | `~/.mcpjam/skills/` |
244
+ | Mistral Vibe | `mistral-vibe` | `.vibe/skills/` | `~/.vibe/skills/` |
245
+ | Mux | `mux` | `.mux/skills/` | `~/.mux/skills/` |
246
+ | OpenCode | `opencode` | `.agents/skills/` | `~/.config/opencode/skills/` |
247
+ | OpenHands | `openhands` | `.openhands/skills/` | `~/.openhands/skills/` |
248
+ | Pi | `pi` | `.pi/skills/` | `~/.pi/agent/skills/` |
249
+ | Qoder | `qoder` | `.qoder/skills/` | `~/.qoder/skills/` |
250
+ | Qwen Code | `qwen-code` | `.qwen/skills/` | `~/.qwen/skills/` |
251
+ | Roo Code | `roo` | `.roo/skills/` | `~/.roo/skills/` |
252
+ | Trae | `trae` | `.trae/skills/` | `~/.trae/skills/` |
253
+ | Trae CN | `trae-cn` | `.trae/skills/` | `~/.trae-cn/skills/` |
254
+ | Windsurf | `windsurf` | `.windsurf/skills/` | `~/.codeium/windsurf/skills/` |
255
+ | Zencoder | `zencoder` | `.zencoder/skills/` | `~/.zencoder/skills/` |
256
+ | Neovate | `neovate` | `.neovate/skills/` | `~/.neovate/skills/` |
257
+ | Pochi | `pochi` | `.pochi/skills/` | `~/.pochi/skills/` |
258
+ | AdaL | `adal` | `.adal/skills/` | `~/.adal/skills/` |
259
+ <!-- supported-agents:end -->
260
+
261
+ > [!NOTE]
262
+ > **Kiro CLI users:** After installing skills, manually add them to your custom agent's `resources` in
263
+ > `.kiro/agents/<agent>.json`:
264
+ >
265
+ > ```json
266
+ > {
267
+ > "resources": ["skill://.kiro/skills/**/SKILL.md"]
268
+ > }
269
+ > ```
270
+
271
+ The CLI automatically detects which coding agents you have installed. If none are detected, you'll be prompted to select
272
+ which agents to install to.
273
+
274
+ ## Creating Skills
275
+
276
+ Skills are directories containing a `SKILL.md` file with YAML frontmatter:
277
+
278
+ ```markdown
279
+ ---
280
+ name: my-skill
281
+ description: What this skill does and when to use it
282
+ ---
283
+
284
+ # My Skill
285
+
286
+ Instructions for the agent to follow when this skill is activated.
287
+
288
+ ## When to Use
289
+
290
+ Describe the scenarios where this skill should be used.
291
+
292
+ ## Steps
293
+
294
+ 1. First, do this
295
+ 2. Then, do that
296
+ ```
297
+
298
+ ### Required Fields
299
+
300
+ - `name`: Unique identifier (lowercase, hyphens allowed)
301
+ - `description`: Brief explanation of what the skill does
302
+
303
+ ### Optional Fields
304
+
305
+ - `metadata.internal`: Set to `true` to hide the skill from normal discovery. Internal skills are only visible and
306
+ installable when `INSTALL_INTERNAL_SKILLS=1` is set. Useful for work-in-progress skills or skills meant only for
307
+ internal tooling.
308
+
309
+ ```markdown
310
+ ---
311
+ name: my-internal-skill
312
+ description: An internal skill not shown by default
313
+ metadata:
314
+ internal: true
315
+ ---
316
+ ```
317
+
318
+ ### Skill Discovery
319
+
320
+ The CLI searches for skills in these locations within a repository:
321
+
322
+ <!-- skill-discovery:start -->
323
+ - Root directory (if it contains `SKILL.md`)
324
+ - `skills/`
325
+ - `skills/.curated/`
326
+ - `skills/.experimental/`
327
+ - `skills/.system/`
328
+ - `.agents/skills/`
329
+ - `.agent/skills/`
330
+ - `.augment/skills/`
331
+ - `.claude/skills/`
332
+ - `./skills/`
333
+ - `.cline/skills/`
334
+ - `.codebuddy/skills/`
335
+ - `.commandcode/skills/`
336
+ - `.continue/skills/`
337
+ - `.cortex/skills/`
338
+ - `.crush/skills/`
339
+ - `.factory/skills/`
340
+ - `.goose/skills/`
341
+ - `.junie/skills/`
342
+ - `.iflow/skills/`
343
+ - `.kilocode/skills/`
344
+ - `.kiro/skills/`
345
+ - `.kode/skills/`
346
+ - `.mcpjam/skills/`
347
+ - `.vibe/skills/`
348
+ - `.mux/skills/`
349
+ - `.openhands/skills/`
350
+ - `.pi/skills/`
351
+ - `.qoder/skills/`
352
+ - `.qwen/skills/`
353
+ - `.roo/skills/`
354
+ - `.trae/skills/`
355
+ - `.windsurf/skills/`
356
+ - `.zencoder/skills/`
357
+ - `.neovate/skills/`
358
+ - `.pochi/skills/`
359
+ - `.adal/skills/`
360
+ <!-- skill-discovery:end -->
361
+
362
+ ### Plugin Manifest Discovery
363
+
364
+ If `.claude-plugin/marketplace.json` or `.claude-plugin/plugin.json` exists, skills declared in those files are also discovered:
365
+
366
+ ```json
367
+ // .claude-plugin/marketplace.json
368
+ {
369
+ "metadata": { "pluginRoot": "./plugins" },
370
+ "plugins": [
371
+ {
372
+ "name": "my-plugin",
373
+ "source": "my-plugin",
374
+ "skills": ["./skills/review", "./skills/test"]
375
+ }
376
+ ]
377
+ }
378
+ ```
379
+
380
+ This enables compatibility with the [Claude Code plugin marketplace](https://code.claude.com/docs/en/plugin-marketplaces) ecosystem.
381
+
382
+ If no skills are found in standard locations, a recursive search is performed.
383
+
384
+ ## Compatibility
385
+
386
+ Skills are generally compatible across agents since they follow a
387
+ shared [Agent Skills specification](https://agentskills.io). However, some features may be agent-specific:
388
+
389
+ | Feature | OpenCode | OpenHands | Claude Code | Cline | CodeBuddy | Codex | Command Code | Kiro CLI | Cursor | Antigravity | Roo Code | Github Copilot | Amp | OpenClaw | Neovate | Pi | Qoder | Zencoder |
390
+ | --------------- | -------- | --------- | ----------- | ----- | --------- | ----- | ------------ | -------- | ------ | ----------- | -------- | -------------- | --- | -------- | ------- | --- | ----- | -------- |
391
+ | Basic skills | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
392
+ | `allowed-tools` | Yes | Yes | Yes | Yes | Yes | Yes | Yes | No | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | No |
393
+ | `context: fork` | No | No | Yes | No | No | No | No | No | No | No | No | No | No | No | No | No | No | No |
394
+ | Hooks | No | No | Yes | Yes | No | No | No | No | No | No | No | No | No | No | No | No | No | No |
395
+
396
+ ## Troubleshooting
397
+
398
+ ### "No skills found"
399
+
400
+ Ensure the repository contains valid `SKILL.md` files with both `name` and `description` in the frontmatter.
401
+
402
+ ### Skill not loading in agent
403
+
404
+ - Verify the skill was installed to the correct path
405
+ - Check the agent's documentation for skill loading requirements
406
+ - Ensure the `SKILL.md` frontmatter is valid YAML
407
+
408
+ ### Permission errors
409
+
410
+ Ensure you have write access to the target directory.
411
+
412
+ ## Environment Variables
413
+
414
+ | Variable | Description |
415
+ | ------------------------- | -------------------------------------------------------------------------- |
416
+ | `INSTALL_INTERNAL_SKILLS` | Set to `1` or `true` to show and install skills marked as `internal: true` |
417
+ | `DISABLE_TELEMETRY` | Set to disable anonymous usage telemetry |
418
+ | `DO_NOT_TRACK` | Alternative way to disable telemetry |
419
+
420
+ ```bash
421
+ # Install internal skills
422
+ INSTALL_INTERNAL_SKILLS=1 npx skills add vercel-labs/agent-skills --list
423
+ ```
424
+
425
+ ## Telemetry
426
+
427
+ This CLI collects anonymous usage data to help improve the tool. No personal information is collected.
428
+
429
+ Telemetry is automatically disabled in CI environments.
430
+
431
+ ## Related Links
432
+
433
+ - [Agent Skills Specification](https://agentskills.io)
434
+ - [Skills Directory](https://skills.sh)
435
+ - [Amp Skills Documentation](https://ampcode.com/manual#agent-skills)
436
+ - [Antigravity Skills Documentation](https://antigravity.google/docs/skills)
437
+ - [Factory AI / Droid Skills Documentation](https://docs.factory.ai/cli/configuration/skills)
438
+ - [Claude Code Skills Documentation](https://code.claude.com/docs/en/skills)
439
+ - [OpenClaw Skills Documentation](https://docs.openclaw.ai/tools/skills)
440
+ - [Cline Skills Documentation](https://docs.cline.bot/features/skills)
441
+ - [CodeBuddy Skills Documentation](https://www.codebuddy.ai/docs/ide/Features/Skills)
442
+ - [Codex Skills Documentation](https://developers.openai.com/codex/skills)
443
+ - [Command Code Skills Documentation](https://commandcode.ai/docs/skills)
444
+ - [Crush Skills Documentation](https://github.com/charmbracelet/crush?tab=readme-ov-file#agent-skills)
445
+ - [Cursor Skills Documentation](https://cursor.com/docs/context/skills)
446
+ - [Gemini CLI Skills Documentation](https://geminicli.com/docs/cli/skills/)
447
+ - [GitHub Copilot Agent Skills](https://docs.github.com/en/copilot/concepts/agents/about-agent-skills)
448
+ - [iFlow CLI Skills Documentation](https://platform.iflow.cn/en/cli/examples/skill)
449
+ - [Kimi Code CLI Skills Documentation](https://moonshotai.github.io/kimi-cli/en/customization/skills.html)
450
+ - [Kiro CLI Skills Documentation](https://kiro.dev/docs/cli/custom-agents/configuration-reference/#skill-resources)
451
+ - [Kode Skills Documentation](https://github.com/shareAI-lab/kode/blob/main/docs/skills.md)
452
+ - [OpenCode Skills Documentation](https://opencode.ai/docs/skills)
453
+ - [Qwen Code Skills Documentation](https://qwenlm.github.io/qwen-code-docs/en/users/features/skills/)
454
+ - [OpenHands Skills Documentation](https://docs.openhands.ai/modules/usage/how-to/using-skills)
455
+ - [Pi Skills Documentation](https://github.com/badlogic/pi-mono/blob/main/packages/coding-agent/docs/skills.md)
456
+ - [Qoder Skills Documentation](https://docs.qoder.com/cli/Skills)
457
+ - [Replit Skills Documentation](https://docs.replit.com/replitai/skills)
458
+ - [Roo Code Skills Documentation](https://docs.roocode.com/features/skills)
459
+ - [Trae Skills Documentation](https://docs.trae.ai/ide/skills)
460
+ - [Vercel Agent Skills Repository](https://github.com/vercel-labs/agent-skills)
461
+
462
+ ## License
463
+
464
+ 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
+ */
package/bin/cli.mjs ADDED
@@ -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');