AgentStack
SKILL verified MIT Self-run

Using Trello Cli

skill-scale-flow-trello-cli-using-trello-cli · by Scale-Flow

Operate Trello through the local CLI tool. Use this skill whenever the user asks to create, update, move, archive, search, or inspect Trello boards, lists, cards, comments, checklists, attachments, labels, members, or custom fields — or when they mention the Trello CLI, `trello` command, or want to manage Trello from the terminal. Also use this when working in the Trello_CLI repository and needin…

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

Install

$ agentstack add skill-scale-flow-trello-cli-using-trello-cli

✓ 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 No
  • 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.

Are you the author of Using Trello Cli? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

This skill teaches you how to translate natural-language Trello requests into safe, multi-step trello CLI workflows. The CLI outputs deterministic JSON — every response is machine-parseable and follows a stable contract.

Resolve the Binary

Try these in order — use whichever works first:

  1. trello on PATH
  2. ./bin/trello (relative to the repo root)
  3. Build from the repo: go build -o bin/trello ./cmd/trello

Once resolved, use that path for all subsequent commands in the session.

Preflight: Check Auth

Before any resource command, verify credentials are configured:

trello auth status

The response follows the JSON envelope. If ok is false or the auth mode is key_only, stop and explain the issue to the user. Do not attempt resource commands without valid auth.

Auth can come from three sources:

  • Device flow (preferred — via trello auth login with Power-Up pairing)
  • OS keyring (stored credentials via trello auth set or trello auth login)
  • Environment variables TRELLO_API_KEY and TRELLO_TOKEN

Device Flow Authentication (Preferred)

When authenticating a new user, prefer the device flow over manual API key setup:

  1. Run trello auth login — this contacts the pairing service and displays a code
  2. Present the pairing code to the user: "Enter this code in your Trello board's CLI Connector Power-Up: XXXX-XXXX"
  3. The command blocks until the user completes pairing (up to 15 minutes)
  4. On success, credentials are stored automatically — no API key or token handling needed
  5. If the pairing service is unavailable, the CLI falls back to browser-based login automatically

The device flow is ideal for non-technical users and agent-driven workflows because it requires no developer portal access.

Core Workflow: Discover, Mutate, Verify

Every Trello task follows this shape:

  1. Discover — find the IDs you need (boards, lists, cards) using read commands or search
  2. Mutate — run the minimum command to accomplish the task
  3. Verify — re-fetch the resource to confirm the change took effect

This matters because the CLI uses IDs, not names. Never guess an ID — always discover it first.

Example: "Create a card in the Doing list on the Marketing board"

  1. trello boards list → find Marketing board ID
  2. trello lists list --board → find Doing list ID
  3. trello cards create --list --name "My card"
  4. trello cards get --card → confirm creation

JSON Contract

Every command returns one of two envelopes:

{"ok": true, "data": ...}
{"ok": false, "error": {"code": "...", "message": "..."}}

Always branch on ok. Read payloads from data, errors from error.code and error.message. The --pretty flag changes formatting only, not the schema.

Use compact JSON (no --pretty) when piping output or extracting values programmatically. Use --pretty when showing results to the user.

Safety Rules

  • Prefer reads first when names are ambiguous — list boards/lists before mutating
  • Use IDs after discovery — never pass names where an ID is expected
  • Never guess IDs — always discover them from a list or search command
  • Re-fetch after mutations when confirmation matters
  • Validate file paths before attachments add-file
  • Use ISO-8601 for --due and --date values
  • cards list requires exactly one of --board or --list, never both
  • Update commands need at least one mutation field

Intent Interpretation

When the user describes a Trello task in natural language, translate it into a multi-step workflow — not a single command. Think about what IDs you need and how to get them.

Common patterns:

  • "Move card X to Done" → discover the Done list ID, then cards move, then verify
  • "Add a checklist to card X" → checklists create, add items, list to confirm
  • "Find boards about marketing" → search boards --query marketing or boards list and filter
  • "Set priority to High on card X" → discover custom field ID, then custom-fields items set

Read references/task-recipes.md for complete workflow recipes covering all resource types.

Command Reference

The CLI has 12 top-level command groups: auth, boards, lists, cards, comments, checklists, attachments, custom-fields, labels, members, search, version.

Read references/command-digest.md for the full command surface, flags, and validation rules.

Error Handling

When a command returns ok: false, check the error code:

| Code | Meaning | What to do | |------|---------|------------| | AUTH_REQUIRED | No credentials configured | Guide user through auth set or auth login | | AUTH_INVALID | Credentials rejected by Trello | Credentials may be expired — re-authenticate | | NOT_FOUND | Resource ID doesn't exist | Re-discover the ID | | VALIDATION_ERROR | Bad input (missing flag, wrong format) | Fix the command flags | | RATE_LIMITED | Trello API rate limit hit | Wait and retry | | CONFLICT | Resource state conflict | Re-fetch and retry |

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.