fix(ocp-plugin): add openclaw.extensions for OpenClaw 2026.5.27 compat + sync version (②/ocp)

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.
This commit is contained in:
2026-06-25 11:24:47 +10:00
parent d97cef7b30
commit 1978a375e3
+3 -2
View File
@@ -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"]
}
}