mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-09 15:59:30 +00:00
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:
parent
55323103b9
commit
83ae5e8bef
1 changed files with 1 additions and 1 deletions
|
|
@ -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":
|
||||
[
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue