limbo-ai 2026.4.13 → 2026.4.15
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 +1 -1
- package/cli.js +7 -6
- package/package.json +1 -1
- package/scripts/regen-openclaw-config.sh +3 -0
package/README.md
CHANGED
|
@@ -30,7 +30,7 @@ Any Ubuntu/Debian VPS with 1 GB+ RAM.
|
|
|
30
30
|
### 2. Run the installer
|
|
31
31
|
|
|
32
32
|
```bash
|
|
33
|
-
curl -fsSL https://
|
|
33
|
+
curl -fsSL https://get.heylimbo.com/install.sh | bash
|
|
34
34
|
```
|
|
35
35
|
|
|
36
36
|
This installs Docker, Node.js, and the Limbo CLI.
|
package/cli.js
CHANGED
|
@@ -2375,10 +2375,6 @@ async function cmdConnectCalendar() {
|
|
|
2375
2375
|
async function cmdCloudActivate() {
|
|
2376
2376
|
const existingEnv = parseEnvFile();
|
|
2377
2377
|
|
|
2378
|
-
if (!existingEnv.MODEL_PROVIDER) {
|
|
2379
|
-
die('Instance is not configured yet. Run `limbo start` first.');
|
|
2380
|
-
}
|
|
2381
|
-
|
|
2382
2378
|
if (existingEnv.LIMBO_PUBLIC_URL) {
|
|
2383
2379
|
log(`Already activated at ${existingEnv.LIMBO_PUBLIC_URL}`);
|
|
2384
2380
|
return;
|
|
@@ -2420,11 +2416,16 @@ async function cmdCloudActivate() {
|
|
|
2420
2416
|
// Regenerate compose (now includes 0.0.0.0:80:80 mapping)
|
|
2421
2417
|
ensureComposeFile(false);
|
|
2422
2418
|
|
|
2423
|
-
// Restart container
|
|
2424
|
-
|
|
2419
|
+
// Restart container only if it's already running
|
|
2420
|
+
if (countRunningLimboContainers() > 0) {
|
|
2421
|
+
runDockerCompose(['up', '-d']);
|
|
2422
|
+
}
|
|
2425
2423
|
|
|
2426
2424
|
console.log(`\n${c.green}✓ Cloud activated!${c.reset}`);
|
|
2427
2425
|
console.log(` Public URL: ${c.cyan}${url}${c.reset}`);
|
|
2426
|
+
if (!existingEnv.MODEL_PROVIDER) {
|
|
2427
|
+
console.log(`\n Run ${c.cyan}limbo start${c.reset} to launch the setup wizard at this URL.`);
|
|
2428
|
+
}
|
|
2428
2429
|
}
|
|
2429
2430
|
|
|
2430
2431
|
async function cmdCloudDeactivate() {
|
package/package.json
CHANGED
|
@@ -158,6 +158,9 @@ if [ "$GOOGLE_CALENDAR_ENABLED" = "true" ] && [ -f "$GCAL_CREDS" ]; then
|
|
|
158
158
|
export GOOGLE_WORKSPACE_CLI_KEYRING_BACKEND="file"
|
|
159
159
|
export GOOGLE_WORKSPACE_CLI_CONFIG_DIR="/tmp/gws"
|
|
160
160
|
mkdir -p /tmp/gws
|
|
161
|
+
# Regen runs as root (before gosu) on boot but gws runs as limbo later.
|
|
162
|
+
# Without this chown, gws gets "Permission denied (os error 13)".
|
|
163
|
+
chown limbo:limbo /tmp/gws 2>/dev/null || true
|
|
161
164
|
export GOOGLE_CALENDAR_ENABLED
|
|
162
165
|
|
|
163
166
|
node -e "
|