skills 1.5.12-snapshot.2 → 1.5.12
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 +3 -3
- package/package.json +1 -1
package/dist/cli.mjs
CHANGED
|
@@ -3114,7 +3114,7 @@ async function tryBlobInstall(ownerRepo, options = {}) {
|
|
|
3114
3114
|
tree
|
|
3115
3115
|
};
|
|
3116
3116
|
}
|
|
3117
|
-
var version$1 = "1.5.12
|
|
3117
|
+
var version$1 = "1.5.12";
|
|
3118
3118
|
const isCancelled$1 = (value) => typeof value === "symbol";
|
|
3119
3119
|
async function isSourcePrivate(source) {
|
|
3120
3120
|
const ownerRepo = parseOwnerRepo(source);
|
|
@@ -3255,7 +3255,7 @@ async function selectAgentsInteractive(options) {
|
|
|
3255
3255
|
const supportsGlobalFilter = (a) => !options.global || agents[a].globalSkillsDir;
|
|
3256
3256
|
const universalAgents = getUniversalAgents().filter(supportsGlobalFilter);
|
|
3257
3257
|
const visibleUniversalAgents = getVisibleUniversalAgents().filter(supportsGlobalFilter);
|
|
3258
|
-
const otherAgents = getNonUniversalAgents().filter(supportsGlobalFilter);
|
|
3258
|
+
const otherAgents = getNonUniversalAgents().filter((agent) => agent !== "eve" && supportsGlobalFilter(agent));
|
|
3259
3259
|
const universalSection = {
|
|
3260
3260
|
title: "Universal (.agents/skills)",
|
|
3261
3261
|
items: visibleUniversalAgents.map((a) => ({
|
|
@@ -3845,7 +3845,7 @@ async function runAdd(args, options = {}) {
|
|
|
3845
3845
|
M.info("Installing to all agents");
|
|
3846
3846
|
} else {
|
|
3847
3847
|
M.info("Select agents to install skills to");
|
|
3848
|
-
const selected = await promptForAgents("Which agents do you want to install to?", Object.entries(agents).map(([key, config]) => ({
|
|
3848
|
+
const selected = await promptForAgents("Which agents do you want to install to?", Object.entries(agents).filter(([key]) => key !== "eve").map(([key, config]) => ({
|
|
3849
3849
|
value: key,
|
|
3850
3850
|
label: config.displayName
|
|
3851
3851
|
})));
|