allagents 1.0.2 → 1.0.3

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.
Files changed (2) hide show
  1. package/dist/index.js +10 -2
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -30852,7 +30852,15 @@ function formatDeletedArtifacts(artifacts) {
30852
30852
  list.push(artifact);
30853
30853
  }
30854
30854
  return Array.from(byClient.entries()).map(([displayClient, items]) => {
30855
- const names = items.map((a) => `${a.type} '${a.name}'`).join(", ");
30855
+ const seen = new Set;
30856
+ const unique = items.filter((a) => {
30857
+ const key = `${a.type}:${a.name}`;
30858
+ if (seen.has(key))
30859
+ return false;
30860
+ seen.add(key);
30861
+ return true;
30862
+ });
30863
+ const names = unique.map((a) => `${a.type} '${a.name}'`).join(", ");
30856
30864
  return ` Deleted (${displayClient}): ${names}`;
30857
30865
  });
30858
30866
  }
@@ -33403,7 +33411,7 @@ var package_default;
33403
33411
  var init_package = __esm(() => {
33404
33412
  package_default = {
33405
33413
  name: "allagents",
33406
- version: "1.0.2",
33414
+ version: "1.0.3",
33407
33415
  description: "CLI tool for managing multi-repo AI agent workspaces with plugin synchronization",
33408
33416
  type: "module",
33409
33417
  bin: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "allagents",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "CLI tool for managing multi-repo AI agent workspaces with plugin synchronization",
5
5
  "type": "module",
6
6
  "bin": {