@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 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/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.7",
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"