@robbiesrobotics/alice-agents 1.2.7 → 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/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/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
|
]);
|