The skill insecurely exposes sensitive Trello credentials via shell commands, facilitates command injection, and performs unauthorized network exfiltration while lacking necessary tool and capability declarations.
npx skills add https://github.com/firecrawl/openclawThe skill documentation explicitly includes commands that embed sensitive environment variables (TRELLO_API_KEY, TRELLO_TOKEN) directly into command strings, which are prone to exfiltration via process monitoring or shell history logging.
curl -s "https://api.trello.com/1/members/me/boards?key=$TRELLO_API_KEY&token=$TRELLO_TOKEN"
HTTP exfiltration with embedded environment variables detected (seen 10 times in this file at lines 33, 39, 45, 51, 60, 67, 74, 88, 91, 94)
https://api.trello.com/1/members/me/boards?key=$TRELLO_API_KEY&token=$TRELLO_TOKEN
The skill instructs the user to store sensitive Trello API keys and tokens as plain environment variables, which are easily accessible to any other process or malicious sub-agent running in the same environment.
export TRELLO_API_KEY="your-api-key" export TRELLO_TOKEN="your-token"
The provided examples use shell interpolation for IDs (e.g., {boardId}), which encourages users to construct shell commands that are vulnerable to command injection if the IDs are sourced from untrusted input.
curl -s "https://api.trello.com/1/boards/{boardId}/lists?key=$TRELLO_API_KEY&token=$TRELLO_TOKEN"Skill does not specify a license field. Specifying a license helps users understand usage terms.
[](https://mondoo.com/ai-agent-security/skills/github/firecrawl/openclaw/trello)<a href="https://mondoo.com/ai-agent-security/skills/github/firecrawl/openclaw/trello"><img src="https://mondoo.com/ai-agent-security/api/badge/github/firecrawl/openclaw/trello.svg" alt="Mondoo Skill Check" /></a>https://mondoo.com/ai-agent-security/api/badge/github/firecrawl/openclaw/trello.svgSkills can read files, run commands, and access credentials. Mondoo helps organizations manage the security risks of AI agent skills across their entire fleet.