allagents 0.32.0-next.2 → 0.32.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 +10 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -21419,7 +21419,10 @@ function resolveClientMappings(clients, baseMappings) {
|
|
|
21419
21419
|
vscode: { ...baseMappings.copilot }
|
|
21420
21420
|
};
|
|
21421
21421
|
}
|
|
21422
|
-
|
|
21422
|
+
function getDisplayName(client) {
|
|
21423
|
+
return CLIENT_DISPLAY_ALIASES[client] ?? client;
|
|
21424
|
+
}
|
|
21425
|
+
var CLIENT_MAPPINGS, CANONICAL_SKILLS_PATH = ".agents/skills/", USER_CLIENT_MAPPINGS, CLIENT_DISPLAY_ALIASES;
|
|
21423
21426
|
var init_client_mapping = __esm(() => {
|
|
21424
21427
|
CLIENT_MAPPINGS = {
|
|
21425
21428
|
claude: {
|
|
@@ -21637,6 +21640,9 @@ var init_client_mapping = __esm(() => {
|
|
|
21637
21640
|
agentFile: "AGENTS.md"
|
|
21638
21641
|
}
|
|
21639
21642
|
};
|
|
21643
|
+
CLIENT_DISPLAY_ALIASES = {
|
|
21644
|
+
vscode: "copilot"
|
|
21645
|
+
};
|
|
21640
21646
|
});
|
|
21641
21647
|
|
|
21642
21648
|
// src/utils/symlink.ts
|
|
@@ -26432,7 +26438,8 @@ function classifyCopyResults(copyResults) {
|
|
|
26432
26438
|
const classification = classifyDestination(result.destination);
|
|
26433
26439
|
if (!classification)
|
|
26434
26440
|
continue;
|
|
26435
|
-
const {
|
|
26441
|
+
const { artifactType } = classification;
|
|
26442
|
+
const client = getDisplayName(classification.client);
|
|
26436
26443
|
let counts = clientCounts.get(client);
|
|
26437
26444
|
if (!counts) {
|
|
26438
26445
|
counts = { skills: 0, commands: 0, agents: 0, hooks: 0 };
|
|
@@ -28974,7 +28981,7 @@ var package_default;
|
|
|
28974
28981
|
var init_package = __esm(() => {
|
|
28975
28982
|
package_default = {
|
|
28976
28983
|
name: "allagents",
|
|
28977
|
-
version: "0.32.
|
|
28984
|
+
version: "0.32.1",
|
|
28978
28985
|
description: "CLI tool for managing multi-repo AI agent workspaces with plugin synchronization",
|
|
28979
28986
|
type: "module",
|
|
28980
28987
|
bin: {
|