Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions openclaw.version
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@
# git clone https://github.com/openclaw/openclaw openclaw
# git -C openclaw checkout $OPENCLAW_COMMIT
#
OPENCLAW_VERSION=2026.3.13
OPENCLAW_COMMIT=61d171ab0b2fe4abc9afe89c518586274b4b76c2
OPENCLAW_VERSION=2026.3.28
OPENCLAW_COMMIT=f9b1079283a8ee25a7cee77c8f8225d5c813bc30
2 changes: 2 additions & 0 deletions wiseflow/addon.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
"name": "wiseflow",
"version": "0.3.0",
"description": "浏览器反检测 + Tab Recovery + 互联网搜索增强(smart-search / rss-reader skills + 禁用内置 web_search)+ 新媒体小编 Crew 模板",
"openclaw_version": "2026.3.28",
"openclaw_commit": "f9b1079283a8ee25a7cee77c8f8225d5c813bc30",
"auto-activate": false,
"internal_crews": ["new-media-editor"]
}
328 changes: 0 additions & 328 deletions wiseflow/patches/001-browser-tab-recovery.patch

This file was deleted.

17 changes: 8 additions & 9 deletions wiseflow/patches/002-disable-web-search-env-var.patch
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
diff --git a/src/agents/tools/web-search.ts b/src/agents/tools/web-search.ts
index 1e4983f85..aa7dac794 100644
--- a/src/agents/tools/web-search.ts
+++ b/src/agents/tools/web-search.ts
@@ -420,6 +420,10 @@ function resolveSearchConfig(cfg?: OpenClawConfig): WebSearchConfig {
}

function resolveSearchEnabled(params: { search?: WebSearchConfig; sandboxed?: boolean }): boolean {
+ // Allow disabling via env var (e.g., set by wiseflow addon to route searches through the browser)
diff --git a/src/web-search/runtime.ts b/src/web-search/runtime.ts
index 31040fb3df..ec915c0bf5 100644
--- a/src/web-search/runtime.ts
+++ b/src/web-search/runtime.ts
@@ -43,6 +43,9 @@ export function resolveWebSearchEnabled(params: {
search?: WebSearchConfig;
sandboxed?: boolean;
}): boolean {
+ if (process.env.OPENCLAW_DISABLE_WEB_SEARCH === "1") {
+ return false;
+ }
Expand Down
Loading
Loading