




















@@ -1230,6 +1230,23 @@ if (mode === "memory-lancedb") {
12301230 },
12311231 };
12321232}
1233+if (mode === "acpx") {
1234+ config.plugins = {
1235+ ...(config.plugins || {}),
1236+ enabled: true,
1237+ allow:
1238+ Array.isArray(config.plugins?.allow) && config.plugins.allow.length > 0
1239+ ? [...new Set([...config.plugins.allow, "acpx"])]
1240+ : config.plugins?.allow,
1241+ entries: {
1242+ ...(config.plugins?.entries || {}),
1243+ acpx: {
1244+ ...(config.plugins?.entries?.acpx || {}),
1245+ enabled: true,
1246+ },
1247+ },
1248+ };
1249+}
1233125012341251fs.mkdirSync(path.dirname(configPath), { recursive: true });
12351252fs.writeFileSync(configPath, `${JSON.stringify(config, null, 2)}\n`, "utf8");
@@ -1465,6 +1482,7 @@ fi
1465148214661483if should_run_update_target acpx; then
14671484 echo "Removing ACPX runtime package and rerunning same-version update path..."
1485+ write_config acpx
14681486 remove_runtime_dep acpx acpx
14691487 assert_no_dep_available acpx acpx
14701488 run_update_and_capture acpx /tmp/openclaw-update-acpx.json
此内容由惯性聚合(RSS阅读器)自动聚合整理,仅供阅读参考。 原文来自 — 版权归原作者所有。