@nostrify/skills 1.3.8

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