fix(skills/trello): add curl to requires.bins to match body examples

The Trello skill's requires.bins only declared ["jq"], but every code
example in the SKILL.md body uses curl (11 occurrences). This caused
openclaw skills check to report the skill as ready on curl-less systems,
leading to runtime failures on the first command.

Added "curl" to requires.bins to align the gate with actual usage,
matching the pattern used by sibling skills (notion, openai-whisper-api).

Fixes #94727
This commit is contained in:
liuhao1024 2026-06-19 09:06:59 +08:00
parent 55323103b9
commit 83ae5e8bef

View file

@ -7,7 +7,7 @@ metadata:
"openclaw":
{
"emoji": "📋",
"requires": { "bins": ["jq"], "env": ["TRELLO_API_KEY", "TRELLO_TOKEN"] },
"requires": { "bins": ["curl", "jq"], "env": ["TRELLO_API_KEY", "TRELLO_TOKEN"] },
"install":
[
{