clawmacdo 0.16.0 → 0.18.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.
Files changed (2) hide show
  1. package/README.md +21 -6
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -5,12 +5,22 @@
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.16.0
8
+ ## ✨ What's New in v0.18.0
9
9
 
10
- - **BytePlus destroy cleanup** — Automatically release EIP and delete VPC/subnet/security-group when destroying BytePlus instances
11
- - **BytePlus deploy form improvements** — Auto-default primary AI model to "byteplus" when BytePlus provider selected; "Generate" button for ARK API key with endpoint selection
12
- - **ARK API endpoints** — `POST /api/ark/endpoints` and `POST /api/ark/api-key` for ARK key generation from the web UI
13
- - **Playwright E2E test suite** — 30 CSV-driven test scenarios covering all 5 cloud providers with all model/failover/messaging permutations
10
+ - **Tailscale Funnel** — `tailscale-funnel` subcommand: install Tailscale, enable Funnel, configure `openclaw.json`, auto-approve devices, and print public webchat URL
11
+ - **Funnel toggle** — `funnel-on` / `funnel-off` CLI commands and web UI Deployments tab toggle button
12
+ - **Device approval** — `device-approve` subcommand to auto-approve all pending webchat pairing requests
13
+ - **Customer skill management** — `skill-upload`, `skill-download`, `skill-push` subcommands for per-deployment SKILL.md via Railway skills API + SCP to instances
14
+ - **User-skills API** — REST endpoints for per-deployment SKILL.md with API key protection and auto-backup
15
+ - **Web UI fixes** — Deployments tab works after PIN login; logout button; PIN error message displays correctly
16
+
17
+ ### Previous highlights (v0.17.x)
18
+ - **Web UI security hardening (CRIT-01)** — API key auth, 6-digit PIN login, CORS, rate limiting, localhost-only binding
19
+ - **All 4 CRITICAL security findings resolved**
20
+
21
+ ### Previous highlights (v0.16.x)
22
+ - **BytePlus destroy cleanup** — Auto-release EIP and delete VPC/subnet/security-group
23
+ - **Playwright E2E test suite** — 30 CSV-driven test scenarios covering all 5 cloud providers
14
24
 
15
25
  ### Previous highlights (v0.14.x – v0.15.x)
16
26
  - **Windows builds fixed** — Dependencies correctly scoped, native MSVC builds
@@ -355,6 +365,11 @@ new-crate = { workspace = true }
355
365
  | `OPENAI_API_KEY` | OpenAI API key | Optional |
356
366
  | `TELEGRAM_TOKEN` | Telegram bot token | Optional |
357
367
  | `TAILSCALE_AUTH_KEY` | Tailscale auth key | Optional |
368
+ | `CLAWMACDO_API_KEY` | API key protecting `/api/*` endpoints | Optional (Web UI) |
369
+ | `CLAWMACDO_PIN` | 6-digit PIN for web UI login page | Optional (Web UI) |
370
+ | `CLAWMACDO_BIND` | Server bind address (default: `127.0.0.1`) | Optional (Web UI) |
371
+ | `SKILLS_API_URL` | Railway skills API base URL | For skill commands |
372
+ | `USER_SKILLS_API_KEY` | API key for user-skills endpoints | For skill commands |
358
373
 
359
374
  ## Architecture Notes
360
375
 
@@ -397,5 +412,5 @@ See [CHANGELOG.md](CHANGELOG.md) for version history and breaking changes.
397
412
  ---
398
413
 
399
414
  **Last updated:** March 16, 2026
400
- **Current version:** 0.16.0
415
+ **Current version:** 0.18.0
401
416
  **Architecture version:** 2.0 (modular workspace)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clawmacdo",
3
- "version": "0.16.0",
3
+ "version": "0.18.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.16.0",
34
- "@clawmacdo/linux-x64": "0.16.0",
35
- "@clawmacdo/win32-x64": "0.16.0"
33
+ "@clawmacdo/darwin-arm64": "0.18.0",
34
+ "@clawmacdo/linux-x64": "0.18.0",
35
+ "@clawmacdo/win32-x64": "0.18.0"
36
36
  }
37
37
  }