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

推荐订阅源

人人都是产品经理
人人都是产品经理
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
月光博客
月光博客
雷峰网
雷峰网
Google DeepMind News
Google DeepMind News
Y
Y Combinator Blog
Microsoft Security Blog
Microsoft Security Blog
M
MIT News - Artificial intelligence
WordPress大学
WordPress大学
MongoDB | Blog
MongoDB | Blog
V
V2EX
博客园 - 【当耐特】
GbyAI
GbyAI
Stack Overflow Blog
Stack Overflow Blog
I
InfoQ
Martin Fowler
Martin Fowler
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Hugging Face - Blog
Hugging Face - Blog
B
Blog
V
Visual Studio Blog
D
DataBreaches.Net
C
Check Point Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
F
Fortinet All Blogs

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(channels): keep ownerless config visible but undelive...
vincentkoc · 2026-06-22 · via Recent Commits to openclaw:main

File tree

    • release-upgrade-user-journey

Original file line numberDiff line numberDiff line change

@@ -34,6 +34,7 @@ PLUGIN_CLI_AFTER_LOG="$LOG_DIR/plugin-cli-after.log"

3434

AGENT_LOG="$LOG_DIR/agent.log"

3535

STATUS_JSON="$LOG_DIR/status.json"

3636

STATUS_ERR="$LOG_DIR/status.err"

37+

CLICKCLACK_PLUGIN_INSTALL_LOG="$LOG_DIR/clickclack-plugin-install.log"

3738

CLICKCLACK_OUTBOUND_JSON="$LOG_DIR/clickclack-outbound.json"

3839

CLICKCLACK_OUTBOUND_ERR="$LOG_DIR/clickclack-outbound.err"

3940

CLICKCLACK_SERVER_LOG="$LOG_DIR/clickclack-server.log"

@@ -77,6 +78,7 @@ dump_debug_logs() {

7778

"$PLUGIN_CLI_AFTER_LOG" \

7879

"$AGENT_LOG" \

7980

"$STATUS_JSON" \

81+

"$CLICKCLACK_PLUGIN_INSTALL_LOG" \

8082

"$CLICKCLACK_OUTBOUND_JSON" \

8183

"$CLICKCLACK_SERVER_LOG" \

8284

"$GATEWAY_LOG" \

@@ -162,6 +164,10 @@ node scripts/e2e/lib/release-scenarios/assertions.mjs assert-agent-turn "$SUCCES

162164

openclaw release-upgrade ping >"$PLUGIN_CLI_AFTER_LOG" 2>&1

163165

node scripts/e2e/lib/release-scenarios/assertions.mjs assert-file-contains "$PLUGIN_CLI_AFTER_LOG" "release-upgrade-plugin:pong"

164166
167+

clickclack_plugin_dir="$(mktemp -d "$scenario_tmp/clickclack-plugin.XXXXXX")"

168+

node scripts/e2e/lib/release-user-journey/write-clickclack-plugin.mjs "$clickclack_plugin_dir"

169+

openclaw plugins install "$clickclack_plugin_dir" >"$CLICKCLACK_PLUGIN_INSTALL_LOG" 2>&1

170+
165171

openclaw channels status --json >"$STATUS_JSON" 2>"$STATUS_ERR"

166172

node scripts/e2e/lib/release-user-journey/assertions.mjs assert-channel-status clickclack "$STATUS_JSON"

167173

openclaw message send \

Original file line numberDiff line numberDiff line change

@@ -35,6 +35,7 @@ PLUGIN_A_UNINSTALL_LOG="$LOG_DIR/plugin-a-uninstall.log"

3535

PLUGIN_B_INSTALL_LOG="$LOG_DIR/plugin-b-install.log"

3636

PLUGIN_B_CLI_LOG="$LOG_DIR/plugin-b-cli.log"

3737

PLUGIN_B_AFTER_RESTART_JSON="$LOG_DIR/plugin-b-after-restart.json"

38+

CLICKCLACK_PLUGIN_INSTALL_LOG="$LOG_DIR/clickclack-plugin-install.log"

3839

CLICKCLACK_SERVER_LOG="$LOG_DIR/clickclack-server.log"

3940

CLICKCLACK_OUTBOUND_JSON="$LOG_DIR/clickclack-outbound.json"

4041

CLICKCLACK_OUTBOUND_ERR="$LOG_DIR/clickclack-outbound.err"

@@ -77,6 +78,7 @@ dump_debug_logs() {

7778

"$PLUGIN_A_UNINSTALL_LOG" \

7879

"$PLUGIN_B_INSTALL_LOG" \

7980

"$PLUGIN_B_CLI_LOG" \

81+

"$CLICKCLACK_PLUGIN_INSTALL_LOG" \

8082

"$CLICKCLACK_SERVER_LOG" \

8183

"$CLICKCLACK_OUTBOUND_JSON" \

8284

"$GATEWAY_1_LOG" \

@@ -215,6 +217,11 @@ openclaw plugins install "$plugin_b_dir" >"$PLUGIN_B_INSTALL_LOG" 2>&1

215217

openclaw journey-b ping >"$PLUGIN_B_CLI_LOG" 2>&1

216218

node scripts/e2e/lib/release-user-journey/assertions.mjs assert-file-contains "$PLUGIN_B_CLI_LOG" "journey-plugin-b:pong"

217219
220+

echo "Installing ClickClack fixture plugin..."

221+

clickclack_plugin_dir="$(mktemp -d "$scenario_tmp/clickclack-plugin.XXXXXX")"

222+

node scripts/e2e/lib/release-user-journey/write-clickclack-plugin.mjs "$clickclack_plugin_dir"

223+

openclaw plugins install "$clickclack_plugin_dir" >"$CLICKCLACK_PLUGIN_INSTALL_LOG" 2>&1

224+
218225

echo "Configuring ClickClack..."

219226

node scripts/e2e/lib/release-user-journey/assertions.mjs configure-clickclack "http://127.0.0.1:$CLICKCLACK_PORT"

220227

openclaw channels status --json >"$STATUS_JSON" 2>"$STATUS_ERR"