@robbiesrobotics/alice-agents 1.5.6 → 1.5.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.
Files changed (2) hide show
  1. package/lib/installer.mjs +15 -10
  2. package/package.json +1 -1
package/lib/installer.mjs CHANGED
@@ -447,7 +447,7 @@ function printBanner() {
447
447
  console.log(` ${dim('│')} ${dim('Adaptive Learning & Intelligent Coordination')} ${dim('│')}`);
448
448
  console.log(` ${dim('│')} ${dim('Engine — Multi-Agent Orchestration')} ${dim('│')}`);
449
449
  console.log(` ${dim('│')} ${dim('│')}`);
450
- console.log(` ${dim('│')} ${dim('v' + version)} ${green('●')} ${dim('10 starter agents, one team')} ${dim('│')}`);
450
+ console.log(` ${dim('│')} ${dim('v' + version)} ${green('●')} ${dim('31 AI agents, one team')} ${dim('│')}`);
451
451
  console.log(` ${dim('│')} ${dim('│')}`);
452
452
  console.log(` ${dim('╰──────────────────────────────────────────────╯')}`);
453
453
  console.log('');
@@ -479,7 +479,7 @@ function printSummaryWithOptions(mode, tier, agents, preset, userInfo, detectedM
479
479
  `${dim('Model:')} ${green(modelLabel)}`,
480
480
  `${dim('User:')} ${green(userInfo.name)}`,
481
481
  `${dim('Timezone:')} ${green(userInfo.timezone)}`,
482
- `${dim('Cloud:')} ${green(missionControl?.enabled ? 'enabled' : 'local only')}`,
482
+ `${dim('Cloud:')} ${missionControl?.enabled ? (isCloudAuthenticated() ? green('connected') : yellow('enabled (setup pending)')) : dim('local only')}`,
483
483
  ...(missionControl?.enabled
484
484
  ? [
485
485
  `${dim('Dashboard:')} ${green(missionControl.dashboardUrl)}`,
@@ -526,20 +526,18 @@ async function _runCloudOnboarding(auto, options, existingMissionControl) {
526
526
  writeCloudJson(cloudData);
527
527
  printStepDone('Cloud token saved');
528
528
  } else if (!auto) {
529
- // Interactive: open browser and prompt for token using our own readline
530
- console.log(` ${dim('A.L.I.C.E. Cloud uses your GitHub account for authentication.')}`);
531
- console.log(` ${dim('We\'ll open your browser to sign in, then you\'ll paste a token back here.')}`);
529
+ // Interactive: open the dashboard login page and prompt for token
530
+ console.log(` ${dim('Sign in to A.L.I.C.E. | Control to connect your local gateway.')}`);
531
+ console.log(` ${dim('We\'ll open the login page after signing in, copy the access token shown.')}`);
532
532
  console.log('');
533
533
 
534
534
  try {
535
535
  const open = (await import('open')).default;
536
- const supabaseUrl = 'https://xxxgvtwnlbtdgmlgccee.supabase.co';
537
- const oauthUrl = `${supabaseUrl}/auth/v1/authorize?provider=github&redirect_to=${encodeURIComponent('https://alice.av3.ai/api/cloud/auth/callback')}`;
538
- await open(oauthUrl);
539
- console.log(` ${green('Browser opened!')} Sign in with GitHub and copy the token shown.`);
536
+ await open('https://alice.av3.ai/login?cli=1');
537
+ console.log(` ${green('Browser opened!')} Sign in and copy the access token shown.`);
540
538
  } catch {
541
539
  console.log(` ${yellow('Could not open browser.')} Visit this URL to sign in:`);
542
- console.log(` ${cyan('https://alice.av3.ai/login')}`);
540
+ console.log(` ${cyan('https://alice.av3.ai/login?cli=1')}`);
543
541
  }
544
542
  console.log('');
545
543
 
@@ -1003,9 +1001,16 @@ export async function runInstall(options = {}) {
1003
1001
  console.log(` ${icons.info} ${dim('Runtime: OpenClaw')}`);
1004
1002
  }
1005
1003
  console.log('');
1004
+ if (missionControl?.enabled && !isCloudAuthenticated()) {
1005
+ console.log(` ${yellow('☁️ Cloud setup pending:')} ${cyan('alice-cloud login && alice-cloud register')}`);
1006
+ console.log('');
1007
+ }
1006
1008
  console.log(` ${dim('Manage skills:')} ${cyan('npx @robbiesrobotics/alice-agents --skills')}`);
1007
1009
  console.log(` ${dim('Health check:')} ${cyan('npx @robbiesrobotics/alice-agents --doctor')}`);
1008
1010
  console.log(` ${dim('Restart runtime:')} ${cyan('openclaw gateway restart')}`);
1011
+ if (missionControl?.enabled) {
1012
+ console.log(` ${dim('Cloud dashboard:')} ${cyan('https://alice.av3.ai')}`);
1013
+ }
1009
1014
  console.log('');
1010
1015
  printSeparator();
1011
1016
  console.log('');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@robbiesrobotics/alice-agents",
3
- "version": "1.5.6",
3
+ "version": "1.5.7",
4
4
  "description": "A.L.I.C.E. \u2014 31 AI agents for OpenClaw. One conversation, one team.",
5
5
  "bin": {
6
6
  "alice-agents": "bin/alice-install.mjs",