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

推荐订阅源

J
Java Code Geeks
腾讯CDC
Jina AI
Jina AI
博客园 - 司徒正美
博客园 - 三生石上(FineUI控件)
Apple Machine Learning Research
Apple Machine Learning Research
GbyAI
GbyAI
WordPress大学
WordPress大学
Hugging Face - Blog
Hugging Face - Blog
T
The Blog of Author Tim Ferriss
小众软件
小众软件
M
MIT News - Artificial intelligence
MyScale Blog
MyScale Blog
D
Docker
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Google DeepMind News
Google DeepMind News
月光博客
月光博客
L
LangChain Blog
F
Fortinet All Blogs
Microsoft Azure Blog
Microsoft Azure Blog
博客园 - Franky
C
Check Point Blog
U
Unit 42
人人都是产品经理
人人都是产品经理

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
fix(installer): count verify progress stage · openclaw/op...
vincentkoc · 2026-05-24 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

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

77

### Changes

88
99

### Fixes

10-
10+

- Installer: include the optional verify phase in the progress counter so `--verify` shows `[4/4] Verifying installation` instead of `[4/3]`.

1111

- Tests: fail the kitchen-sink RPC Docker walk when gateway RSS sampling is unavailable instead of silently disabling the per-process memory guard.

1212

- Tests: suppress the current Rolldown plugin timing warning format in the Vitest wrapper so tiny focused runs do not drown useful stderr in repeated build-timing noise.

1313

- Models/OpenRouter: use endpoint-specific OpenRouter context limits from `top_provider` metadata so provider-routed models no longer overstate available context. (#85949) Thanks @TurboTheTurtle.

Original file line numberDiff line numberDiff line change

@@ -339,6 +339,14 @@ ui_error() {

339339

INSTALL_STAGE_TOTAL=3

340340

INSTALL_STAGE_CURRENT=0

341341
342+

configure_install_stage_total() {

343+

INSTALL_STAGE_TOTAL=3

344+

INSTALL_STAGE_CURRENT=0

345+

if [[ "${VERIFY_INSTALL:-0}" == "1" ]]; then

346+

INSTALL_STAGE_TOTAL=4

347+

fi

348+

}

349+
342350

ui_section() {

343351

local title="$1"

344352

if [[ -n "$GUM" ]]; then

@@ -3126,6 +3134,7 @@ main() {

31263134
31273135

if [[ "${OPENCLAW_INSTALL_SH_NO_RUN:-0}" != "1" ]]; then

31283136

parse_args "$@"

3137+

configure_install_stage_total

31293138

configure_verbose

31303139

main

31313140

fi

Original file line numberDiff line numberDiff line change

@@ -148,6 +148,25 @@ describe("install.sh", () => {

148148

);

149149

});

150150
151+

it("counts the verify stage when --verify is enabled", () => {

152+

const result = runInstallShell(

153+

[

154+

`source ${JSON.stringify(SCRIPT_PATH)}`,

155+

"parse_args --verify",

156+

"configure_install_stage_total",

157+

'ui_stage "Preparing environment"',

158+

'ui_stage "Installing OpenClaw"',

159+

'ui_stage "Finalizing setup"',

160+

'ui_stage "Verifying installation"',

161+

].join("\n"),

162+

{ TERM: "dumb" },

163+

);

164+
165+

expect(result.status).toBe(0);

166+

expect(result.stdout).toContain("[4/4] Verifying installation");

167+

expect(result.stdout).not.toContain("[4/3] Verifying installation");

168+

});

169+
151170

it("loads nvm before checking Node.js so stale system Node does not win", () => {

152171

expect(script).toMatch(

153172

/# Step 2: Node\.js\s+load_nvm_for_node_detection\s+if ! check_node; then/,