chore: prep 2026.2.2 docs/release checks

This commit is contained in:
Peter Steinberger
2026-02-03 16:38:42 -08:00
parent 4df4435c45
commit 539a15e63f
4 changed files with 17 additions and 12 deletions

View File

@@ -6,13 +6,12 @@ Docs: https://docs.openclaw.ai
### Changes
- Feishu: add Feishu/Lark plugin support + docs. (#7313) Thanks @jiulingyun (openclaw-cn).
- Web UI: add Agents dashboard for managing agent files, tools, skills, models, channels, and cron jobs.
- Memory: implement the opt-in QMD backend for workspace memory. (#3160) Thanks @vignesh07.
- Config: allow setting a default subagent thinking level via `agents.defaults.subagents.thinking` (and per-agent `agents.list[].subagents.thinking`). (#7372) Thanks @tyler6204.
- Security: add healthcheck skill and bootstrap audit guidance. (#7641) Thanks @Takhoffman.
- Docs: zh-CN translation polish + pipeline guidance. (#8202, #6995) Thanks @AaronWander, @taiyi747, @Explorer1092, @rendaoyuan.
- Docs: zh-CN translations seed + nav polish + landing notice + typo fix. (#6619, #7242, #7303, #7415) Thanks @joshp123, @lailoo.
- Feishu: add Feishu/Lark plugin support + docs. (#7313) Thanks @jiulingyun (openclaw-cn).
- Config: allow setting a default subagent thinking level via `agents.defaults.subagents.thinking` (and per-agent `agents.list[].subagents.thinking`). (#7372) Thanks @tyler6204.
- Docs: zh-CN translations seed + polish, pipeline guidance, nav/landing updates, and typo fixes. (#8202, #6995, #6619, #7242, #7303, #7415) Thanks @AaronWander, @taiyi747, @Explorer1092, @rendaoyuan, @joshp123, @lailoo.
### Fixes
@@ -22,8 +21,8 @@ Docs: https://docs.openclaw.ai
- Security: require validated shared-secret auth before skipping device identity on gateway connect.
- Security: guard skill installer downloads with SSRF checks (block private/localhost URLs).
- Security: harden Windows exec allowlist; block cmd.exe bypass via single &. Thanks @simecek.
- Media understanding: apply SSRF guardrails to provider fetches; allow private baseUrl overrides explicitly.
- fix(voice-call): harden inbound allowlist; reject anonymous callers; require Telnyx publicKey for allowlist; token-gate Twilio media streams; cap webhook body size (thanks @simecek)
- Media understanding: apply SSRF guardrails to provider fetches; allow private baseUrl overrides explicitly.
- fix(webchat): respect user scroll position during streaming and refresh (#7226) (thanks @marcomarandiz)
- Telegram: recover from grammY long-poll timed out errors. (#7466) Thanks @macmimi23.
- Agents: repair malformed tool calls and session transcripts. (#7473) Thanks @justinhuangcode.

View File

@@ -171,7 +171,7 @@ out to QMD for retrieval. Key points:
- `update`: controls refresh cadence (`interval`, `debounceMs`, `onBoot`, `embedInterval`).
- `limits`: clamp recall payload (`maxResults`, `maxSnippetChars`,
`maxInjectedChars`, `timeoutMs`).
- `scope`: same schema as [`session.sendPolicy`](/reference/configuration#session-sendpolicy).
- `scope`: same schema as [`session.sendPolicy`](/gateway/configuration#session).
Default is DM-only (`deny` all, `allow` direct chats); loosen it to surface QMD
hits in groups/channels.
- Snippets sourced outside the workspace show up as

View File

@@ -83,7 +83,7 @@ Lark国际版请使用 https://open.larksuite.com/app并在配置中设
2. 填写应用名称和描述
3. 选择应用图标
![创建企业自建应用](../images/feishu-step2-create-app.png)
![创建企业自建应用](/images/feishu-step2-create-app.png)
### 3. 获取应用凭证
@@ -94,7 +94,7 @@ Lark国际版请使用 https://open.larksuite.com/app并在配置中设
**重要**:请妥善保管 App Secret不要分享给他人。
![获取应用凭证](../images/feishu-step3-credentials.png)
![获取应用凭证](/images/feishu-step3-credentials.png)
### 4. 配置应用权限
@@ -126,7 +126,7 @@ Lark国际版请使用 https://open.larksuite.com/app并在配置中设
}
```
![配置应用权限](../images/feishu-step4-permissions.png)
![配置应用权限](/images/feishu-step4-permissions.png)
### 5. 启用机器人能力
@@ -135,7 +135,7 @@ Lark国际版请使用 https://open.larksuite.com/app并在配置中设
1. 开启机器人能力
2. 配置机器人名称
![启用机器人能力](../images/feishu-step5-bot-capability.png)
![启用机器人能力](/images/feishu-step5-bot-capability.png)
### 6. 配置事件订阅
@@ -151,7 +151,7 @@ Lark国际版请使用 https://open.larksuite.com/app并在配置中设
⚠️ **注意**:如果网关未启动或渠道未添加,长连接设置将保存失败。
![配置事件订阅](../images/feishu-step6-event-subscription.png)
![配置事件订阅](/images/feishu-step6-event-subscription.png)
### 7. 发布应用

View File

@@ -7,7 +7,13 @@ import { join, resolve } from "node:path";
type PackFile = { path: string };
type PackResult = { files?: PackFile[] };
const requiredPaths = ["dist/discord/send.js", "dist/hooks/gmail.js", "dist/whatsapp/normalize.js"];
const requiredPaths = [
"dist/index.js",
"dist/entry.js",
"dist/plugin-sdk/index.js",
"dist/plugin-sdk/index.d.ts",
"dist/build-info.json",
];
const forbiddenPrefixes = ["dist/OpenClaw.app/"];
type PackageJson = {