@sulala/agent-os 0.1.17 → 0.1.18
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/cli.js +5 -0
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -16387,6 +16387,11 @@ async function cmdOnboard() {
|
|
|
16387
16387
|
await new Promise((r) => setTimeout(r, 1500));
|
|
16388
16388
|
}
|
|
16389
16389
|
openDashboard();
|
|
16390
|
+
const token = await getDashboardSecret();
|
|
16391
|
+
console.log("");
|
|
16392
|
+
console.log("Dashboard login token (copy and paste in the dashboard):");
|
|
16393
|
+
console.log(token);
|
|
16394
|
+
console.log("");
|
|
16390
16395
|
}
|
|
16391
16396
|
var NPM_PACKAGE = "@sulala/agent-os";
|
|
16392
16397
|
async function cmdUpdate() {
|