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
5 changes: 0 additions & 5 deletions examples/openclaw-plugin/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2021,11 +2021,6 @@ configure_openclaw_plugin() {
return 0
fi

# Set gateway mode
if [[ "${skip_gateway_mode}" != "1" ]]; then
"${oc_env[@]}" openclaw config set gateway.mode "${SELECTED_MODE}"
fi

# Set plugin config for the selected mode
if [[ "$SELECTED_MODE" == "local" ]]; then
local ov_conf_path="${SELECTED_CONFIG_PATH:-${OPENVIKING_DIR}/ov.conf}"
Expand Down
4 changes: 0 additions & 4 deletions examples/openclaw-plugin/setup-helper/install.js
Original file line number Diff line number Diff line change
Expand Up @@ -2094,10 +2094,6 @@ async function configureOpenClawPlugin({
: { mode: "local", configPath: join(OPENVIKING_DIR, "ov.conf"), port: selectedServerPort }
);

if (!skipGatewayMode) {
await oc(["config", "set", "gateway.mode", effectiveRuntimeConfig.mode === "remote" ? "remote" : "local"]);
}

// Set plugin config for the selected mode
if (effectiveRuntimeConfig.mode === "local") {
const ovConfPath = effectiveRuntimeConfig.configPath || join(OPENVIKING_DIR, "ov.conf");
Expand Down
2 changes: 1 addition & 1 deletion examples/openclaw-plugin/setup-helper/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "openclaw-openviking-setup-helper",
"version": "0.2.11",
"version": "0.2.15",
"description": "Setup helper for installing OpenViking memory plugin into OpenClaw",
"type": "module",
"bin": {
Expand Down
Loading