allagents 1.7.0 → 1.7.1
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 +3 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -28441,7 +28441,8 @@ async function discoverWorkspaceSkills(workspacePath, repositories, clientNames)
|
|
|
28441
28441
|
const discoverOpts = Array.isArray(repo.skills) ? { skillPaths: repo.skills } : { clients: clientNames };
|
|
28442
28442
|
const repoSkills = await discoverRepoSkills(repoAbsPath, discoverOpts);
|
|
28443
28443
|
for (const skill of repoSkills) {
|
|
28444
|
-
const
|
|
28444
|
+
const base = repo.path.replace(/[/\\]+$/, "");
|
|
28445
|
+
const location = `${base}/${skill.relativePath}`.replace(/\\/g, "/");
|
|
28445
28446
|
const candidate = {
|
|
28446
28447
|
repoPath: repo.path,
|
|
28447
28448
|
name: skill.name,
|
|
@@ -34701,7 +34702,7 @@ var package_default;
|
|
|
34701
34702
|
var init_package = __esm(() => {
|
|
34702
34703
|
package_default = {
|
|
34703
34704
|
name: "allagents",
|
|
34704
|
-
version: "1.7.
|
|
34705
|
+
version: "1.7.1",
|
|
34705
34706
|
description: "CLI tool for managing multi-repo AI agent workspaces with plugin synchronization",
|
|
34706
34707
|
type: "module",
|
|
34707
34708
|
bin: {
|