@robbiesrobotics/alice-agents 1.5.5 → 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.
- package/README.md +7 -7
- package/bin/alice-install.mjs +10 -10
- package/lib/doctor.mjs +5 -5
- package/lib/installer.mjs +16 -11
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -18,10 +18,10 @@ That's it. The installer detects your runtime (NemoClaw or OpenClaw) and sets ev
|
|
|
18
18
|
|
|
19
19
|
**Starter** includes 10 agents. **Pro** unlocks 21 more — [sign up at getalice.av3.ai](https://getalice.av3.ai/signup?plan=pro)
|
|
20
20
|
|
|
21
|
-
**
|
|
21
|
+
**A.L.I.C.E. | Control Cloud** is available as a Pro add-on. If enabled during install, the package now:
|
|
22
22
|
- installs the `mission-control-bridge` plugin into your OpenClaw home
|
|
23
|
-
- writes a portable local
|
|
24
|
-
- enables the bridge in `openclaw.json` so your runtime can forward live telemetry to
|
|
23
|
+
- writes a portable local A.L.I.C.E. | Control config at `~/.openclaw/.alice-mission-control.json`
|
|
24
|
+
- enables the bridge in `openclaw.json` so your runtime can forward live telemetry to A.L.I.C.E. | Control
|
|
25
25
|
- installs a bundled `coding-agent` skill that prefers Codex for OpenAI defaults and Claude Code for Anthropic defaults
|
|
26
26
|
|
|
27
27
|
An orchestrator (A.L.I.C.E., also addressable as Alice or Olivia) backed by specialist agents across every domain:
|
|
@@ -85,7 +85,7 @@ npx @robbiesrobotics/alice-agents
|
|
|
85
85
|
# Non-interactive with defaults (detected model if available, otherwise Sonnet; Starter tier unless --tier pro)
|
|
86
86
|
npx @robbiesrobotics/alice-agents --yes
|
|
87
87
|
|
|
88
|
-
# Non-interactive Pro install with
|
|
88
|
+
# Non-interactive Pro install with A.L.I.C.E. | Control Cloud enabled
|
|
89
89
|
npx @robbiesrobotics/alice-agents --yes --tier pro --license-key YOUR_KEY --cloud --cloud-token YOUR_TOKEN
|
|
90
90
|
|
|
91
91
|
# Force the coding tool preference for this install
|
|
@@ -101,11 +101,11 @@ npx @robbiesrobotics/alice-agents --help
|
|
|
101
101
|
- **Merge** — Adds A.L.I.C.E. agents alongside your existing agents
|
|
102
102
|
- **Upgrade** — Updates product files (SOUL.md, AGENTS.md, etc.) without touching user customizations
|
|
103
103
|
|
|
104
|
-
###
|
|
104
|
+
### A.L.I.C.E. | Control Cloud
|
|
105
105
|
|
|
106
|
-
If you're a Pro user with the cloud add-on, the installer can configure your local runtime for
|
|
106
|
+
If you're a Pro user with the cloud add-on, the installer can configure your local runtime for A.L.I.C.E. | Control in the same pass.
|
|
107
107
|
|
|
108
|
-
- Interactive install: choose `Pro`, validate your license, then enable the
|
|
108
|
+
- Interactive install: choose `Pro`, validate your license, then enable the A.L.I.C.E. | Control Cloud add-on when prompted
|
|
109
109
|
- Non-interactive install: pass `--tier pro --license-key YOUR_KEY --cloud`
|
|
110
110
|
- Optional flags:
|
|
111
111
|
- `--cloud-token <token>` — access or ingest token for authenticated telemetry
|
package/bin/alice-install.mjs
CHANGED
|
@@ -32,7 +32,7 @@ if (flags.has('--help') || flags.has('-h')) {
|
|
|
32
32
|
npx @robbiesrobotics/alice-agents --uninstall Remove A.L.I.C.E. agents from config
|
|
33
33
|
npx @robbiesrobotics/alice-agents --doctor Run diagnostics on your A.L.I.C.E. install
|
|
34
34
|
npx @robbiesrobotics/alice-agents --skills Manage skills (install, remove, browse)
|
|
35
|
-
npx @robbiesrobotics/alice-agents --cloud Enable
|
|
35
|
+
npx @robbiesrobotics/alice-agents --cloud Enable A.L.I.C.E. | Control Cloud during install
|
|
36
36
|
npx @robbiesrobotics/alice-agents --version Show version
|
|
37
37
|
npx @robbiesrobotics/alice-agents --help Show this help
|
|
38
38
|
|
|
@@ -41,18 +41,18 @@ if (flags.has('--help') || flags.has('-h')) {
|
|
|
41
41
|
--update Non-interactive upgrade (alias for --yes with upgrade mode)
|
|
42
42
|
--uninstall Remove A.L.I.C.E. agents (preserves non-ALICE agents)
|
|
43
43
|
--doctor Run diagnostics and check install health
|
|
44
|
-
--cloud Enable
|
|
45
|
-
--no-cloud Skip
|
|
44
|
+
--cloud Enable A.L.I.C.E. | Control Cloud setup during install
|
|
45
|
+
--no-cloud Skip A.L.I.C.E. | Control Cloud setup during install
|
|
46
46
|
--tier <starter|pro> Force the install tier
|
|
47
47
|
--license-key <key> Provide a Pro license key for automation
|
|
48
48
|
--coding-tool <auto|claude|codex> Override the preferred coding CLI
|
|
49
|
-
--cloud-token <token>
|
|
50
|
-
--cloud-dashboard-url <url>
|
|
51
|
-
--cloud-ingest-url <url>
|
|
52
|
-
--cloud-team-id <id>
|
|
53
|
-
--cloud-team-slug <slug>
|
|
54
|
-
--cloud-team-name <name>
|
|
55
|
-
--cloud-team-plan <plan>
|
|
49
|
+
--cloud-token <token> A.L.I.C.E. | Control ingest/access token
|
|
50
|
+
--cloud-dashboard-url <url> A.L.I.C.E. | Control dashboard URL
|
|
51
|
+
--cloud-ingest-url <url> A.L.I.C.E. | Control ingest endpoint
|
|
52
|
+
--cloud-team-id <id> A.L.I.C.E. | Control team UUID
|
|
53
|
+
--cloud-team-slug <slug> A.L.I.C.E. | Control team slug
|
|
54
|
+
--cloud-team-name <name> A.L.I.C.E. | Control team name
|
|
55
|
+
--cloud-team-plan <plan> A.L.I.C.E. | Control team plan
|
|
56
56
|
--version Print package version
|
|
57
57
|
`);
|
|
58
58
|
process.exit(0);
|
package/lib/doctor.mjs
CHANGED
|
@@ -353,22 +353,22 @@ export async function runDoctor() {
|
|
|
353
353
|
|
|
354
354
|
check(
|
|
355
355
|
cloudOk
|
|
356
|
-
? `
|
|
357
|
-
: '
|
|
356
|
+
? `A.L.I.C.E. | Control cloud configured (${cloud.dashboardUrl})`
|
|
357
|
+
: 'A.L.I.C.E. | Control cloud config incomplete',
|
|
358
358
|
cloudOk,
|
|
359
359
|
'Run: npx @robbiesrobotics/alice-agents --cloud to repair cloud settings'
|
|
360
360
|
);
|
|
361
361
|
allOk = allOk && cloudOk;
|
|
362
362
|
} catch {
|
|
363
363
|
check(
|
|
364
|
-
'
|
|
364
|
+
'A.L.I.C.E. | Control cloud config invalid',
|
|
365
365
|
false,
|
|
366
|
-
'Repair
|
|
366
|
+
'Repair config or rerun the installer with --cloud'
|
|
367
367
|
);
|
|
368
368
|
allOk = false;
|
|
369
369
|
}
|
|
370
370
|
} else {
|
|
371
|
-
console.log(` ${dim('–')} ${dim('
|
|
371
|
+
console.log(` ${dim('–')} ${dim('A.L.I.C.E. | Control cloud not configured (optional)')}`);
|
|
372
372
|
}
|
|
373
373
|
|
|
374
374
|
// 9. Skills disk check
|
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('
|
|
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:')} ${
|
|
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
|
|
530
|
-
console.log(` ${dim('A.L.I.C.E.
|
|
531
|
-
console.log(` ${dim('We\'ll open
|
|
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
|
-
|
|
537
|
-
|
|
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
|
|
|
@@ -584,7 +582,7 @@ async function _runCloudOnboarding(auto, options, existingMissionControl) {
|
|
|
584
582
|
}
|
|
585
583
|
}
|
|
586
584
|
} else {
|
|
587
|
-
printStepSkip('
|
|
585
|
+
printStepSkip('A.L.I.C.E. | Control', 'no token provided — run `alice-cloud login` later');
|
|
588
586
|
}
|
|
589
587
|
} catch (err) {
|
|
590
588
|
console.log(` ${icons.warn} ${yellow('Cloud setup encountered an issue: ' + (err.message || 'unknown error'))}`);
|
|
@@ -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('');
|