robot-resources 1.3.5 → 1.3.7
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/lib/python-bridge.js +1 -1
- package/lib/wizard.js +4 -5
- package/package.json +1 -1
package/lib/python-bridge.js
CHANGED
package/lib/wizard.js
CHANGED
|
@@ -5,7 +5,6 @@ import { installService, isServiceRunning, isServiceInstalled } from './service.
|
|
|
5
5
|
import { configureAgentMCP } from './mcp-config.js';
|
|
6
6
|
import { configureToolRouting } from './tool-config.js';
|
|
7
7
|
import { header, step, success, warn, error, info, blank, summary } from './ui.js';
|
|
8
|
-
|
|
9
8
|
/**
|
|
10
9
|
* Main setup wizard. Handles the full onboarding flow:
|
|
11
10
|
* 1. Router installation (Python venv + pip)
|
|
@@ -290,15 +289,15 @@ export async function runWizard({ nonInteractive = false } = {}) {
|
|
|
290
289
|
|
|
291
290
|
summary(lines);
|
|
292
291
|
|
|
293
|
-
// ──
|
|
292
|
+
// ── Dashboard link (provisioning already happened at Step 1.5) ──────────
|
|
294
293
|
|
|
295
294
|
if (somethingInstalled) {
|
|
296
295
|
blank();
|
|
297
296
|
const claimUrl = results.claimUrl || readConfig().claim_url;
|
|
297
|
+
success('Dashboard ready!');
|
|
298
|
+
info(' https://robotresources.ai/dashboard');
|
|
298
299
|
if (claimUrl) {
|
|
299
|
-
info(`Claim your
|
|
300
|
-
} else {
|
|
301
|
-
info('Dashboard: https://robotresources.ai/dashboard');
|
|
300
|
+
info(` Claim link (share with your human): ${claimUrl}`);
|
|
302
301
|
}
|
|
303
302
|
}
|
|
304
303
|
|