skills 1.3.7 → 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/ThirdPartyNoticeText.txt +46 -0
- package/dist/cli.mjs +2 -1
- package/package.json +1 -1
package/ThirdPartyNoticeText.txt
CHANGED
|
@@ -8,6 +8,23 @@ are set forth below. These licenses and notices are provided for informational p
|
|
|
8
8
|
Third Party Code Components
|
|
9
9
|
--------------------------------------------
|
|
10
10
|
|
|
11
|
+
================================================================================
|
|
12
|
+
Package: @clack/core@0.4.1
|
|
13
|
+
License: MIT
|
|
14
|
+
Repository: https://github.com/natemoo-re/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
|
+
|
|
11
28
|
================================================================================
|
|
12
29
|
Package: @clack/prompts@0.11.0
|
|
13
30
|
License: MIT
|
|
@@ -104,6 +121,35 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
104
121
|
SOFTWARE.
|
|
105
122
|
|
|
106
123
|
|
|
124
|
+
================================================================================
|
|
125
|
+
Package: sisteransi@1.0.5
|
|
126
|
+
License: MIT
|
|
127
|
+
Repository: https://github.com/terkelg/sisteransi
|
|
128
|
+
--------------------------------------------------------------------------------
|
|
129
|
+
|
|
130
|
+
MIT License
|
|
131
|
+
|
|
132
|
+
Copyright (c) 2018 Terkel Gjervig Nielsen
|
|
133
|
+
|
|
134
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
135
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
136
|
+
in the Software without restriction, including without limitation the rights
|
|
137
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
138
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
139
|
+
furnished to do so, subject to the following conditions:
|
|
140
|
+
|
|
141
|
+
The above copyright notice and this permission notice shall be included in all
|
|
142
|
+
copies or substantial portions of the Software.
|
|
143
|
+
|
|
144
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
145
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
146
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
147
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
148
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
149
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
150
|
+
SOFTWARE.
|
|
151
|
+
|
|
152
|
+
|
|
107
153
|
================================================================================
|
|
108
154
|
Package: xdg-basedir@5.1.0
|
|
109
155
|
License: MIT
|
package/dist/cli.mjs
CHANGED
|
@@ -436,6 +436,7 @@ async function parseSkillMd(skillMdPath, options) {
|
|
|
436
436
|
const content = await readFile(skillMdPath, "utf-8");
|
|
437
437
|
const { data } = (0, import_gray_matter.default)(content);
|
|
438
438
|
if (!data.name || !data.description) return null;
|
|
439
|
+
if (typeof data.name !== "string" || typeof data.description !== "string") return null;
|
|
439
440
|
if (data.metadata?.internal === true && !shouldInstallInternalSkills() && !options?.includeInternal) return null;
|
|
440
441
|
return {
|
|
441
442
|
name: data.name,
|
|
@@ -1795,7 +1796,7 @@ async function saveSelectedAgents(agents) {
|
|
|
1795
1796
|
lock.lastSelectedAgents = agents;
|
|
1796
1797
|
await writeSkillLock(lock);
|
|
1797
1798
|
}
|
|
1798
|
-
var version$1 = "1.3.
|
|
1799
|
+
var version$1 = "1.3.8";
|
|
1799
1800
|
const isCancelled = (value) => typeof value === "symbol";
|
|
1800
1801
|
async function isSourcePrivate(source) {
|
|
1801
1802
|
const ownerRepo = parseOwnerRepo(source);
|