惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

MyScale Blog
MyScale Blog
Jina AI
Jina AI
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
阮一峰的网络日志
阮一峰的网络日志
P
Proofpoint News Feed
Last Week in AI
Last Week in AI
博客园 - 司徒正美
Martin Fowler
Martin Fowler
T
Tailwind CSS Blog
B
Blog RSS Feed
Vercel News
Vercel News
博客园 - 聂微东
I
InfoQ
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
M
MIT News - Artificial intelligence
Recent Announcements
Recent Announcements
GbyAI
GbyAI
L
LangChain Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Microsoft Security Blog
Microsoft Security Blog
C
Check Point Blog
MongoDB | Blog
MongoDB | Blog
B
Blog

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
feat: add native sqlite Kysely dialect · openclaw/opencla...
steipete · 2026-05-07 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -6,6 +6,7 @@ Docs: https://docs.openclaw.ai

66
77

### Changes

88
9+

- Runtime/install: raise the supported Node 22 floor to `22.16+` so native SQLite query handling can rely on the `node:sqlite` statement metadata API while continuing to recommend Node 24. (#78921)

910

- Discord/voice: stream ElevenLabs TTS directly into Discord playback and send ElevenLabs latency optimization as the documented query parameter so spoken replies can start sooner.

1011

- Discord/voice: keep TTS playback running when another user starts speaking, ignore new capture during playback to avoid feedback loops, and downgrade expected receive-stream aborts to verbose diagnostics.

1112

- Telegram: treat successful same-chat `message` tool outbound sends during an inbound telegram turn as delivered when deciding whether to emit the rewritten silent reply fallback (#78685). Thanks @neeravmakwana.

Original file line numberDiff line numberDiff line change

@@ -96,7 +96,7 @@ Model note: while many providers and models are supported, prefer a current flag

9696
9797

## Install (recommended)

9898
99-

Runtime: **Node 24 (recommended) or Node 22.14+**.

99+

Runtime: **Node 24 (recommended) or Node 22.16+**.

100100
101101

```bash

102102

npm install -g openclaw@latest

@@ -109,7 +109,7 @@ OpenClaw Onboard installs the Gateway daemon (launchd/systemd user service) so i

109109
110110

## Quick start (TL;DR)

111111
112-

Runtime: **Node 24 (recommended) or Node 22.14+**.

112+

Runtime: **Node 24 (recommended) or Node 22.16+**.

113113
114114

Full beginner guide (auth, pairing, channels): [Getting started](https://docs.openclaw.ai/start/getting-started)

115115
Original file line numberDiff line numberDiff line change

@@ -312,15 +312,15 @@ OpenClaw's web interface (Gateway Control UI + HTTP endpoints) is intended for *

312312
313313

### Node.js Version

314314
315-

OpenClaw requires **Node.js 22.14.0 or later** (LTS). This version includes important security patches:

315+

OpenClaw requires **Node.js 22.16.0 or later** (LTS). This version includes important security patches:

316316
317317

- CVE-2025-59466: async_hooks DoS vulnerability

318318

- CVE-2026-21636: Permission model bypass vulnerability

319319
320320

Verify your Node.js version:

321321
322322

```bash

323-

node --version # Should be v22.14.0 or later

323+

node --version # Should be v22.16.0 or later

324324

```

325325
326326

### Docker Security

Original file line numberDiff line numberDiff line change

@@ -9,6 +9,7 @@ const rootEntries = [

99

"src/index.ts!",

1010

"src/entry.ts!",

1111

"src/cli/daemon-cli.ts!",

12+

"src/infra/kysely-node-sqlite.ts!",

1213

"src/infra/warning-filter.ts!",

1314

"src/infra/command-explainer/index.ts!",

1415

bundledPluginFile("telegram", "src/audit.ts", "!"),

Original file line numberDiff line numberDiff line change

@@ -54,7 +54,7 @@ OpenClaw is a **self-hosted gateway** that connects your favorite chat apps and

5454

- **Agent-native**: built for coding agents with tool use, sessions, memory, and multi-agent routing

5555

- **Open source**: MIT licensed, community-driven

5656
57-

**What do you need?** Node 24 (recommended), or Node 22 LTS (`22.14+`) for compatibility, an API key from your chosen provider, and 5 minutes. For best quality and security, use the strongest latest-generation model available.

57+

**What do you need?** Node 24 (recommended), or Node 22 LTS (`22.16+`) for compatibility, an API key from your chosen provider, and 5 minutes. For best quality and security, use the strongest latest-generation model available.

5858
5959

## How it works

6060
Original file line numberDiff line numberDiff line change

@@ -46,7 +46,7 @@ The Ansible playbook installs and configures:

4646

1. **Tailscale** -- mesh VPN for secure remote access

4747

2. **UFW firewall** -- SSH + Tailscale ports only

4848

3. **Docker CE + Compose V2** -- for the default agent sandbox backend

49-

4. **Node.js 24 + pnpm** -- runtime dependencies (Node 22 LTS, currently `22.14+`, remains supported)

49+

4. **Node.js 24 + pnpm** -- runtime dependencies (Node 22 LTS, currently `22.16+`, remains supported)

5050

5. **OpenClaw** -- host-based, not containerized

5151

6. **Systemd service** -- auto-start with security hardening

5252
Original file line numberDiff line numberDiff line change

@@ -39,7 +39,7 @@ Bun is an optional local runtime for running TypeScript directly (`bun run ...`,

3939
4040

Bun blocks dependency lifecycle scripts unless explicitly trusted. For this repo, the commonly blocked scripts are not required:

4141
42-

- `@whiskeysockets/baileys` `preinstall` -- checks Node major >= 20 (OpenClaw defaults to Node 24 and still supports Node 22 LTS, currently `22.14+`)

42+

- `@whiskeysockets/baileys` `preinstall` -- checks Node major >= 20 (OpenClaw defaults to Node 24 and still supports Node 22 LTS, currently `22.16+`)

4343

- `protobufjs` `postinstall` -- emits warnings about incompatible version schemes (no build artifacts)

4444
4545

If you hit a runtime issue that requires these scripts, trust them explicitly:

Original file line numberDiff line numberDiff line change

@@ -9,7 +9,7 @@ title: "Install"

99
1010

## System requirements

1111
12-

- **Node 24** (recommended) or Node 22.14+ - the installer script handles this automatically

12+

- **Node 24** (recommended) or Node 22.16+ - the installer script handles this automatically

1313

- **macOS, Linux, or Windows** - both native Windows and WSL2 are supported; WSL2 is more stable. See [Windows](/platforms/windows).

1414

- `pnpm` is only needed if you build from source

1515
Original file line numberDiff line numberDiff line change

@@ -71,7 +71,7 @@ Recommended for most interactive installs on macOS/Linux/WSL.

7171

Supports macOS and Linux (including WSL). If macOS is detected, installs Homebrew if missing.

7272

</Step>

7373

<Step title="Ensure Node.js 24 by default">

74-

Checks Node version and installs Node 24 if needed (Homebrew on macOS, NodeSource setup scripts on Linux apt/dnf/yum). OpenClaw still supports Node 22 LTS, currently `22.14+`, for compatibility.

74+

Checks Node version and installs Node 24 if needed (Homebrew on macOS, NodeSource setup scripts on Linux apt/dnf/yum). OpenClaw still supports Node 22 LTS, currently `22.16+`, for compatibility.

7575

</Step>

7676

<Step title="Ensure Git">

7777

Installs Git if missing.

@@ -284,7 +284,7 @@ by default, plus git-checkout installs under the same prefix flow.

284284

Requires PowerShell 5+.

285285

</Step>

286286

<Step title="Ensure Node.js 24 by default">

287-

If missing, attempts install via winget, then Chocolatey, then Scoop. Node 22 LTS, currently `22.14+`, remains supported for compatibility.

287+

If missing, attempts install via winget, then Chocolatey, then Scoop. Node 22 LTS, currently `22.16+`, remains supported for compatibility.

288288

</Step>

289289

<Step title="Install OpenClaw">

290290

- `npm` method (default): global npm install using selected `-Tag`, launched from a writable installer temp directory so shells opened in protected folders such as `C:\` still work

Original file line numberDiff line numberDiff line change

@@ -7,15 +7,15 @@ read_when:

77

- "npm install -g fails with permissions or PATH issues"

88

---

99
10-

OpenClaw requires **Node 22.14 or newer**. **Node 24 is the default and recommended runtime** for installs, CI, and release workflows. Node 22 remains supported via the active LTS line. The [installer script](/install#alternative-install-methods) will detect and install Node automatically - this page is for when you want to set up Node yourself and make sure everything is wired up correctly (versions, PATH, global installs).

10+

OpenClaw requires **Node 22.16 or newer**. **Node 24 is the default and recommended runtime** for installs, CI, and release workflows. Node 22 remains supported via the active LTS line. The [installer script](/install#alternative-install-methods) will detect and install Node automatically - this page is for when you want to set up Node yourself and make sure everything is wired up correctly (versions, PATH, global installs).

1111
1212

## Check your version

1313
1414

```bash

1515

node -v

1616

```

1717
18-

If this prints `v24.x.x` or higher, you're on the recommended default. If it prints `v22.14.x` or higher, you're on the supported Node 22 LTS path, but we still recommend upgrading to Node 24 when convenient. If Node isn't installed or the version is too old, pick an install method below.

18+

If this prints `v24.x.x` or higher, you're on the recommended default. If it prints `v22.16.x` or higher, you're on the supported Node 22 LTS path, but we still recommend upgrading to Node 24 when convenient. If Node isn't installed or the version is too old, pick an install method below.

1919
2020

## Install Node

2121