@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 +13 -9
- package/lib/config-merger.mjs +5 -5
- package/lib/installer.mjs +49 -49
- package/lib/prompter.mjs +1 -1
- package/package.json +1 -1
- package/SELF-HEALING-SPEC.md +0 -2503
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
|
|
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
|
|
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
|
|
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
|
-
| **
|
|
121
|
-
| **
|
|
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
|
-
|
|
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
|
|
129
|
+
If you're already running NemoClaw, A.L.I.C.E. works out of the box — no extra config needed.
|
|
126
130
|
|
|
127
131
|
## Requirements
|
|
128
132
|
|
|
129
|
-
- [OpenClaw](https://openclaw.
|
|
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
|
|
package/lib/config-merger.mjs
CHANGED
|
@@ -54,12 +54,12 @@ function getModelConfig(preset, customModels) {
|
|
|
54
54
|
};
|
|
55
55
|
case 'openai':
|
|
56
56
|
return {
|
|
57
|
-
primary: 'openai/gpt-4
|
|
58
|
-
orchestrator: 'openai/gpt-4
|
|
59
|
-
fallbacks: ['openai/gpt-4
|
|
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
|
|
62
|
-
'openai/gpt-4
|
|
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
|
|
103
|
-
console.log(' ⚠️
|
|
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
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
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
|
-
|
|
141
|
+
// Run openclaw configure
|
|
117
142
|
try {
|
|
118
|
-
execSync('
|
|
119
|
-
console.log('\n ✓ OpenClaw
|
|
120
|
-
} catch
|
|
121
|
-
console.error('\n
|
|
122
|
-
console.error('
|
|
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
|
|
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
|
|
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
|
|
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
|
]);
|