skild 0.1.2 → 0.1.3
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/dist/index.js +2 -2
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -150,11 +150,11 @@ async function list(options = {}) {
|
|
|
150
150
|
for (const p of PLATFORMS) {
|
|
151
151
|
const platformSkills = allSkills.filter((s) => s.platform === p).sort((a, b) => a.name.localeCompare(b.name));
|
|
152
152
|
const header = `${p} (${platformSkills.length})`;
|
|
153
|
+
console.log(chalk3.bold(` ${header}`));
|
|
153
154
|
if (platformSkills.length === 0) {
|
|
154
|
-
console.log(chalk3.dim(
|
|
155
|
+
console.log(chalk3.dim(" (none)"));
|
|
155
156
|
continue;
|
|
156
157
|
}
|
|
157
|
-
console.log(chalk3.bold(` ${header}`));
|
|
158
158
|
for (const s of platformSkills) {
|
|
159
159
|
const status = s.hasSkillMd ? chalk3.green("\u2713") : chalk3.yellow("\u26A0");
|
|
160
160
|
console.log(` ${status} ${chalk3.cyan(s.name)}`);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "skild",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "The npm for Agent Skills — Discover, install, manage, and publish AI Agent Skills with ease.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"chalk": "^5.3.0",
|
|
37
37
|
"commander": "^12.1.0",
|
|
38
38
|
"ora": "^8.0.1",
|
|
39
|
-
"@skild/core": "^0.1.
|
|
39
|
+
"@skild/core": "^0.1.3"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
42
|
"@types/node": "^20.10.0",
|