skillrepo 3.1.3 → 3.1.4

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.
Files changed (3) hide show
  1. package/LICENSE +37 -0
  2. package/README.md +4 -1
  3. package/package.json +5 -3
package/LICENSE ADDED
@@ -0,0 +1,37 @@
1
+ SkillRepo CLI
2
+ Copyright (c) 2026 SkillRepo LLC. All rights reserved.
3
+
4
+ This software is proprietary and confidential. Its installation, use,
5
+ reproduction, modification, and distribution are governed exclusively by
6
+ the SkillRepo End User License Agreement (the "EULA") available at:
7
+
8
+ https://skillrepo.dev/eula
9
+
10
+ By installing, copying, or otherwise using this software you agree to be
11
+ bound by the EULA. If you do not agree to the EULA, do not install or
12
+ use this software.
13
+
14
+ No license or right, whether by implication, estoppel, or otherwise, is
15
+ granted except as expressly set forth in the EULA. Without limiting the
16
+ foregoing, you may not:
17
+
18
+ - reverse engineer, decompile, disassemble, or otherwise attempt to
19
+ derive the source code of this software, except to the extent such
20
+ activity is expressly permitted by applicable law notwithstanding
21
+ this limitation;
22
+ - sell, resell, rent, lease, sublicense, distribute, or otherwise
23
+ transfer this software or access to it to any third party;
24
+ - use this software, its outputs, or any data obtained through it to
25
+ build or operate a service that is substantially similar to or
26
+ competes with the SkillRepo platform; or
27
+ - remove, alter, or obscure any proprietary notices on or in this
28
+ software.
29
+
30
+ THIS SOFTWARE IS PROVIDED "AS IS," WITHOUT WARRANTY OF ANY KIND, EXPRESS
31
+ OR IMPLIED. YOUR USE OF THIS SOFTWARE IS SUBJECT TO THE WARRANTY
32
+ DISCLAIMERS, LIMITATION OF LIABILITY, AND ALL OTHER PROVISIONS OF THE
33
+ EULA, WHICH ARE INCORPORATED INTO THIS NOTICE BY REFERENCE.
34
+
35
+ SkillRepo and the SkillRepo logo are trademarks of SkillRepo LLC.
36
+
37
+ Contact: hello@skillrepo.dev
package/README.md CHANGED
@@ -346,4 +346,7 @@ fully overwrites it.
346
346
 
347
347
  ## License
348
348
 
349
- MIT see [LICENSE](./LICENSE).
349
+ Proprietary. Copyright © 2026 SkillRepo LLC. All rights reserved.
350
+ Use of this CLI is governed by the SkillRepo End User License Agreement
351
+ at [https://skillrepo.dev/eula](https://skillrepo.dev/eula). See
352
+ [LICENSE](./LICENSE) for the full notice.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "skillrepo",
3
- "version": "3.1.3",
3
+ "version": "3.1.4",
4
4
  "description": "Pull-based CLI for agent skills — init, sync, search, add, remove your library from any IDE",
5
5
  "type": "module",
6
6
  "bin": {
@@ -8,7 +8,8 @@
8
8
  },
9
9
  "files": [
10
10
  "bin/",
11
- "src/"
11
+ "src/",
12
+ "LICENSE"
12
13
  ],
13
14
  "repository": {
14
15
  "type": "git",
@@ -16,7 +17,8 @@
16
17
  "directory": "packages/cli"
17
18
  },
18
19
  "keywords": ["skillrepo", "cli", "mcp", "ai-skills"],
19
- "license": "MIT",
20
+ "author": "SkillRepo LLC",
21
+ "license": "SEE LICENSE IN LICENSE",
20
22
  "dependencies": {
21
23
  "cli-table3": "^0.6.5"
22
24
  }