Instantané de liste Trello

VérifiéSûr

Récupère les cartes d'une liste Trello spécifique, avec filtre optionnel par date, et les retourne sous forme de tableau structuré et de vue Markdown.

Spar Skills Guide Bot
ProductiviteIntermédiaire
0023/07/2026
Claude Code
#trello#list-snapshot#cards#reporting#project-management

Recommandé pour

Notre avis

Récupère les cartes d'une liste Trello spécifique et les retourne sous forme de tableau structuré et de vue markdown.

Points forts

  • Récupération simple d'une liste unique par ID
  • Filtrage optionnel par date de dernière activité
  • Deux formats de rendu markdown (compact et détaillé)
  • Tri des cartes par activité récente

Limites

  • Nécessite que l'ID de la liste soit déjà connu
  • Ne gère pas les listes multiples ni les tableaux entiers
  • Le filtre 'since' est inclusif, ce qui peut nécessiter un ajustement pour un filtrage strict
Quand l'utiliser

Utilisez cette compétence pour obtenir un instantané formaté d'une liste Trello spécifique, par exemple pour un rapport quotidien ou un suivi de progression.

Quand l'éviter

Évitez cette compétence si vous devez traverser plusieurs listes ou tableaux ; utilisez plutôt une compétence de résolution comme 'trello-board-resolver'.

Analyse de sécurité

Sûr
Score qualité88/100

The skill only uses the allowed mcp__trello__get_cards tool to fetch data from Trello. It performs no destructive actions, does not make external network calls, and does not execute arbitrary code. Inputs are validated to only affect the fetch operation, and there is no risk of data exfiltration or system harm.

Aucun point d'attention détecté

Exemples

Compact list snapshot
Fetch the cards from Trello list ID '5f3c...' and show them in compact markdown format.
Detailed snapshot with since filter
Retrieve the cards from Trello list 'abc123' that have been active since '2025-03-01T00:00:00Z' and display them in detailed markdown, labeling the list as 'Today'.

name: trello-list-snapshot description: > 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. user-invocable: false allowed-tools: mcp__trello__get_cards

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 whose date_last_activity is >= since are returned (server-side filter via the Trello-MCP since parameter).
  • format (optional, default detailed) — compact or detailed. 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:

  1. A structured array of cards, each with: id, name, desc, due, due_complete, labels, url, member_ids, date_last_activity.
  2. A markdown block. Sort by date_last_activity descending (most recent first). If the list is empty after filtering, render _(no cards)_.

Behavior

  1. Call mcp__trello__get_cards(list_id=<list_id>, since=<since>?). Omit since from the call when it is not provided — do not pass empty string or null.

  2. Sort the returned cards by date_last_activity descending.

  3. 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>
    
  4. Return the structured array and the markdown string to the caller.

Notes

  • The Trello-MCP since filter is inclusive (>=). Callers that want a strict "after" should pass since one millisecond past the cutoff.
  • date_last_activity is "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_boards or list_lists from this skill; the caller is expected to have resolved the list_id already (e.g. via trello-board-resolver).
Skills similaires