@robbiesrobotics/alice-agents 1.2.6 → 1.2.8

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 CHANGED
@@ -1,8 +1,10 @@
1
- # 🧠 A.L.I.C.E. — AI Agent Framework for OpenClaw
1
+ # 🧠 A.L.I.C.E. — AI Agent Framework for NemoClaw & OpenClaw
2
2
 
3
3
  **Adaptive Learning & Intelligent Coordination Engine**
4
4
 
5
- One conversation. One orchestrator. Ten starter agents — with 18 more in Pro. A.L.I.C.E. turns OpenClaw into a full AI team — talk to Olivia, and she routes your request to the right expert.
5
+ One conversation. One orchestrator. Ten starter agents — with 18 more in Pro. A.L.I.C.E. turns your agent runtime into a full AI team — talk to Olivia, and she routes your request to the right expert.
6
+
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.
6
8
 
7
9
  ## Quick Start
8
10
 
@@ -10,7 +12,7 @@ One conversation. One orchestrator. Ten starter agents — with 18 more in Pro.
10
12
  npx @robbiesrobotics/alice-agents
11
13
  ```
12
14
 
13
- That's it. The installer detects your OpenClaw installation, asks a few questions, and sets up everything.
15
+ That's it. The installer detects your runtime (NemoClaw or OpenClaw) and sets everything up. If neither is installed, it will offer to install NemoClaw — the recommended option.
14
16
 
15
17
  ## What You Get
16
18
 
@@ -55,7 +57,7 @@ An orchestrator (Olivia) backed by specialist agents across every domain:
55
57
  |--------|--------|----------|
56
58
  | **Sonnet** (default) | claude-sonnet-4-6 for all | Balanced speed + quality |
57
59
  | **Opus + Sonnet** | Opus for orchestrator, Sonnet for specialists | Maximum orchestration quality |
58
- | **OpenAI** | GPT-4.1 / GPT-4.1-mini | OpenAI users |
60
+ | **OpenAI** | GPT-5.4 / GPT-5.4-mini | OpenAI users |
59
61
  | **Local (Ollama)** | Local models | Privacy, offline use |
60
62
  | **Custom** | Your choice | Full control |
61
63
 
@@ -117,16 +119,18 @@ A.L.I.C.E. runs on any OpenClaw-compatible runtime:
117
119
 
118
120
  | Runtime | Status | Notes |
119
121
  |---------|--------|-------|
120
- | **OpenClaw** | ✅ Fully supported | Default. [openclaw.com](https://openclaw.com) |
121
- | **NemoClaw** | ✅ Fully supported | NVIDIA's enterprise distribution. Agents run inside OpenShell sandbox. |
122
+ | **NemoClaw** | ✅ Recommended | NVIDIA's secure distribution. Agents run inside OpenShell sandbox. [Get NemoClaw](https://nvidia.com/nemoclaw) |
123
+ | **OpenClaw** | ✅ Fully supported | Lightweight option. [openclaw.ai](https://openclaw.ai) |
124
+
125
+ ### Why NemoClaw?
122
126
 
123
- ### NemoClaw Users
127
+ NemoClaw is NVIDIA's open-source, enterprise-grade distribution of OpenClaw. It adds the OpenShell security sandbox — isolating what agents can access on your machine, enforcing policy-based guardrails, and keeping your data private. A.L.I.C.E. is NemoClaw-native as of v1.2.7: the installer defaults to NemoClaw, and agents display their sandbox status on startup.
124
128
 
125
- If you're running NemoClaw (NVIDIA's enterprise OpenClaw distribution), A.L.I.C.E. agents are fully compatible. Your OpenShell security policies will apply to all A.L.I.C.E. agent tool use this is expected behavior and adds enterprise-grade security to your AI team.
129
+ If you're already running NemoClaw, A.L.I.C.E. works out of the boxno extra config needed.
126
130
 
127
131
  ## Requirements
128
132
 
129
- - [OpenClaw](https://openclaw.com) or [NemoClaw](https://nemoclaw.com) installed and configured
133
+ - [OpenClaw](https://openclaw.ai) or [NemoClaw](https://nemoclaw.com) installed and configured
130
134
  - Node.js 18+
131
135
  - At least one AI provider configured (Anthropic, OpenAI, or Ollama)
132
136
 
@@ -54,12 +54,12 @@ function getModelConfig(preset, customModels) {
54
54
  };
55
55
  case 'openai':
56
56
  return {
57
- primary: 'openai/gpt-4.1-mini',
58
- orchestrator: 'openai/gpt-4.1',
59
- fallbacks: ['openai/gpt-4.1', 'openai/gpt-4.1-mini'],
57
+ primary: 'openai/gpt-5.4-mini',
58
+ orchestrator: 'openai/gpt-5.4',
59
+ fallbacks: ['openai/gpt-5.4', 'openai/gpt-5.4-mini'],
60
60
  models: {
61
- 'openai/gpt-4.1': {},
62
- 'openai/gpt-4.1-mini': {},
61
+ 'openai/gpt-5.4': {},
62
+ 'openai/gpt-5.4-mini': {},
63
63
  },
64
64
  };
65
65
  case 'local':
package/lib/installer.mjs CHANGED
@@ -12,6 +12,7 @@ import {
12
12
  promptCustomModel,
13
13
  promptTier,
14
14
  confirm,
15
+ choose,
15
16
  input,
16
17
  closePrompt,
17
18
  detectUserName,
@@ -99,60 +100,54 @@ async function checkForOpenClawUpdate(auto) {
99
100
  }
100
101
  }
101
102
 
102
- async function installOpenClaw(auto) {
103
- console.log(' ⚠️ OpenClaw is not installed.\n');
103
+ async function installRuntime(auto) {
104
+ console.log(' ⚠️ No agent runtime detected.\n');
105
+ console.log(' A.L.I.C.E. requires a compatible runtime. We recommend NemoClaw —');
106
+ console.log(" NVIDIA's secure, open-source distribution that includes OpenClaw");
107
+ console.log(' plus enterprise-grade security (OpenShell sandbox, local AI models).\n');
104
108
 
105
- if (!auto) {
106
- const shouldInstall = await confirm(' Would you like to install OpenClaw now?');
107
- if (!shouldInstall) {
108
- console.log('\n Install OpenClaw manually:');
109
- console.log(' npm install -g openclaw');
110
- console.log(' openclaw configure');
111
- console.log(`\n Then re-run: npx @robbiesrobotics/alice-agents\n`);
112
- process.exit(0);
109
+ let choice;
110
+ if (auto) {
111
+ choice = 'nemoclaw';
112
+ } else {
113
+ choice = await choose(' Which would you like to install?', [
114
+ { label: 'NemoClaw (Recommended)', value: 'nemoclaw' },
115
+ { label: 'OpenClaw only', value: 'openclaw' },
116
+ ]);
117
+ }
118
+
119
+ if (choice === 'nemoclaw') {
120
+ console.log(' 📦 Installing NemoClaw...\n');
121
+ try {
122
+ execSync('curl -fsSL https://nvidia.com/nemoclaw.sh | bash', { stdio: 'inherit' });
123
+ console.log('\n ✔ NemoClaw installed — agents will run in OpenShell sandbox\n');
124
+ } catch (err) {
125
+ console.error('\n ❌ Failed to install NemoClaw. Try manually:');
126
+ console.error(' curl -fsSL https://nvidia.com/nemoclaw.sh | bash\n');
127
+ process.exit(1);
128
+ }
129
+ } else {
130
+ console.log(' 📦 Installing OpenClaw...\n');
131
+ try {
132
+ execSync('npm install -g openclaw', { stdio: 'inherit' });
133
+ console.log('\n ✔ OpenClaw installed\n');
134
+ } catch (err) {
135
+ console.error('\n ❌ Failed to install OpenClaw. Try manually:');
136
+ console.error(' npm install -g openclaw\n');
137
+ process.exit(1);
113
138
  }
114
139
  }
115
140
 
116
- console.log(' 📦 Installing OpenClaw...\n');
141
+ // Run openclaw configure
117
142
  try {
118
- execSync('npm install -g openclaw', { stdio: 'inherit' });
119
- console.log('\n ✓ OpenClaw installed\n');
120
- } catch (err) {
121
- console.error('\n Failed to install OpenClaw. Try manually:');
122
- console.error(' npm install -g openclaw\n');
143
+ execSync('openclaw configure', { stdio: 'inherit' });
144
+ console.log('\n ✓ OpenClaw configured\n');
145
+ } catch {
146
+ console.error('\n ⚠️ Configuration incomplete. Run manually:');
147
+ console.error(' openclaw configure');
148
+ console.error(` Then: npx @robbiesrobotics/alice-agents\n`);
123
149
  process.exit(1);
124
150
  }
125
-
126
- // Check if openclaw needs configuration
127
- if (!configExists()) {
128
- console.log(' OpenClaw needs initial configuration before A.L.I.C.E. can be set up.');
129
- console.log(' This will set up your API keys, channels, and preferences.\n');
130
-
131
- if (!auto) {
132
- const shouldConfigure = await confirm(' Run openclaw configure now?');
133
- if (shouldConfigure) {
134
- try {
135
- execSync('openclaw configure', { stdio: 'inherit' });
136
- console.log('\n ✓ OpenClaw configured\n');
137
- } catch {
138
- console.error('\n ⚠️ Configuration incomplete. Run manually:');
139
- console.error(' openclaw configure');
140
- console.error(` npx @robbiesrobotics/alice-agents\n`);
141
- process.exit(1);
142
- }
143
- } else {
144
- console.log('\n Run these commands when ready:');
145
- console.log(' openclaw configure');
146
- console.log(` npx @robbiesrobotics/alice-agents\n`);
147
- process.exit(0);
148
- }
149
- } else {
150
- console.error(' ❌ OpenClaw is installed but not configured.');
151
- console.error(' Run: openclaw configure');
152
- console.error(` Then: npx @robbiesrobotics/alice-agents\n`);
153
- process.exit(1);
154
- }
155
- }
156
151
  }
157
152
 
158
153
  const __dirname = dirname(fileURLToPath(import.meta.url));
@@ -214,7 +209,7 @@ export async function runInstall(options = {}) {
214
209
 
215
210
  // 1. Detect OpenClaw — offer to install if missing
216
211
  if (!isOpenClawInstalled() || !configExists()) {
217
- await installOpenClaw(auto);
212
+ await installRuntime(auto);
218
213
  }
219
214
 
220
215
  // Final check
@@ -228,9 +223,10 @@ export async function runInstall(options = {}) {
228
223
 
229
224
  const runtime = await detectRuntime();
230
225
  if (runtime === 'nemoclaw') {
231
- console.log(' ✔ NemoClaw detected — agents will run inside OpenShell sandbox\n');
226
+ console.log(' ✔ NemoClaw detected — agents will run in OpenShell sandbox (secure mode)\n');
232
227
  } else {
233
228
  console.log(' ✔ OpenClaw detected\n');
229
+ console.log(' 💡 Tip: Upgrade to NemoClaw for enterprise security: https://nvidia.com/nemoclaw\n');
234
230
  }
235
231
 
236
232
  const allAgents = loadAgentRegistry();
@@ -362,6 +358,10 @@ export async function runInstall(options = {}) {
362
358
  console.log(' ✓ Manifest written');
363
359
 
364
360
  console.log(`\n 🎉 A.L.I.C.E. installed! ${agentCount} agents ready.`);
361
+ const finalRuntime = await detectRuntime();
362
+ if (finalRuntime === 'nemoclaw') {
363
+ console.log(' 🔒 Running in secure mode — OpenShell sandbox active\n');
364
+ }
365
365
  console.log(' Restart OpenClaw to activate: openclaw gateway restart\n');
366
366
  }
367
367
 
package/lib/prompter.mjs CHANGED
@@ -82,7 +82,7 @@ export async function promptModelPreset() {
82
82
  return choose('Model preset:', [
83
83
  { label: 'Sonnet (recommended) — claude-sonnet-4-6 for all agents', value: 'sonnet' },
84
84
  { label: 'Opus + Sonnet — Opus for orchestrator, Sonnet for specialists', value: 'opus-sonnet' },
85
- { label: 'OpenAI — GPT-4.1 / GPT-4.1-mini', value: 'openai' },
85
+ { label: 'OpenAI — GPT-5.4 / GPT-5.4-mini', value: 'openai' },
86
86
  { label: 'Local (Ollama) — requires local models', value: 'local' },
87
87
  { label: 'Custom — specify your own model strings', value: 'custom' },
88
88
  ]);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@robbiesrobotics/alice-agents",
3
- "version": "1.2.6",
3
+ "version": "1.2.8",
4
4
  "description": "A.L.I.C.E. — 28 AI agents for OpenClaw. One conversation, one team.",
5
5
  "bin": {
6
6
  "alice-agents": "bin/alice-install.mjs"