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.
This commit is contained in:
parent
0d8d805832
commit
96f487213c
1 changed files with 1 additions and 2 deletions
|
|
@ -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",
|
||||
|
|
|
|||
Loading…
Reference in a new issue