mirror of
https://github.com/TencentCloud/TencentDB-Agent-Memory
synced 2026-07-10 20:34:30 +00:00
219 lines
9.4 KiB
Bash
219 lines
9.4 KiB
Bash
|
|
#!/usr/bin/env bash
|
|||
|
|
# ═══════════════════════════════════════════════════════════════════
|
|||
|
|
# bugfix-20260423.sh — OC 2026.4.23 allowConversationAccess 修复
|
|||
|
|
# ═══════════════════════════════════════════════════════════════════
|
|||
|
|
# Issue #73806: OC 2026.4.23 的 Zod schema 使用 .strict() 拒绝
|
|||
|
|
# hooks.allowConversationAccess 字段,导致非捆绑插件无法注册会话钩子
|
|||
|
|
# (llm_input, llm_output, agent_end)。PR #71221 在 4.24 修复。
|
|||
|
|
#
|
|||
|
|
# 本脚本做两件事(均幂等,可安全重复执行):
|
|||
|
|
# 1. Patch dist JS: 给 hooks zod schema 注入 allowConversationAccess 字段
|
|||
|
|
# 2. 写 openclaw.json: 设置 hooks.allowConversationAccess = true
|
|||
|
|
#
|
|||
|
|
# 版本限制:仅在 OC 2026.4.23 上执行 Part 1,其他版本安全跳过 dist patch。
|
|||
|
|
# Part 2 (配置写入) 不限版本,始终确保配置存在。
|
|||
|
|
#
|
|||
|
|
# 用法:
|
|||
|
|
# bash bugfix-20260423.sh [/path/to/openclaw]
|
|||
|
|
#
|
|||
|
|
# 环境变量:
|
|||
|
|
# OPENCLAW_DIR — 覆盖 openclaw 安装路径(优先于参数)
|
|||
|
|
# OPENCLAW_JSON — 覆盖配置文件路径(默认 ~/.openclaw/openclaw.json)
|
|||
|
|
# DEBUG=1 — 开启调试输出
|
|||
|
|
# ═══════════════════════════════════════════════════════════════════
|
|||
|
|
set -euo pipefail
|
|||
|
|
|
|||
|
|
RED='\033[0;31m'; GREEN='\033[0;32m'; YELLOW='\033[1;33m'; CYAN='\033[0;36m'; NC='\033[0m'
|
|||
|
|
info() { echo -e "${CYAN}[INFO]${NC} $*"; }
|
|||
|
|
ok() { echo -e "${GREEN}[OK]${NC} $*"; }
|
|||
|
|
warn() { echo -e "${YELLOW}[WARN]${NC} $*"; }
|
|||
|
|
fail() { echo -e "${RED}[FAIL]${NC} $*" >&2; exit 1; }
|
|||
|
|
debug() { [[ "${DEBUG:-}" == "1" ]] && echo -e "${CYAN}[DEBUG]${NC} $*" || true; }
|
|||
|
|
|
|||
|
|
PLUGIN_ID="memory-tencentdb"
|
|||
|
|
OPENCLAW_JSON="${OPENCLAW_JSON:-${HOME}/.openclaw/openclaw.json}"
|
|||
|
|
|
|||
|
|
# ═══════════════════════════════════════════════════════════════════
|
|||
|
|
# Part 1: Patch dist JS (仅 2026.4.23)
|
|||
|
|
# ═══════════════════════════════════════════════════════════════════
|
|||
|
|
|
|||
|
|
_resolve_openclaw_dir() {
|
|||
|
|
# 参数 > 环境变量 > 自动检测
|
|||
|
|
if [[ -n "${1:-}" ]]; then
|
|||
|
|
echo "$1"; return 0
|
|||
|
|
fi
|
|||
|
|
if [[ -n "${OPENCLAW_DIR:-}" && -d "${OPENCLAW_DIR}" ]]; then
|
|||
|
|
echo "$OPENCLAW_DIR"; return 0
|
|||
|
|
fi
|
|||
|
|
# 自动定位
|
|||
|
|
node -e "
|
|||
|
|
const {dirname, join} = require('path');
|
|||
|
|
const {realpathSync, existsSync, readFileSync, statSync} = require('fs');
|
|||
|
|
function walkUp(start) {
|
|||
|
|
let dir = statSync(start).isDirectory() ? start : dirname(start);
|
|||
|
|
for (let i = 0; i < 10; i++) {
|
|||
|
|
const pj = join(dir, 'package.json');
|
|||
|
|
if (existsSync(pj)) {
|
|||
|
|
try { if (JSON.parse(readFileSync(pj,'utf8')).name==='openclaw') { console.log(dir); process.exit(0); } } catch {}
|
|||
|
|
}
|
|||
|
|
const parent = dirname(dir);
|
|||
|
|
if (parent === dir) break;
|
|||
|
|
dir = parent;
|
|||
|
|
}
|
|||
|
|
return null;
|
|||
|
|
}
|
|||
|
|
try {
|
|||
|
|
const {execSync} = require('child_process');
|
|||
|
|
const bin = execSync('which openclaw',{encoding:'utf8'}).trim();
|
|||
|
|
const real = realpathSync(bin);
|
|||
|
|
const found = walkUp(real);
|
|||
|
|
if (found) { console.log(found); process.exit(0); }
|
|||
|
|
const content = readFileSync(bin,'utf8');
|
|||
|
|
const m = content.match(/['\"]([^'\"]*openclaw[^'\"]*\\.(?:js|mjs))['\"]/) ||
|
|||
|
|
content.match(/['\"]([^'\"]*openclaw[^'\"]*)['\"].*node/);
|
|||
|
|
if (m) { const f = walkUp(realpathSync(m[1])); if (f) { console.log(f); process.exit(0); } }
|
|||
|
|
} catch {}
|
|||
|
|
const searchDirs = [
|
|||
|
|
join(process.env.HOME||'/root','.local/share/pnpm'),
|
|||
|
|
join(process.env.HOME||'/root','.local/node/lib/node_modules'),
|
|||
|
|
'/usr/local/lib/node_modules','/usr/lib/node_modules',
|
|||
|
|
];
|
|||
|
|
for (const base of searchDirs) {
|
|||
|
|
if (!existsSync(base)) continue;
|
|||
|
|
try {
|
|||
|
|
const {execSync:e2} = require('child_process');
|
|||
|
|
const out = e2('find '+JSON.stringify(base)+' -maxdepth 8 -name package.json -path \"*/openclaw/package.json\" 2>/dev/null',{encoding:'utf8',timeout:5000}).trim();
|
|||
|
|
for (const line of out.split('\\n')) {
|
|||
|
|
if (!line) continue;
|
|||
|
|
try { if (JSON.parse(readFileSync(line,'utf8')).name==='openclaw') { console.log(dirname(line)); process.exit(0); } } catch {}
|
|||
|
|
}
|
|||
|
|
} catch {}
|
|||
|
|
}
|
|||
|
|
process.exit(1);
|
|||
|
|
" 2>/dev/null
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
patch_dist_js() {
|
|||
|
|
local oc_dir
|
|||
|
|
oc_dir="$(_resolve_openclaw_dir "${1:-}")" || {
|
|||
|
|
warn "[Part 1] 找不到 OpenClaw 安装目录,跳过 dist patch"
|
|||
|
|
return 0
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
local dist_dir="$oc_dir/dist"
|
|||
|
|
[[ -d "$dist_dir" ]] || { warn "[Part 1] dist 目录不存在: $dist_dir,跳过"; return 0; }
|
|||
|
|
|
|||
|
|
local version
|
|||
|
|
version=$(grep -oP '"version"\s*:\s*"\K[^"]+' "$oc_dir/package.json" 2>/dev/null || echo "unknown")
|
|||
|
|
info "[Part 1] OpenClaw 版本: $version"
|
|||
|
|
|
|||
|
|
# 版本门控:仅 2026.4.23
|
|||
|
|
if [[ ! "$version" =~ ^2026\.4\.23($|[-\.]) ]]; then
|
|||
|
|
ok "[Part 1] 版本 $version 不需要 schema patch,跳过"
|
|||
|
|
return 0
|
|||
|
|
fi
|
|||
|
|
|
|||
|
|
# 精确定位:hooks zod schema 的唯一特征
|
|||
|
|
local -a candidates
|
|||
|
|
mapfile -t candidates < <(
|
|||
|
|
grep -rl 'allowPromptInjection' "$dist_dir" --include='*.js' 2>/dev/null | while read -r _f; do
|
|||
|
|
if perl -0777 -ne 'exit(0) if /allowPromptInjection\s*:\s*[a-zA-Z_\$][a-zA-Z0-9_\$]*\s*\.\s*boolean\s*\(\s*\)\s*\.\s*optional\s*\(\s*\)\s*[,\s]*\}\s*\)\s*\.\s*strict\s*\(\s*\)/; exit(1)' "$_f" 2>/dev/null; then
|
|||
|
|
echo "$_f"
|
|||
|
|
fi
|
|||
|
|
done
|
|||
|
|
)
|
|||
|
|
|
|||
|
|
if [[ ${#candidates[@]} -eq 0 ]]; then
|
|||
|
|
warn "[Part 1] 未找到 hooks zod schema 目标文件,跳过"
|
|||
|
|
return 0
|
|||
|
|
elif [[ ${#candidates[@]} -gt 1 ]]; then
|
|||
|
|
warn "[Part 1] 发现 ${#candidates[@]} 个匹配文件(预期 1),安全起见跳过"
|
|||
|
|
return 0
|
|||
|
|
fi
|
|||
|
|
|
|||
|
|
local target="${candidates[0]}"
|
|||
|
|
local relpath="${target#$dist_dir/}"
|
|||
|
|
debug "[Part 1] 目标: $relpath"
|
|||
|
|
|
|||
|
|
# 幂等:目标文件中已包含 allowConversationAccess → 跳过
|
|||
|
|
if grep -q 'allowConversationAccess' "$target" 2>/dev/null; then
|
|||
|
|
ok "[Part 1] allowConversationAccess 已存在于 $relpath,跳过"
|
|||
|
|
return 0
|
|||
|
|
fi
|
|||
|
|
|
|||
|
|
# 备份
|
|||
|
|
[[ -f "${target}.pre-aca-patch.bak" ]] || cp "$target" "${target}.pre-aca-patch.bak"
|
|||
|
|
|
|||
|
|
# 注入:用精确变量名匹配,避免贪婪回溯
|
|||
|
|
perl -0777 -i -pe '
|
|||
|
|
s/(allowPromptInjection\s*:\s*[a-zA-Z_\$][a-zA-Z0-9_\$]*\s*\.\s*boolean\s*\(\s*\)\s*\.\s*optional\s*\(\s*\))(\s*\}\s*\)\s*\.\s*strict\s*\(\s*\))/$1,allowConversationAccess:z.boolean().optional()$2/
|
|||
|
|
' "$target"
|
|||
|
|
|
|||
|
|
# 验证
|
|||
|
|
if grep -q 'allowConversationAccess' "$target" 2>/dev/null; then
|
|||
|
|
ok "[Part 1] $relpath — patch 成功"
|
|||
|
|
else
|
|||
|
|
warn "[Part 1] patch 验证失败,恢复备份"
|
|||
|
|
cp "${target}.pre-aca-patch.bak" "$target"
|
|||
|
|
return 1
|
|||
|
|
fi
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
# ═══════════════════════════════════════════════════════════════════
|
|||
|
|
# Part 2: 写入 openclaw.json (不限版本,始终确保配置存在)
|
|||
|
|
# ═══════════════════════════════════════════════════════════════════
|
|||
|
|
|
|||
|
|
patch_config_json() {
|
|||
|
|
if [[ ! -f "$OPENCLAW_JSON" ]]; then
|
|||
|
|
warn "[Part 2] openclaw.json 不存在: $OPENCLAW_JSON,跳过"
|
|||
|
|
return 0
|
|||
|
|
fi
|
|||
|
|
|
|||
|
|
# 幂等检测
|
|||
|
|
local exists
|
|||
|
|
exists=$(python3 -c "
|
|||
|
|
import json
|
|||
|
|
try:
|
|||
|
|
with open('$OPENCLAW_JSON') as f:
|
|||
|
|
cfg = json.load(f)
|
|||
|
|
val = cfg.get('plugins',{}).get('entries',{}).get('$PLUGIN_ID',{}).get('hooks',{}).get('allowConversationAccess')
|
|||
|
|
print('yes' if val is True else 'no')
|
|||
|
|
except Exception:
|
|||
|
|
print('no')
|
|||
|
|
" 2>/dev/null || echo "no")
|
|||
|
|
|
|||
|
|
if [[ "$exists" == "yes" ]]; then
|
|||
|
|
ok "[Part 2] hooks.allowConversationAccess 已存在,跳过"
|
|||
|
|
return 0
|
|||
|
|
fi
|
|||
|
|
|
|||
|
|
# 写入
|
|||
|
|
python3 -c "
|
|||
|
|
import json
|
|||
|
|
|
|||
|
|
with open('$OPENCLAW_JSON') as f:
|
|||
|
|
cfg = json.load(f)
|
|||
|
|
|
|||
|
|
entry = cfg.setdefault('plugins', {}).setdefault('entries', {}).setdefault('$PLUGIN_ID', {})
|
|||
|
|
hooks = entry.setdefault('hooks', {})
|
|||
|
|
hooks['allowConversationAccess'] = True
|
|||
|
|
|
|||
|
|
with open('$OPENCLAW_JSON', 'w') as f:
|
|||
|
|
json.dump(cfg, f, indent=2, ensure_ascii=False)
|
|||
|
|
f.write('\n')
|
|||
|
|
"
|
|||
|
|
ok "[Part 2] hooks.allowConversationAccess = true 已写入"
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
# ═══════════════════════════════════════════════════════════════════
|
|||
|
|
# 主入口
|
|||
|
|
# ═══════════════════════════════════════════════════════════════════
|
|||
|
|
|
|||
|
|
info "── bugfix-20260423: allowConversationAccess ──"
|
|||
|
|
|
|||
|
|
patch_dist_js "${1:-}"
|
|||
|
|
patch_config_json
|
|||
|
|
|
|||
|
|
echo ""
|
|||
|
|
ok "bugfix-20260423 完成"
|