@robbiesrobotics/alice-agents 1.5.0 → 1.5.2
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 +4 -2
- package/lib/installer.mjs +6 -0
- package/lib/prompter.mjs +14 -3
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
**Adaptive Learning & Intelligent Coordination Engine**
|
|
4
4
|
|
|
5
|
-
One conversation. One orchestrator. Ten starter agents — with
|
|
5
|
+
One conversation. One orchestrator. Ten starter agents — with 21 more in Pro. A.L.I.C.E. turns your agent runtime into a full AI team — talk to A.L.I.C.E. (or just Alice), and she routes your request to the right expert.
|
|
6
6
|
|
|
7
7
|
**NemoClaw compatible** — A.L.I.C.E. v1.2.7+ runs natively on [NVIDIA NemoClaw](https://nvidia.com/nemoclaw), the secure open-source agent runtime. Agents execute inside the OpenShell sandbox for enterprise-grade security.
|
|
8
8
|
|
|
@@ -16,7 +16,7 @@ That's it. The installer detects your runtime (NemoClaw or OpenClaw) and sets ev
|
|
|
16
16
|
|
|
17
17
|
## What You Get
|
|
18
18
|
|
|
19
|
-
**Starter** includes 10 agents. **Pro** unlocks
|
|
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
|
**Mission 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
|
|
@@ -56,6 +56,8 @@ An orchestrator (A.L.I.C.E., also addressable as Alice or Olivia) backed by spec
|
|
|
56
56
|
| **Logan** | Legal | ⚖️ | Pro |
|
|
57
57
|
| **Eva** | Executive Assistant | 📌 | Pro |
|
|
58
58
|
| **Parker** | Project Management | 📅 | Pro |
|
|
59
|
+
| **Aria** | Autonomous Research | 🔬 | Pro |
|
|
60
|
+
| **Nate** | n8n Automation | 🔧 | Pro |
|
|
59
61
|
|
|
60
62
|
## Model Flexibility
|
|
61
63
|
|
package/lib/installer.mjs
CHANGED
|
@@ -16,6 +16,7 @@ import {
|
|
|
16
16
|
promptLicenseKey,
|
|
17
17
|
promptCloudAddon,
|
|
18
18
|
promptMissionControlToken,
|
|
19
|
+
promptMissionControlWorkerToken,
|
|
19
20
|
confirm,
|
|
20
21
|
choose,
|
|
21
22
|
input,
|
|
@@ -726,6 +727,10 @@ export async function runInstall(options = {}) {
|
|
|
726
727
|
auto
|
|
727
728
|
? String(options.cloudToken || '').trim()
|
|
728
729
|
: String(options.cloudToken || await promptMissionControlToken()).trim();
|
|
730
|
+
const workerToken =
|
|
731
|
+
auto
|
|
732
|
+
? String(options.cloudWorkerToken || '').trim()
|
|
733
|
+
: String(options.cloudWorkerToken || await promptMissionControlWorkerToken(ingestToken)).trim();
|
|
729
734
|
const sourceNode =
|
|
730
735
|
String(options.cloudSourceNode || existingMissionControl?.sourceNode || defaults.sourceNode).trim();
|
|
731
736
|
|
|
@@ -741,6 +746,7 @@ export async function runInstall(options = {}) {
|
|
|
741
746
|
teamPlan: String(options.cloudTeamPlan || existingMissionControl?.teamPlan || '').trim(),
|
|
742
747
|
hasIngestToken: !!ingestToken,
|
|
743
748
|
ingestToken,
|
|
749
|
+
workerToken,
|
|
744
750
|
};
|
|
745
751
|
}
|
|
746
752
|
}
|
package/lib/prompter.mjs
CHANGED
|
@@ -136,8 +136,19 @@ export async function promptCloudAddon() {
|
|
|
136
136
|
|
|
137
137
|
export async function promptMissionControlToken() {
|
|
138
138
|
console.log('');
|
|
139
|
-
console.log(' Enter your Mission Control
|
|
140
|
-
console.log('
|
|
139
|
+
console.log(' Enter your Mission Control Ingest Token from your purchase email.');
|
|
140
|
+
console.log(' It looks like: mc_ingest_[64 hex chars]');
|
|
141
|
+
console.log(' You can find it in the "A.L.I.C.E. Pro License Delivered" email.');
|
|
142
|
+
console.log(' Press Enter to skip — you can add it later.');
|
|
141
143
|
console.log('');
|
|
142
|
-
return input(' Mission Control
|
|
144
|
+
return input(' Mission Control Ingest Token', '');
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
export async function promptMissionControlWorkerToken(ingestToken = '') {
|
|
148
|
+
if (!ingestToken) return '';
|
|
149
|
+
console.log('');
|
|
150
|
+
console.log(' Enter your Mission Control Worker Token from the same purchase email.');
|
|
151
|
+
console.log(' It looks like: mc_worker_[64 hex chars]');
|
|
152
|
+
console.log('');
|
|
153
|
+
return input(' Mission Control Worker Token', '');
|
|
143
154
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@robbiesrobotics/alice-agents",
|
|
3
|
-
"version": "1.5.
|
|
4
|
-
"description": "A.L.I.C.E.
|
|
3
|
+
"version": "1.5.2",
|
|
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"
|
|
7
7
|
},
|
|
@@ -38,4 +38,4 @@
|
|
|
38
38
|
"publishConfig": {
|
|
39
39
|
"access": "public"
|
|
40
40
|
}
|
|
41
|
-
}
|
|
41
|
+
}
|