@robbiesrobotics/alice-agents 1.4.1 → 1.4.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 CHANGED
@@ -55,11 +55,11 @@ An orchestrator (Olivia) backed by specialist agents across every domain:
55
55
 
56
56
  A.L.I.C.E. works with **whatever model you already have configured** in OpenClaw/NemoClaw. There's no required API key — just use what you've got.
57
57
 
58
- When you install, the installer will **auto-detect your configured model** and use it by default. You can also choose from presets or specify a custom model.
58
+ When you install, the installer will **auto-detect your configured model** and let the agent team inherit that runtime default. You can also choose from presets or specify a custom model for the OpenClaw/NemoClaw defaults A.L.I.C.E. should use.
59
59
 
60
60
  | Preset | Models | Best For |
61
61
  |--------|--------|----------|
62
- | **Auto-detect** (default) | Your current OpenClaw model | Zero friction — works with what you have |
62
+ | **Auto-detect** (default) | Your current OpenClaw/NemoClaw default | Zero friction — agents inherit what your runtime already uses |
63
63
  | **Sonnet** | claude-sonnet-4-6 for all | Balanced speed + quality (requires Anthropic key) |
64
64
  | **Opus + Sonnet** | Opus for orchestrator, Sonnet for specialists | Maximum quality (requires Anthropic key) |
65
65
  | **OpenAI** | GPT-5.4 / GPT-5.4-mini | OpenAI users |
@@ -184,10 +184,11 @@ function buildAgentEntry(agent, modelCfg) {
184
184
  tools: agent.tools,
185
185
  };
186
186
 
187
- // Orchestrator gets special model + extra config
187
+ // Orchestrator gets default-agent behavior, but no explicit model pin.
188
+ // This keeps Olivia model-agnostic and lets OpenClaw/NemoClaw route her
189
+ // through whatever default model/provider the runtime is configured to use.
188
190
  if (agent.isOrchestrator) {
189
191
  entry.default = true;
190
- entry.model = modelCfg.orchestrator;
191
192
  if (agent.extraConfig) {
192
193
  Object.assign(entry, agent.extraConfig);
193
194
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@robbiesrobotics/alice-agents",
3
- "version": "1.4.1",
3
+ "version": "1.4.2",
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"