From 83ae5e8bef093afe2225e6dae54f1c541aaa889f Mon Sep 17 00:00:00 2001 From: liuhao1024 Date: Fri, 19 Jun 2026 09:06:59 +0800 Subject: [PATCH] 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 --- skills/trello/SKILL.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skills/trello/SKILL.md b/skills/trello/SKILL.md index a1768f0b4dca..e87e918c1af0 100644 --- a/skills/trello/SKILL.md +++ b/skills/trello/SKILL.md @@ -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": [ {