skills 1.5.16 → 1.5.17
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/cli.mjs +11 -3
- package/package.json +1 -1
package/dist/cli.mjs
CHANGED
|
@@ -3183,7 +3183,7 @@ async function tryBlobInstall(ownerRepo, options = {}) {
|
|
|
3183
3183
|
tree
|
|
3184
3184
|
};
|
|
3185
3185
|
}
|
|
3186
|
-
var version$1 = "1.5.
|
|
3186
|
+
var version$1 = "1.5.17";
|
|
3187
3187
|
const isCancelled$1 = (value) => typeof value === "symbol";
|
|
3188
3188
|
const EVE_AGENT_LABEL = "eve agent";
|
|
3189
3189
|
async function isSourcePrivate(source) {
|
|
@@ -3663,9 +3663,13 @@ async function handleWellKnownSkills(source, url, options, spinner) {
|
|
|
3663
3663
|
const firstResult = skillResults[0];
|
|
3664
3664
|
if (firstResult.mode === "copy") {
|
|
3665
3665
|
resultLines.push(`${import_picocolors.default.green("✓")} ${skillName} ${import_picocolors.default.dim("(copied)")}`);
|
|
3666
|
+
const shortPathsSet = /* @__PURE__ */ new Set();
|
|
3666
3667
|
for (const r of skillResults) {
|
|
3667
3668
|
const shortPath = shortenPath$2(r.path, cwd);
|
|
3668
|
-
|
|
3669
|
+
if (!shortPathsSet.has(shortPath)) {
|
|
3670
|
+
shortPathsSet.add(shortPath);
|
|
3671
|
+
resultLines.push(` ${import_picocolors.default.dim("→")} ${shortPath}`);
|
|
3672
|
+
}
|
|
3669
3673
|
}
|
|
3670
3674
|
} else {
|
|
3671
3675
|
if (firstResult.canonicalPath) {
|
|
@@ -4275,9 +4279,13 @@ async function runAdd(args, options = {}) {
|
|
|
4275
4279
|
const firstResult = skillResults[0];
|
|
4276
4280
|
if (firstResult.mode === "copy") {
|
|
4277
4281
|
resultLines.push(`${import_picocolors.default.green("✓")} ${entry.skill} ${import_picocolors.default.dim("(copied)")}`);
|
|
4282
|
+
const shortPathsSet = /* @__PURE__ */ new Set();
|
|
4278
4283
|
for (const r of skillResults) {
|
|
4279
4284
|
const shortPath = shortenPath$2(r.path, cwd);
|
|
4280
|
-
|
|
4285
|
+
if (!shortPathsSet.has(shortPath)) {
|
|
4286
|
+
shortPathsSet.add(shortPath);
|
|
4287
|
+
resultLines.push(` ${import_picocolors.default.dim("→")} ${shortPath}`);
|
|
4288
|
+
}
|
|
4281
4289
|
}
|
|
4282
4290
|
} else {
|
|
4283
4291
|
if (firstResult.canonicalPath) {
|