claudemesh-cli 1.20.0 → 1.20.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/entrypoints/cli.js
CHANGED
|
@@ -88,7 +88,7 @@ __export(exports_urls, {
|
|
|
88
88
|
VERSION: () => VERSION,
|
|
89
89
|
URLS: () => URLS
|
|
90
90
|
});
|
|
91
|
-
var URLS, VERSION = "1.20.
|
|
91
|
+
var URLS, VERSION = "1.20.1", env;
|
|
92
92
|
var init_urls = __esm(() => {
|
|
93
93
|
URLS = {
|
|
94
94
|
BROKER: process.env.CLAUDEMESH_BROKER_URL ?? "wss://ic.claudemesh.com/ws",
|
|
@@ -3667,14 +3667,15 @@ async function runLaunchWizard(opts) {
|
|
|
3667
3667
|
spinner.stop();
|
|
3668
3668
|
const choice = await menuSelect({
|
|
3669
3669
|
title: "Select mesh",
|
|
3670
|
-
items: opts.meshes.map((m) => m.slug),
|
|
3670
|
+
items: opts.meshes.map((m) => m.name && m.name !== m.slug ? `${m.name} \x1B[2m(${m.slug})\x1B[0m` : m.slug),
|
|
3671
3671
|
row
|
|
3672
3672
|
});
|
|
3673
3673
|
mesh = opts.meshes[choice];
|
|
3674
3674
|
for (let i = 0;i < opts.meshes.length + 1; i++) {
|
|
3675
3675
|
writeCentered(row + i, " ");
|
|
3676
3676
|
}
|
|
3677
|
-
|
|
3677
|
+
const meshLabel = mesh.name && mesh.name !== mesh.slug ? `${mesh.name} (${mesh.slug})` : mesh.slug;
|
|
3678
|
+
writeCentered(row, `Mesh ${green("✓")} ${meshLabel}`);
|
|
3678
3679
|
spinner.start();
|
|
3679
3680
|
row++;
|
|
3680
3681
|
}
|
|
@@ -16206,4 +16207,4 @@ main().catch((err) => {
|
|
|
16206
16207
|
process.exit(EXIT.INTERNAL_ERROR);
|
|
16207
16208
|
});
|
|
16208
16209
|
|
|
16209
|
-
//# debugId=
|
|
16210
|
+
//# debugId=F81EA97B92E1F36F64756E2164756E21
|