typescript/skills/trello/SKILL.md
Manage Trello boards, lists, and cards via the Trello REST API.
npx skillsauth add kody-w/openrappter trelloInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Manage Trello boards, lists, and cards.
curl -s "https://api.trello.com/1/members/me/boards?key=$TRELLO_API_KEY&token=$TRELLO_TOKEN" | jq '.[].name'
curl -s "https://api.trello.com/1/boards/BOARD_ID/lists?key=$TRELLO_API_KEY&token=$TRELLO_TOKEN" | jq '.[] | {name, id}'
curl -s -X POST "https://api.trello.com/1/cards" \
-d "key=$TRELLO_API_KEY&token=$TRELLO_TOKEN&idList=LIST_ID&name=New+Card&desc=Description" | jq '{name, url}'
curl -s -X PUT "https://api.trello.com/1/cards/CARD_ID" \
-d "key=$TRELLO_API_KEY&token=$TRELLO_TOKEN&idList=NEW_LIST_ID"
development
Get current weather and forecasts (no API key required).
tools
Send and receive WhatsApp messages via wacli command-line tool.
tools
Start and manage voice calls via the openrappter voice-call plugin.
content-media
Extract frames from video files using ffmpeg for analysis or processing.