trello-list-snapshot
Retrieves cards from a Trello list ID and formats them as structured data and markdown.
Install
mkdir -p .claude/skills/trello-list-snapshot && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/16313" && unzip -o skill.zip -d .claude/skills/trello-list-snapshot && rm skill.zipInstalls to .claude/skills/trello-list-snapshot
Activation
This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.
Fetch the cards in a single Trello list (optionally filtered by activity date with `since`) and return them as both a structured array and a markdown-formatted view. Use this whenever a skill needs the contents of a specific Trello list by ID.Key capabilities
- →Fetch Trello cards from a specified list
- →Filter cards by date of last activity
- →Return cards as a structured JSON array
- →Render cards as a detailed markdown block
- →Render cards as a compact markdown block
How it works
The skill calls the `mcp__trello__get_cards` tool with the provided list ID and optional 'since' filter. It then sorts the returned cards by `date_last_activity` and renders them into both a structured array and a markdown block.
Inputs & outputs
When to use trello-list-snapshot
- →Generating daily status reports from a Trello board
- →Syncing Trello tasks to a project dashboard
- →Summarizing recently active cards for team updates
About this skill
trello-list-snapshot
Single-list fetch + format. Reusable building block for any Trello reporting skill.
Inputs
list_id(required) — Trello list ID.since(optional) — ISO 8601 UTC timestamp. When provided, only cards whosedate_last_activityis>= sinceare returned (server-side filter via the Trello-MCPsinceparameter).format(optional, defaultdetailed) —compactordetailed. Controls the markdown rendering; the structured array is unaffected.label(optional) — a short label for the list (e.g. "Doing") used in the markdown heading. Defaults to "List".
Output
Return both:
- A structured array of cards, each with:
id,name,desc,due,due_complete,labels,url,member_ids,date_last_activity. - A markdown block. Sort by
date_last_activitydescending (most recent first). If the list is empty after filtering, render_(no cards)_.
Behavior
-
Call
mcp__trello__get_cards(list_id=<list_id>, since=<since>?). Omitsincefrom the call when it is not provided — do not pass empty string or null. -
Sort the returned cards by
date_last_activitydescending. -
Render markdown:
detailed:
### <label> (<n> cards) - **<name>** — _<date_last_activity>_ - Due: <due> · Labels: <label-names> - Members: <member_ids joined> - <url> - <first line of desc, truncated to 200 chars> (if non-empty)compact:
### <label> (<n> cards) - <name> · <date_last_activity> · <url> -
Return the structured array and the markdown string to the caller.
Notes
- The Trello-MCP
sincefilter is inclusive (>=). Callers that want a strict "after" should passsinceone millisecond past the cutoff. date_last_activityis "any activity," not specifically a list move. The daily-summary skill explains why this is an acceptable proxy for "completed since" when reading the Done list.- Do not call
list_boardsorlist_listsfrom this skill; the caller is expected to have resolved thelist_idalready (e.g. viatrello-board-resolver).
When not to use it
- →When the user needs to list boards or lists
- →When the user needs to modify Trello cards
- →When the user needs to fetch cards from multiple lists simultaneously
Limitations
- →Does not call `list_boards` or `list_lists`.
- →The `since` filter is inclusive (>=).
- →Does not support fetching cards from multiple lists.
How it compares
This skill provides a standardized way to fetch and format Trello cards from a single list, including filtering and sorting, making it a reusable building block for reporting, unlike manually interacting with the Trello API.
Compared to similar skills
trello-list-snapshot side by side with the closest alternatives in the catalog.
| Skill | Installs | Updated | Safety | Difficulty |
|---|---|---|---|---|
| trello-list-snapshot (this skill) | 0 | 3mo | No flags | Beginner |
| word | 26 | 9mo | Review | Beginner |
| youtube-clipper | 11 | 6mo | Review | Intermediate |
| daily | 1 | 6mo | No flags | Beginner |
Try saying
Example prompts that trigger this skill in your AI assistant.
You might also like
word
Fergana-Labs
Create, read, edit, and manipulate Microsoft Word documents (.docx files). Use when users ask to work with Word files, create documents, read .docx files, or format text documents.
youtube-clipper
op7418
YouTube 视频智能剪辑工具。下载视频和字幕,AI 分析生成精细章节(几分钟级别), 用户选择片段后自动剪辑、翻译字幕为中英双语、烧录字幕到视频,并生成总结文案。 使用场景:当用户需要剪辑 YouTube 视频、生成短视频片段、制作双语字幕版本时。 关键词:视频剪辑、YouTube、字幕翻译、双语字幕、视频下载、clip video
daily
ballred
Create daily notes and manage morning, midday, and evening routines. Structure daily planning, task review, and end-of-day reflection. Use for daily productivity routines or when asked to create today's note.
office-docs
Xxiii8322766509
Extract text and tables from .docx and .xlsx using local scripts (no external deps).
feature-pipeline
notedit
Execute implementation tasks from design documents using markdown checkboxes. Use when (1) implementing features from feature-analyzer output, (2) resuming interrupted work, (3) batch executing tasks. Triggers on 'start implementation', 'run tasks', 'resume'.
add
yutkat
Categorize new Neovim plugins and insert them into the correct markdown category files