AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Trello

skill-claude-world-claude-agent-trello · by claude-world

>

No reviews yet
0 installs
34 views
0.0% view→install

Install

$ agentstack add skill-claude-world-claude-agent-trello

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access Used
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-claude-world-claude-agent-trello)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
4mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Trello? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Trello

Manage Trello via the REST API using curl. No separate CLI install needed.

Prerequisites

No install needed beyond curl (pre-installed on macOS/Linux).

Set up credentials as environment variables:

export TRELLO_API_KEY="your_api_key"
export TRELLO_TOKEN="your_token"

Get your credentials:

  1. API Key: https://trello.com/app-key
  2. Token: Click "Token" link on that page and authorize

Store them in your shell profile (~/.zshrc or ~/.bashrc) or in 1Password and inject via op run.

Commands

Base URL: https://api.trello.com/1 Auth params: key=$TRELLO_API_KEY&token=$TRELLO_TOKEN

Boards

# List all boards
curl -s "https://api.trello.com/1/members/me/boards?key=$TRELLO_API_KEY&token=$TRELLO_TOKEN" | jq '.[].name'

# Get board ID by name
curl -s "https://api.trello.com/1/members/me/boards?key=$TRELLO_API_KEY&token=$TRELLO_TOKEN" | jq '.[] | select(.name=="My Board") | .id'

Lists

# Get lists on a board
curl -s "https://api.trello.com/1/boards//lists?key=$TRELLO_API_KEY&token=$TRELLO_TOKEN" | jq '.[] | {id, name}'

# Create a list
curl -s -X POST "https://api.trello.com/1/lists?name=&idBoard=&key=$TRELLO_API_KEY&token=$TRELLO_TOKEN"

Cards

# Get cards on a list
curl -s "https://api.trello.com/1/lists//cards?key=$TRELLO_API_KEY&token=$TRELLO_TOKEN" | jq '.[] | {id, name, due}'

# Create a card
curl -s -X POST "https://api.trello.com/1/cards?idList=&name=&desc=&key=$TRELLO_API_KEY&token=$TRELLO_TOKEN"

# Move card to another list
curl -s -X PUT "https://api.trello.com/1/cards/?idList=&key=$TRELLO_API_KEY&token=$TRELLO_TOKEN"

# Archive a card
curl -s -X PUT "https://api.trello.com/1/cards/?closed=true&key=$TRELLO_API_KEY&token=$TRELLO_TOKEN"

# Add due date
curl -s -X PUT "https://api.trello.com/1/cards/?due=2026-03-25T10:00:00.000Z&key=$TRELLO_API_KEY&token=$TRELLO_TOKEN"

Checklists

# Add checklist to card
curl -s -X POST "https://api.trello.com/1/checklists?idCard=&name=&key=$TRELLO_API_KEY&token=$TRELLO_TOKEN"

# Add checklist item
curl -s -X POST "https://api.trello.com/1/checklists//checkItems?name=&key=$TRELLO_API_KEY&token=$TRELLO_TOKEN"

Usage Examples

List all board names:

curl -s "https://api.trello.com/1/members/me/boards?key=$TRELLO_API_KEY&token=$TRELLO_TOKEN" | jq -r '.[].name'

Create a card in "To Do" list:

  1. Get list ID: find the list named "To Do" on your board
  2. Create card:
curl -s -X POST "https://api.trello.com/1/cards?idList=&name=Write+blog+post&key=$TRELLO_API_KEY&token=$TRELLO_TOKEN"

Move a card from "In Progress" to "Done":

curl -s -X PUT "https://api.trello.com/1/cards/?idList=&key=$TRELLO_API_KEY&token=$TRELLO_TOKEN"

Rules

  • Always check that TRELLO_API_KEY and TRELLO_TOKEN are set: [ -z "$TRELLO_API_KEY" ] && echo "Not set"
  • If not set, guide the user to https://trello.com/app-key and stop
  • NEVER log or store API keys/tokens in memory or workspace files
  • Always pipe curl output through jq for readable formatting; install with brew install jq if needed
  • When looking up board/list/card IDs, do a lookup first and cache the IDs for subsequent calls in the same session
  • URL-encode special characters in names and descriptions (spaces → +, etc.)
  • Keep responses concise: confirm action and show the created/updated item name

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.