From b14a3dfe87316723ec6f1fb4b3ef6e07c9028f7d Mon Sep 17 00:00:00 2001 From: James Date: Thu, 30 Apr 2026 20:05:43 +0800 Subject: [PATCH] fix(#707): declare allowConversationAccess in plugin manifest Add hooks.allowConversationAccess: true to openclaw.plugin.json so OpenClaw auto-grants the permission at plugin load time. Non-bundled plugins must opt-in to use conversation-accessing typed hooks (agent_end, llm_input, llm_output, before_agent_finalize). Without this flag the hooks are silently blocked, causing smartExtraction and memoryReflection to fail with no user-facing error. Fixes: CortexReach/memory-lancedb-pro#707 --- openclaw.plugin.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/openclaw.plugin.json b/openclaw.plugin.json index 574ec2fb..7e58b0e7 100644 --- a/openclaw.plugin.json +++ b/openclaw.plugin.json @@ -7,6 +7,9 @@ "skills": [ "./skills" ], + "hooks": { + "allowConversationAccess": true + }, "configSchema": { "type": "object", "additionalProperties": false,