@skst/skill 0.1.0

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,22 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Skill Studio
4
+ Portions Copyright (c) Vercel, Inc. (hard fork of vercel-labs/skills, MIT)
5
+
6
+ Permission is hereby granted, free of charge, to any person obtaining a copy
7
+ of this software and associated documentation files (the "Software"), to deal
8
+ in the Software without restriction, including without limitation the rights
9
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10
+ copies of the Software, and to permit persons to whom the Software is
11
+ furnished to do so, subject to the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be included in all
14
+ copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,46 @@
1
+ # @skst/skill
2
+
3
+ The Skill Studio CLI — publish, install, and manage [agentskills.io](https://agentskills.io)
4
+ skills from the [skst.dev](https://skst.dev) registry.
5
+
6
+ ```bash
7
+ npx @skst/skill add alice/code-reviewer
8
+ ```
9
+
10
+ Installs into the shared `.agents/skills/` directory (plus each detected agent's own
11
+ skills dir — Claude Code, Cursor, Codex, …) so any agent can use what you install.
12
+
13
+ ## Common commands
14
+
15
+ ```bash
16
+ skst add <owner>/<skill> # install a skill (from skst.dev or a GitHub repo)
17
+ skst find [query] # search the registry interactively
18
+ skst list # list installed skills
19
+ skst update # update installed skills
20
+ skst publish # publish the current skill directory
21
+ skst init [name] # scaffold a new skill (SKILL.md)
22
+ ```
23
+
24
+ (`skst`, `skill`, and `skill-studio` are all aliases for the same CLI.)
25
+
26
+ ## Signing in
27
+
28
+ `skst login` uses a **browser device flow** — it prints a short code, opens
29
+ `skst.dev/device`, and you approve there. Nothing to copy by hand.
30
+
31
+ ```bash
32
+ skst login # browser device flow (default)
33
+ skst login --no-browser # print the URL + code instead of opening a browser
34
+ skst login --paste # paste an access key from skst.dev/settings/tokens
35
+ skst login --token <key> # use an access key directly (non-interactive)
36
+ SKILL_STUDIO_TOKEN=<key> … # or set the env var for CI / headless use
37
+ skst whoami # show the signed-in user
38
+ skst logout # clear stored credentials
39
+ ```
40
+
41
+ Credentials are stored in `~/.config/skill-studio/credentials.json`. Point at a
42
+ different instance with `--url` or `SKILLS_API_URL`.
43
+
44
+ ## License
45
+
46
+ MIT. Hard fork of [vercel-labs/skills](https://github.com/vercel-labs/skills) (MIT). See `LICENSE`.
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');
@@ -0,0 +1,490 @@
1
+ # Licenses of Bundled Dependencies
2
+
3
+ The published artifact additionally contains code with the following licenses:
4
+ Apache-2.0, ISC, MIT
5
+
6
+ # Bundled Dependencies
7
+
8
+ ## @clack/core, @clack/prompts
9
+
10
+ License: MIT
11
+ By: Nate Moore
12
+ Repositories: https://github.com/bombshell-dev/clack, https://github.com/bombshell-dev/clack
13
+
14
+ > MIT License
15
+ >
16
+ > Copyright (c) Nate Moore
17
+ >
18
+ > 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:
19
+ >
20
+ > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
21
+ >
22
+ > 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.
23
+
24
+ ---------------------------------------
25
+
26
+ ## @kwsites/file-exists
27
+
28
+ License: MIT
29
+ By: Steve King <steve@mydev.co>, Steve King
30
+ Repository: https://github.com/kwsites/file-exists
31
+
32
+ > The MIT License (MIT)
33
+ >
34
+ > Copyright (c) 2015 Steve King
35
+ >
36
+ > Permission is hereby granted, free of charge, to any person obtaining a copy of
37
+ > this software and associated documentation files (the "Software"), to deal in
38
+ > the Software without restriction, including without limitation the rights to
39
+ > use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
40
+ > the Software, and to permit persons to whom the Software is furnished to do so,
41
+ > subject to the following conditions:
42
+ >
43
+ > The above copyright notice and this permission notice shall be included in all
44
+ > copies or substantial portions of the Software.
45
+ >
46
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
47
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
48
+ > FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
49
+ > COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
50
+ > IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
51
+ > CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
52
+
53
+ ---------------------------------------
54
+
55
+ ## @kwsites/promise-deferred
56
+
57
+ License: MIT
58
+ By: Steve King <steve@mydev.co>, Steve King
59
+ Repository: https://github.com/kwsites/promise-deferred
60
+
61
+ > MIT License
62
+ >
63
+ > Copyright (c) 2018 kwsites
64
+ >
65
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
66
+ > of this software and associated documentation files (the "Software"), to deal
67
+ > in the Software without restriction, including without limitation the rights
68
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
69
+ > copies of the Software, and to permit persons to whom the Software is
70
+ > furnished to do so, subject to the following conditions:
71
+ >
72
+ > The above copyright notice and this permission notice shall be included in all
73
+ > copies or substantial portions of the Software.
74
+ >
75
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
76
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
77
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
78
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
79
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
80
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
81
+ > SOFTWARE.
82
+
83
+ ---------------------------------------
84
+
85
+ ## @simple-git/args-pathspec
86
+
87
+ License: MIT
88
+ Repository: https://github.com/steveukx/git-js
89
+
90
+ ---------------------------------------
91
+
92
+ ## @simple-git/argv-parser
93
+
94
+ License: MIT
95
+ Repository: https://github.com/steveukx/git-js
96
+
97
+ ---------------------------------------
98
+
99
+ ## @vercel/detect-agent
100
+
101
+ License: Apache-2.0
102
+ By: Vercel
103
+ Repository: https://github.com/vercel/vercel
104
+
105
+ > Apache License
106
+ > Version 2.0, January 2004
107
+ > http://www.apache.org/licenses/
108
+ >
109
+ > TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
110
+ >
111
+ > 1. Definitions.
112
+ >
113
+ > "License" shall mean the terms and conditions for use, reproduction,
114
+ > and distribution as defined by Sections 1 through 9 of this document.
115
+ >
116
+ > "Licensor" shall mean the copyright owner or entity authorized by
117
+ > the copyright owner that is granting the License.
118
+ >
119
+ > "Legal Entity" shall mean the union of the acting entity and all
120
+ > other entities that control, are controlled by, or are under common
121
+ > control with that entity. For the purposes of this definition,
122
+ > "control" means (i) the power, direct or indirect, to cause the
123
+ > direction or management of such entity, whether by contract or
124
+ > otherwise, or (ii) ownership of fifty percent (50%) or more of the
125
+ > outstanding shares, or (iii) beneficial ownership of such entity.
126
+ >
127
+ > "You" (or "Your") shall mean an individual or Legal Entity
128
+ > exercising permissions granted by this License.
129
+ >
130
+ > "Source" form shall mean the preferred form for making modifications,
131
+ > including but not limited to software source code, documentation
132
+ > source, and configuration files.
133
+ >
134
+ > "Object" form shall mean any form resulting from mechanical
135
+ > transformation or translation of a Source form, including but
136
+ > not limited to compiled object code, generated documentation,
137
+ > and conversions to other media types.
138
+ >
139
+ > "Work" shall mean the work of authorship, whether in Source or
140
+ > Object form, made available under the License, as indicated by a
141
+ > copyright notice that is included in or attached to the work
142
+ > (an example is provided in the Appendix below).
143
+ >
144
+ > "Derivative Works" shall mean any work, whether in Source or Object
145
+ > form, that is based on (or derived from) the Work and for which the
146
+ > editorial revisions, annotations, elaborations, or other modifications
147
+ > represent, as a whole, an original work of authorship. For the purposes
148
+ > of this License, Derivative Works shall not include works that remain
149
+ > separable from, or merely link (or bind by name) to the interfaces of,
150
+ > the Work and Derivative Works thereof.
151
+ >
152
+ > "Contribution" shall mean any work of authorship, including
153
+ > the original version of the Work and any modifications or additions
154
+ > to that Work or Derivative Works thereof, that is intentionally
155
+ > submitted to Licensor for inclusion in the Work by the copyright owner
156
+ > or by an individual or Legal Entity authorized to submit on behalf of
157
+ > the copyright owner. For the purposes of this definition, "submitted"
158
+ > means any form of electronic, verbal, or written communication sent
159
+ > to the Licensor or its representatives, including but not limited to
160
+ > communication on electronic mailing lists, source code control systems,
161
+ > and issue tracking systems that are managed by, or on behalf of, the
162
+ > Licensor for the purpose of discussing and improving the Work, but
163
+ > excluding communication that is conspicuously marked or otherwise
164
+ > designated in writing by the copyright owner as "Not a Contribution."
165
+ >
166
+ > "Contributor" shall mean Licensor and any individual or Legal Entity
167
+ > on behalf of whom a Contribution has been received by Licensor and
168
+ > subsequently incorporated within the Work.
169
+ >
170
+ > 2. Grant of Copyright License. Subject to the terms and conditions of
171
+ > this License, each Contributor hereby grants to You a perpetual,
172
+ > worldwide, non-exclusive, no-charge, royalty-free, irrevocable
173
+ > copyright license to reproduce, prepare Derivative Works of,
174
+ > publicly display, publicly perform, sublicense, and distribute the
175
+ > Work and such Derivative Works in Source or Object form.
176
+ >
177
+ > 3. Grant of Patent License. Subject to the terms and conditions of
178
+ > this License, each Contributor hereby grants to You a perpetual,
179
+ > worldwide, non-exclusive, no-charge, royalty-free, irrevocable
180
+ > (except as stated in this section) patent license to make, have made,
181
+ > use, offer to sell, sell, import, and otherwise transfer the Work,
182
+ > where such license applies only to those patent claims licensable
183
+ > by such Contributor that are necessarily infringed by their
184
+ > Contribution(s) alone or by combination of their Contribution(s)
185
+ > with the Work to which such Contribution(s) was submitted. If You
186
+ > institute patent litigation against any entity (including a
187
+ > cross-claim or counterclaim in a lawsuit) alleging that the Work
188
+ > or a Contribution incorporated within the Work constitutes direct
189
+ > or contributory patent infringement, then any patent licenses
190
+ > granted to You under this License for that Work shall terminate
191
+ > as of the date such litigation is filed.
192
+ >
193
+ > 4. Redistribution. You may reproduce and distribute copies of the
194
+ > Work or Derivative Works thereof in any medium, with or without
195
+ > modifications, and in Source or Object form, provided that You
196
+ > meet the following conditions:
197
+ >
198
+ > (a) You must give any other recipients of the Work or
199
+ > Derivative Works a copy of this License; and
200
+ >
201
+ > (b) You must cause any modified files to carry prominent notices
202
+ > stating that You changed the files; and
203
+ >
204
+ > (c) You must retain, in the Source form of any Derivative Works
205
+ > that You distribute, all copyright, patent, trademark, and
206
+ > attribution notices from the Source form of the Work,
207
+ > excluding those notices that do not pertain to any part of
208
+ > the Derivative Works; and
209
+ >
210
+ > (d) If the Work includes a "NOTICE" text file as part of its
211
+ > distribution, then any Derivative Works that You distribute must
212
+ > include a readable copy of the attribution notices contained
213
+ > within such NOTICE file, excluding those notices that do not
214
+ > pertain to any part of the Derivative Works, in at least one
215
+ > of the following places: within a NOTICE text file distributed
216
+ > as part of the Derivative Works; within the Source form or
217
+ > documentation, if provided along with the Derivative Works; or,
218
+ > within a display generated by the Derivative Works, if and
219
+ > wherever such third-party notices normally appear. The contents
220
+ > of the NOTICE file are for informational purposes only and
221
+ > do not modify the License. You may add Your own attribution
222
+ > notices within Derivative Works that You distribute, alongside
223
+ > or as an addendum to the NOTICE text from the Work, provided
224
+ > that such additional attribution notices cannot be construed
225
+ > as modifying the License.
226
+ >
227
+ > You may add Your own copyright statement to Your modifications and
228
+ > may provide additional or different license terms and conditions
229
+ > for use, reproduction, or distribution of Your modifications, or
230
+ > for any such Derivative Works as a whole, provided Your use,
231
+ > reproduction, and distribution of the Work otherwise complies with
232
+ > the conditions stated in this License.
233
+ >
234
+ > 5. Submission of Contributions. Unless You explicitly state otherwise,
235
+ > any Contribution intentionally submitted for inclusion in the Work
236
+ > by You to the Licensor shall be under the terms and conditions of
237
+ > this License, without any additional terms or conditions.
238
+ > Notwithstanding the above, nothing herein shall supersede or modify
239
+ > the terms of any separate license agreement you may have executed
240
+ > with Licensor regarding such Contributions.
241
+ >
242
+ > 6. Trademarks. This License does not grant permission to use the trade
243
+ > names, trademarks, service marks, or product names of the Licensor,
244
+ > except as required for reasonable and customary use in describing the
245
+ > origin of the Work and reproducing the content of the NOTICE file.
246
+ >
247
+ > 7. Disclaimer of Warranty. Unless required by applicable law or
248
+ > agreed to in writing, Licensor provides the Work (and each
249
+ > Contributor provides its Contributions) on an "AS IS" BASIS,
250
+ > WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
251
+ > implied, including, without limitation, any warranties or conditions
252
+ > of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
253
+ > PARTICULAR PURPOSE. You are solely responsible for determining the
254
+ > appropriateness of using or redistributing the Work and assume any
255
+ > risks associated with Your exercise of permissions under this License.
256
+ >
257
+ > 8. Limitation of Liability. In no event and under no legal theory,
258
+ > whether in tort (including negligence), contract, or otherwise,
259
+ > unless required by applicable law (such as deliberate and grossly
260
+ > negligent acts) or agreed to in writing, shall any Contributor be
261
+ > liable to You for damages, including any direct, indirect, special,
262
+ > incidental, or consequential damages of any character arising as a
263
+ > result of this License or out of the use or inability to use the
264
+ > Work (including but not limited to damages for loss of goodwill,
265
+ > work stoppage, computer failure or malfunction, or any and all
266
+ > other commercial damages or losses), even if such Contributor
267
+ > has been advised of the possibility of such damages.
268
+ >
269
+ > 9. Accepting Warranty or Additional Liability. While redistributing
270
+ > the Work or Derivative Works thereof, You may choose to offer,
271
+ > and charge a fee for, acceptance of support, warranty, indemnity,
272
+ > or other liability obligations and/or rights consistent with this
273
+ > License. However, in accepting such obligations, You may act only
274
+ > on Your own behalf and on Your sole responsibility, not on behalf
275
+ > of any other Contributor, and only if You agree to indemnify,
276
+ > defend, and hold each Contributor harmless for any liability
277
+ > incurred by, or claims asserted against, such Contributor by reason
278
+ > of your accepting any such warranty or additional liability.
279
+ >
280
+ > END OF TERMS AND CONDITIONS
281
+ >
282
+ > APPENDIX: How to apply the Apache License to your work.
283
+ >
284
+ > To apply the Apache License to your work, attach the following
285
+ > boilerplate notice, with the fields enclosed by brackets "[]"
286
+ > replaced with your own identifying information. (Don't include
287
+ > the brackets!) The text should be enclosed in the appropriate
288
+ > comment syntax for the file format. We also recommend that a
289
+ > file or class name and description of purpose be included on the
290
+ > same "printed page" as the copyright notice for easier
291
+ > identification within third-party archives.
292
+ >
293
+ > Copyright 2017 Vercel, Inc.
294
+ >
295
+ > Licensed under the Apache License, Version 2.0 (the "License");
296
+ > you may not use this file except in compliance with the License.
297
+ > You may obtain a copy of the License at
298
+ >
299
+ > http://www.apache.org/licenses/LICENSE-2.0
300
+ >
301
+ > Unless required by applicable law or agreed to in writing, software
302
+ > distributed under the License is distributed on an "AS IS" BASIS,
303
+ > WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
304
+ > See the License for the specific language governing permissions and
305
+ > limitations under the License.
306
+
307
+ ---------------------------------------
308
+
309
+ ## debug
310
+
311
+ License: MIT
312
+ By: Josh Junon (https://github.com/qix-), TJ Holowaychuk <tj@vision-media.ca>, Nathan Rajlich <nathan@tootallnate.net> (http://n8.io), Andrew Rhyne <rhyneandrew@gmail.com>
313
+ Repository: https://github.com/debug-js/debug
314
+
315
+ > (The MIT License)
316
+ >
317
+ > Copyright (c) 2014-2017 TJ Holowaychuk <tj@vision-media.ca>
318
+ > Copyright (c) 2018-2021 Josh Junon
319
+ >
320
+ > Permission is hereby granted, free of charge, to any person obtaining a copy of this software
321
+ > and associated documentation files (the 'Software'), to deal in the Software without restriction,
322
+ > including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,
323
+ > and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,
324
+ > subject to the following conditions:
325
+ >
326
+ > The above copyright notice and this permission notice shall be included in all copies or substantial
327
+ > portions of the Software.
328
+ >
329
+ > THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
330
+ > LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
331
+ > IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
332
+ > WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
333
+ > SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
334
+
335
+ ---------------------------------------
336
+
337
+ ## has-flag, supports-color
338
+
339
+ License: MIT
340
+ By: Sindre Sorhus
341
+ Repositories: https://github.com/sindresorhus/has-flag, https://github.com/chalk/supports-color
342
+
343
+ > MIT License
344
+ >
345
+ > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
346
+ >
347
+ > 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:
348
+ >
349
+ > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
350
+ >
351
+ > 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.
352
+
353
+ ---------------------------------------
354
+
355
+ ## ms
356
+
357
+ License: MIT
358
+ Repository: https://github.com/vercel/ms
359
+
360
+ > The MIT License (MIT)
361
+ >
362
+ > Copyright (c) 2020 Vercel, Inc.
363
+ >
364
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
365
+ > of this software and associated documentation files (the "Software"), to deal
366
+ > in the Software without restriction, including without limitation the rights
367
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
368
+ > copies of the Software, and to permit persons to whom the Software is
369
+ > furnished to do so, subject to the following conditions:
370
+ >
371
+ > The above copyright notice and this permission notice shall be included in all
372
+ > copies or substantial portions of the Software.
373
+ >
374
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
375
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
376
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
377
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
378
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
379
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
380
+ > SOFTWARE.
381
+
382
+ ---------------------------------------
383
+
384
+ ## picocolors
385
+
386
+ License: ISC
387
+ By: Alexey Raspopov
388
+ Repository: https://github.com/alexeyraspopov/picocolors
389
+
390
+ > ISC License
391
+ >
392
+ > Copyright (c) 2021-2024 Oleksii Raspopov, Kostiantyn Denysov, Anton Verinov
393
+ >
394
+ > Permission to use, copy, modify, and/or distribute this software for any
395
+ > purpose with or without fee is hereby granted, provided that the above
396
+ > copyright notice and this permission notice appear in all copies.
397
+ >
398
+ > THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
399
+ > WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
400
+ > MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
401
+ > ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
402
+ > WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
403
+ > ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
404
+ > OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
405
+
406
+ ---------------------------------------
407
+
408
+ ## simple-git
409
+
410
+ License: MIT
411
+ By: Steve King <steve@mydev.co>, Steve King
412
+ Repository: https://github.com/steveukx/git-js
413
+
414
+ ---------------------------------------
415
+
416
+ ## sisteransi
417
+
418
+ License: MIT
419
+ By: Terkel Gjervig
420
+ Repository: https://github.com/terkelg/sisteransi
421
+
422
+ > MIT License
423
+ >
424
+ > Copyright (c) 2018 Terkel Gjervig Nielsen
425
+ >
426
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
427
+ > of this software and associated documentation files (the "Software"), to deal
428
+ > in the Software without restriction, including without limitation the rights
429
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
430
+ > copies of the Software, and to permit persons to whom the Software is
431
+ > furnished to do so, subject to the following conditions:
432
+ >
433
+ > The above copyright notice and this permission notice shall be included in all
434
+ > copies or substantial portions of the Software.
435
+ >
436
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
437
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
438
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
439
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
440
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
441
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
442
+ > SOFTWARE.
443
+
444
+ ---------------------------------------
445
+
446
+ ## xdg-basedir
447
+
448
+ License: MIT
449
+ By: Sindre Sorhus
450
+ Repository: https://github.com/sindresorhus/xdg-basedir
451
+
452
+ > MIT License
453
+ >
454
+ > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
455
+ >
456
+ > 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:
457
+ >
458
+ > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
459
+ >
460
+ > 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.
461
+
462
+ ---------------------------------------
463
+
464
+ ## zod
465
+
466
+ License: MIT
467
+ By: Colin McDonnell <zod@colinhacks.com>
468
+ Repository: https://github.com/colinhacks/zod
469
+
470
+ > MIT License
471
+ >
472
+ > Copyright (c) 2025 Colin McDonnell
473
+ >
474
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
475
+ > of this software and associated documentation files (the "Software"), to deal
476
+ > in the Software without restriction, including without limitation the rights
477
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
478
+ > copies of the Software, and to permit persons to whom the Software is
479
+ > furnished to do so, subject to the following conditions:
480
+ >
481
+ > The above copyright notice and this permission notice shall be included in all
482
+ > copies or substantial portions of the Software.
483
+ >
484
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
485
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
486
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
487
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
488
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
489
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
490
+ > SOFTWARE.