@robbiesrobotics/alice-agents 1.2.3 → 1.2.5
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 +14 -1
- package/lib/installer.mjs +21 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -109,9 +109,22 @@ Each agent has its own workspace with:
|
|
|
109
109
|
- `LEARNINGS.md` — task log
|
|
110
110
|
- `memory/` — persistent context between sessions
|
|
111
111
|
|
|
112
|
+
## Compatibility
|
|
113
|
+
|
|
114
|
+
A.L.I.C.E. runs on any OpenClaw-compatible runtime:
|
|
115
|
+
|
|
116
|
+
| Runtime | Status | Notes |
|
|
117
|
+
|---------|--------|-------|
|
|
118
|
+
| **OpenClaw** | ✅ Fully supported | Default. [openclaw.com](https://openclaw.com) |
|
|
119
|
+
| **NemoClaw** | ✅ Fully supported | NVIDIA's enterprise distribution. Agents run inside OpenShell sandbox. |
|
|
120
|
+
|
|
121
|
+
### NemoClaw Users
|
|
122
|
+
|
|
123
|
+
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.
|
|
124
|
+
|
|
112
125
|
## Requirements
|
|
113
126
|
|
|
114
|
-
- [OpenClaw](https://openclaw.com) installed and configured
|
|
127
|
+
- [OpenClaw](https://openclaw.com) or [NemoClaw](https://nemoclaw.com) installed and configured
|
|
115
128
|
- Node.js 18+
|
|
116
129
|
- At least one AI provider configured (Anthropic, OpenAI, or Ollama)
|
|
117
130
|
|
package/lib/installer.mjs
CHANGED
|
@@ -27,6 +27,21 @@ function isOpenClawInstalled() {
|
|
|
27
27
|
}
|
|
28
28
|
}
|
|
29
29
|
|
|
30
|
+
async function detectRuntime() {
|
|
31
|
+
// Check for NemoClaw binary
|
|
32
|
+
try {
|
|
33
|
+
execSync('nemoclaw --version', { stdio: 'pipe' });
|
|
34
|
+
return 'nemoclaw';
|
|
35
|
+
} catch {}
|
|
36
|
+
|
|
37
|
+
// Check for NemoClaw directory
|
|
38
|
+
const nemoclawDir = join(process.env.HOME || '', '.nemoclaw');
|
|
39
|
+
if (existsSync(nemoclawDir)) return 'nemoclaw';
|
|
40
|
+
|
|
41
|
+
// Fall back to OpenClaw
|
|
42
|
+
return 'openclaw';
|
|
43
|
+
}
|
|
44
|
+
|
|
30
45
|
function getOpenClawVersion() {
|
|
31
46
|
try {
|
|
32
47
|
const output = execSync('openclaw --version', { stdio: 'pipe', encoding: 'utf8' });
|
|
@@ -216,7 +231,12 @@ export async function runInstall(options = {}) {
|
|
|
216
231
|
// 1b. Check for OpenClaw updates
|
|
217
232
|
await checkForOpenClawUpdate(auto);
|
|
218
233
|
|
|
219
|
-
|
|
234
|
+
const runtime = await detectRuntime();
|
|
235
|
+
if (runtime === 'nemoclaw') {
|
|
236
|
+
console.log(' ✔ NemoClaw detected — agents will run inside OpenShell sandbox\n');
|
|
237
|
+
} else {
|
|
238
|
+
console.log(' ✔ OpenClaw detected\n');
|
|
239
|
+
}
|
|
220
240
|
|
|
221
241
|
const allAgents = loadAgentRegistry();
|
|
222
242
|
|