clawmacdo 0.16.0 → 0.19.0
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 +22 -6
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -5,12 +5,23 @@
|
|
|
5
5
|
|
|
6
6
|
Rust CLI tool for deploying [OpenClaw](https://openclaw.ai) to **DigitalOcean**, **AWS Lightsail**, **Tencent Cloud**, **Microsoft Azure**, or **BytePlus Cloud** — with Claude Code, Codex, and Gemini CLI pre-installed.
|
|
7
7
|
|
|
8
|
-
## ✨ What's New in v0.
|
|
8
|
+
## ✨ What's New in v0.19.0
|
|
9
9
|
|
|
10
|
-
- **
|
|
11
|
-
- **
|
|
12
|
-
|
|
13
|
-
|
|
10
|
+
- **One-click Funnel access** — "Open" button in Deployments tab opens the Funnel webchat with gateway token pre-injected (no manual token paste or device pairing needed)
|
|
11
|
+
- **Auto-disable device pairing for Funnel** — Funnel setup sets `dangerouslyDisableDeviceAuth: true` so browser connections via Tailscale Funnel skip the pairing screen
|
|
12
|
+
|
|
13
|
+
### Previous highlights (v0.18.x)
|
|
14
|
+
- **Tailscale Funnel** — `tailscale-funnel` subcommand: install Tailscale, enable Funnel, configure `openclaw.json`, auto-approve devices, and print public webchat URL
|
|
15
|
+
- **Funnel toggle** — `funnel-on` / `funnel-off` CLI commands and web UI Deployments tab toggle button
|
|
16
|
+
- **Customer skill management** — `skill-upload`, `skill-download`, `skill-push` subcommands for per-deployment SKILL.md
|
|
17
|
+
|
|
18
|
+
### Previous highlights (v0.17.x)
|
|
19
|
+
- **Web UI security hardening (CRIT-01)** — API key auth, 6-digit PIN login, CORS, rate limiting, localhost-only binding
|
|
20
|
+
- **All 4 CRITICAL security findings resolved**
|
|
21
|
+
|
|
22
|
+
### Previous highlights (v0.16.x)
|
|
23
|
+
- **BytePlus destroy cleanup** — Auto-release EIP and delete VPC/subnet/security-group
|
|
24
|
+
- **Playwright E2E test suite** — 30 CSV-driven test scenarios covering all 5 cloud providers
|
|
14
25
|
|
|
15
26
|
### Previous highlights (v0.14.x – v0.15.x)
|
|
16
27
|
- **Windows builds fixed** — Dependencies correctly scoped, native MSVC builds
|
|
@@ -355,6 +366,11 @@ new-crate = { workspace = true }
|
|
|
355
366
|
| `OPENAI_API_KEY` | OpenAI API key | Optional |
|
|
356
367
|
| `TELEGRAM_TOKEN` | Telegram bot token | Optional |
|
|
357
368
|
| `TAILSCALE_AUTH_KEY` | Tailscale auth key | Optional |
|
|
369
|
+
| `CLAWMACDO_API_KEY` | API key protecting `/api/*` endpoints | Optional (Web UI) |
|
|
370
|
+
| `CLAWMACDO_PIN` | 6-digit PIN for web UI login page | Optional (Web UI) |
|
|
371
|
+
| `CLAWMACDO_BIND` | Server bind address (default: `127.0.0.1`) | Optional (Web UI) |
|
|
372
|
+
| `SKILLS_API_URL` | Railway skills API base URL | For skill commands |
|
|
373
|
+
| `USER_SKILLS_API_KEY` | API key for user-skills endpoints | For skill commands |
|
|
358
374
|
|
|
359
375
|
## Architecture Notes
|
|
360
376
|
|
|
@@ -397,5 +413,5 @@ See [CHANGELOG.md](CHANGELOG.md) for version history and breaking changes.
|
|
|
397
413
|
---
|
|
398
414
|
|
|
399
415
|
**Last updated:** March 16, 2026
|
|
400
|
-
**Current version:** 0.
|
|
416
|
+
**Current version:** 0.18.0
|
|
401
417
|
**Architecture version:** 2.0 (modular workspace)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "clawmacdo",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.19.0",
|
|
4
4
|
"description": "CLI tool for deploying OpenClaw to multiple cloud providers with pre-installed AI dev tools",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"openclaw",
|
|
@@ -30,8 +30,8 @@
|
|
|
30
30
|
"node": ">=16"
|
|
31
31
|
},
|
|
32
32
|
"optionalDependencies": {
|
|
33
|
-
"@clawmacdo/darwin-arm64": "0.
|
|
34
|
-
"@clawmacdo/linux-x64": "0.
|
|
35
|
-
"@clawmacdo/win32-x64": "0.
|
|
33
|
+
"@clawmacdo/darwin-arm64": "0.19.0",
|
|
34
|
+
"@clawmacdo/linux-x64": "0.19.0",
|
|
35
|
+
"@clawmacdo/win32-x64": "0.19.0"
|
|
36
36
|
}
|
|
37
37
|
}
|