Trello

PassAudited by ClawScan on May 1, 2026.

Overview

This is a straightforward Trello API helper, but it uses Trello credentials that can access your account and includes commands that can change or archive cards.

Use this skill only if you are comfortable giving Clawdbot Trello API access. Keep the API key and token secret, prefer the narrowest Trello token permissions available, confirm IDs before any write action, and revoke the token if you stop using the skill.

Findings (2)

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

What this means

Anyone or any process with these environment variables could act through the user's Trello account within the token's permissions.

Why it was flagged

The skill requires Trello credentials and explicitly states that the token can access the user's account. This is expected for the integration, but it is high-privilege access.

Skill content
The API key and token provide full access to your Trello account - keep them secret!
Recommendation

Use a Trello token only for users who need this access, store it securely, avoid exposing environment variables in logs or shared shells, and revoke the token when no longer needed.

What this means

If used on the wrong card, board, or list, the skill could create, move, comment on, or archive Trello cards unintentionally.

Why it was flagged

The skill documents direct Trello API write operations, including archiving a card. These operations are aligned with the stated management purpose, but they can change Trello data.

Skill content
### Archive a card
curl -s -X PUT "https://api.trello.com/1/cards/{cardId}?key=$TRELLO_API_KEY&token=$TRELLO_TOKEN" \
  -d "closed=true"
Recommendation

Review board/list/card IDs before running write operations and require clear user intent before creating, moving, commenting on, or archiving cards.