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.
@@ -23,6 +23,6 @@ export async function setupRouter() {
23
23
  }
24
24
 
25
25
  const venvPython = ensureVenv(python.bin);
26
- installRouter();
26
+ await installRouter();
27
27
  return { venvPython, pythonVersion: python.version };
28
28
  }
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
- // ── Claim link output (provisioning already happened at Step 1.5) ─────
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 dashboard: ${claimUrl}`);
300
- } else {
301
- info('Dashboard: https://robotresources.ai/dashboard');
300
+ info(` Claim link (share with your human): ${claimUrl}`);
302
301
  }
303
302
  }
304
303
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "robot-resources",
3
- "version": "1.3.5",
3
+ "version": "1.3.7",
4
4
  "description": "Robot Resources — AI agent runtime tools. One command to install everything.",
5
5
  "type": "module",
6
6
  "bin": {