From 96f487213c5a2b819043ababb4ee5f6878c65c77 Mon Sep 17 00:00:00 2001 From: Dewaldt Huysamen Date: Fri, 6 Feb 2026 11:45:43 +0200 Subject: [PATCH] fix(openclaw): remove format:uri to fix ajv warning (#309) Remove `format: "uri"` from hindsightApiUrl schema property. OpenClaw's schema validator uses Ajv without ajv-formats loaded, causing: unknown format "uri" ignored in schema at path "#/properties/hindsightApiUrl" The URI validation isn't critical since invalid URLs will fail at connection time. This removes the warning without affecting functionality. --- hindsight-integrations/openclaw/openclaw.plugin.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/hindsight-integrations/openclaw/openclaw.plugin.json b/hindsight-integrations/openclaw/openclaw.plugin.json index 3f9ba6da..f68ae9eb 100644 --- a/hindsight-integrations/openclaw/openclaw.plugin.json +++ b/hindsight-integrations/openclaw/openclaw.plugin.json @@ -49,8 +49,7 @@ }, "hindsightApiUrl": { "type": "string", - "description": "External Hindsight API URL (e.g. 'https://mcp.hindsight.devcraft.team'). When set, skips local daemon and connects directly to this API.", - "format": "uri" + "description": "External Hindsight API URL (e.g. 'https://mcp.hindsight.devcraft.team'). When set, skips local daemon and connects directly to this API." }, "hindsightApiToken": { "type": "string",