allagents 0.21.3 → 0.21.4
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 +7 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -27381,7 +27381,9 @@ function collectSyncedPaths(copyResults, workspacePath, clients, clientMappings)
|
|
|
27381
27381
|
}
|
|
27382
27382
|
async function validatePlugin(pluginSource, workspacePath, offline) {
|
|
27383
27383
|
if (isPluginSpec(pluginSource)) {
|
|
27384
|
-
const resolved = await resolvePluginSpecWithAutoRegister(pluginSource
|
|
27384
|
+
const resolved = await resolvePluginSpecWithAutoRegister(pluginSource, {
|
|
27385
|
+
offline
|
|
27386
|
+
});
|
|
27385
27387
|
if (!resolved.success) {
|
|
27386
27388
|
return {
|
|
27387
27389
|
plugin: pluginSource,
|
|
@@ -28307,7 +28309,9 @@ import { readFile as readFile13, readdir as readdir4 } from "node:fs/promises";
|
|
|
28307
28309
|
import { join as join19, resolve as resolve12 } from "node:path";
|
|
28308
28310
|
async function resolvePluginPath(pluginSource, workspacePath) {
|
|
28309
28311
|
if (isPluginSpec(pluginSource)) {
|
|
28310
|
-
const resolved2 = await resolvePluginSpecWithAutoRegister(pluginSource
|
|
28312
|
+
const resolved2 = await resolvePluginSpecWithAutoRegister(pluginSource, {
|
|
28313
|
+
offline: true
|
|
28314
|
+
});
|
|
28311
28315
|
return resolved2.success ? resolved2.path ?? null : null;
|
|
28312
28316
|
}
|
|
28313
28317
|
if (isGitHubUrl(pluginSource)) {
|
|
@@ -28865,7 +28869,7 @@ var package_default;
|
|
|
28865
28869
|
var init_package = __esm(() => {
|
|
28866
28870
|
package_default = {
|
|
28867
28871
|
name: "allagents",
|
|
28868
|
-
version: "0.21.
|
|
28872
|
+
version: "0.21.4",
|
|
28869
28873
|
description: "CLI tool for managing multi-repo AI agent workspaces with plugin synchronization",
|
|
28870
28874
|
type: "module",
|
|
28871
28875
|
bin: {
|