From 1978a375e3a71f19e2f832328493db254f791546 Mon Sep 17 00:00:00 2001 From: dtzp555 Date: Thu, 25 Jun 2026 11:24:47 +1000 Subject: [PATCH] =?UTF-8?q?fix(ocp-plugin):=20add=20openclaw.extensions=20?= =?UTF-8?q?for=20OpenClaw=202026.5.27=20compat=20+=20sync=20version=20(?= =?UTF-8?q?=E2=91=A1/ocp)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ocp-plugin/package.json's openclaw object lacked the 'extensions' field that OpenClaw 2026.5.27 requires to install/load a plugin (matches the sibling olp plugin). Without it the daemon refused to load the local path plugin, breaking /ocp Telegram commands. Version synced 3.12.0 -> 3.16.2 to match the manifest. Plugin-layer change; no server.mjs / ALIGNMENT cli.js surface touched. --- ocp-plugin/package.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/ocp-plugin/package.json b/ocp-plugin/package.json index c8e7760..68e1a3b 100644 --- a/ocp-plugin/package.json +++ b/ocp-plugin/package.json @@ -1,6 +1,6 @@ { "name": "ocp", - "version": "3.12.0", + "version": "3.16.2", "description": "Slash commands for the OpenClaw Proxy", "main": "index.js", "type": "module", @@ -9,6 +9,7 @@ "openclaw": { "type": "plugin", "id": "ocp", - "pluginManifest": "openclaw.plugin.json" + "pluginManifest": "openclaw.plugin.json", + "extensions": ["./index.js"] } } \ No newline at end of file