allagents 1.4.1 → 1.4.2
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 +5 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -33998,7 +33998,7 @@ var package_default;
|
|
|
33998
33998
|
var init_package = __esm(() => {
|
|
33999
33999
|
package_default = {
|
|
34000
34000
|
name: "allagents",
|
|
34001
|
-
version: "1.4.
|
|
34001
|
+
version: "1.4.2",
|
|
34002
34002
|
description: "CLI tool for managing multi-repo AI agent workspaces with plugin synchronization",
|
|
34003
34003
|
type: "module",
|
|
34004
34004
|
bin: {
|
|
@@ -38080,11 +38080,13 @@ Enabled skills: ${skills.join(", ")}`);
|
|
|
38080
38080
|
if (result.autoRegistered) {
|
|
38081
38081
|
console.log(` Resolved marketplace: ${result.autoRegistered}`);
|
|
38082
38082
|
}
|
|
38083
|
-
console.log(`Installing plugin "${displayPlugin}"
|
|
38083
|
+
console.log(`Installing plugin "${displayPlugin}"...
|
|
38084
|
+
`);
|
|
38084
38085
|
}
|
|
38085
38086
|
const { ok: syncOk, syncData } = isUser ? await runUserSyncAndPrint() : await runSyncAndPrint();
|
|
38086
38087
|
if (!isJsonMode() && syncOk) {
|
|
38087
|
-
console.log(
|
|
38088
|
+
console.log(`
|
|
38089
|
+
✔ Successfully installed plugin: ${displayPlugin} (scope: ${isUser ? "user" : "project"})`);
|
|
38088
38090
|
}
|
|
38089
38091
|
if (isJsonMode()) {
|
|
38090
38092
|
jsonOutput({
|