Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问许可证需确认审计提醒

trello-automationTrello 自动化

Agent Skill

trello-automation 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

588

周安装

25

GitHub Stars

52

下载量

206
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:trello-automation(Trello 自动化)
来源仓库:https://github.com/aaaaqwq/claude-code-skills
仓库路径:skills/trello-automation
安装命令:
npx skills add https://github.com/aaaaqwq/claude-code-skills --skill trello-automation
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/aaaaqwq/claude-code-skills --skill trello-automation

简介

trello-automation 通过 Rube MCP 实现 Trello 看板自动化管理,提升团队协作效率。

  • 适用于 Codex、Claude、Cursor、Gemini CLI 中需要创建卡片、更新列表等操作的任务。
  • 支持基于关键词或场景快速定位候选结果,并筛选出合适的自动化流程。
  • 安装前需确保 Rube MCP 已连接且 Trello 授权有效,注意权限和网络访问风险。
  • 建议结合原始 README 查看具体工作流示例和配置要求后再部署使用。

SKILL.md

Trello Automation via Rube MCP

Automate Trello board management, card creation, and team workflows through Composio's Rube MCP integration.

Prerequisites

  • Rube MCP must be connected (RUBE_SEARCH_TOOLS available)
  • Active Trello connection via RUBE_MANAGE_CONNECTIONS with toolkit trello
  • Always call RUBE_SEARCH_TOOLS first to get current tool schemas

Setup

Get Rube MCP: Add https://rube.app/mcp as an MCP server in your client configuration. No API keys needed — just add the endpoint and it works.

  1. Verify Rube MCP is available by confirming RUBE_SEARCH_TOOLS responds
  2. Call RUBE_MANAGE_CONNECTIONS with toolkit trello
  3. If connection is not ACTIVE, follow the returned auth link to complete Trello auth
  4. Confirm connection status shows ACTIVE before running any workflows

Core Workflows

1. Create a Card on a Board

When to use: User wants to add a new card/task to a Trello board

Tool sequence:

  1. TRELLO_GET_MEMBERS_BOARDS_BY_ID_MEMBER - List boards to find target board ID [Prerequisite]
  2. TRELLO_GET_BOARDS_LISTS_BY_ID_BOARD - Get lists on board to find target list ID [Prerequisite]
  3. TRELLO_ADD_CARDS - Create the card on the resolved list [Required]
  4. TRELLO_ADD_CARDS_CHECKLISTS_BY_ID_CARD - Add a checklist to the card [Optional]
  5. TRELLO_ADD_CARDS_CHECKLIST_CHECK_ITEM_BY_ID_CARD_BY_ID_CHECKLIST - Add items to the checklist [Optional]

Key parameters:

  • idList: 24-char hex ID (NOT list name)
  • name: Card title
  • desc: Card description (supports Markdown)
  • pos: Position ('top'/'bottom')
  • due: Due date (ISO 8601 format)

Pitfalls:

  • Store returned id (idCard) immediately; downstream checklist operations fail without it
  • Checklist payload may be nested (data.data); extract idChecklist from inner object
  • One API call per checklist item; large checklists can trigger rate limits

2. Manage Boards and Lists

When to use: User wants to view, browse, or restructure board layout

Tool sequence:

  1. TRELLO_GET_MEMBERS_BOARDS_BY_ID_MEMBER - List all boards for the user [Required]
  2. TRELLO_GET_BOARDS_BY_ID_BOARD - Get detailed board info [Required]
  3. TRELLO_GET_BOARDS_LISTS_BY_ID_BOARD - Get lists (columns) on the board [Optional]
  4. TRELLO_GET_BOARDS_MEMBERS_BY_ID_BOARD - Get board members [Optional]
  5. TRELLO_GET_BOARDS_LABELS_BY_ID_BOARD - Get labels on the board [Optional]

Key parameters:

  • idMember: Use 'me' for authenticated user
  • filter: 'open', 'starred', or 'all'
  • idBoard: 24-char hex or 8-char shortLink (NOT board name)

Pitfalls:

  • Some runs return boards under response.data.details[]—don't assume flat top-level array
  • Lists may be nested under results[0].response.data.details—parse defensively
  • ISO 8601 timestamps with trailing 'Z' must be parsed as timezone-aware

3. Move Cards Between Lists

When to use: User wants to change a card's status by moving it to another list

Tool sequence:

  1. TRELLO_GET_SEARCH - Find the card by name or keyword [Prerequisite]
  2. TRELLO_GET_BOARDS_LISTS_BY_ID_BOARD - Get destination list ID [Prerequisite]
  3. TRELLO_UPDATE_CARDS_BY_ID_CARD - Update card's idList to move it [Required]

Key parameters:

  • idCard: Card ID from search
  • idList: Destination list ID
  • pos: Optional ordering within new list

Pitfalls:

  • Search returns partial matches; verify card name before updating
  • Moving doesn't update position within new list; set pos if ordering matters

4. Assign Members to Cards

When to use: User wants to assign team members to cards

Tool sequence:

  1. TRELLO_GET_BOARDS_MEMBERS_BY_ID_BOARD - Get member IDs from the board [Prerequisite]
  2. TRELLO_ADD_CARDS_ID_MEMBERS_BY_ID_CARD - Add a member to the card [Required]

Key parameters:

  • idCard: Target card ID
  • value: Member ID to assign

Pitfalls:

  • UPDATE_CARDS_ID_MEMBERS replaces entire member list; use ADD_CARDS_ID_MEMBERS to append
  • Member must have board permissions

5. Search and Filter Cards

When to use: User wants to find specific cards across boards

Tool sequence:

  1. TRELLO_GET_SEARCH - Search by query string [Required]

Key parameters:

  • query: Search string (supports board:, list:, label:, is:open/archived operators)
  • modelTypes: Set to 'cards'
  • partial: Set to 'true' for prefix matching

Pitfalls:

  • Search indexing has delay; newly created cards may not appear for several minutes
  • For exact name matching, use TRELLO_GET_BOARDS_CARDS_BY_ID_BOARD and filter locally
  • Query uses word tokenization; common words may be ignored as stop words

6. Add Comments and Attachments

When to use: User wants to add context to an existing card

Tool sequence:

  1. TRELLO_ADD_CARDS_ACTIONS_COMMENTS_BY_ID_CARD - Post a comment on the card [Required]
  2. TRELLO_ADD_CARDS_ATTACHMENTS_BY_ID_CARD - Attach a file or URL [Optional]

Key parameters:

  • text: Comment text (1-16384 chars, supports Markdown and @mentions)
  • url OR file: Attachment source (not both)
  • name: Attachment display name
  • mimeType: File MIME type

Pitfalls:

  • Comments don't support file attachments; use the attachment tool separately
  • Attachment deletion is irreversible

Common Patterns

ID Resolution

Always resolve display names to IDs before operations:

  • Board name → Board ID: TRELLO_GET_MEMBERS_BOARDS_BY_ID_MEMBER with idMember='me'
  • List name → List ID: TRELLO_GET_BOARDS_LISTS_BY_ID_BOARD with resolved board ID
  • Card name → Card ID: TRELLO_GET_SEARCH with query string
  • Member name → Member ID: TRELLO_GET_BOARDS_MEMBERS_BY_ID_BOARD

Pagination

Most list endpoints return all items. For boards with 1000+ cards, use limit and before parameters on card listing endpoints.

Rate Limits

300 requests per 10 seconds per token. Use TRELLO_GET_BATCH for bulk read operations to stay within limits.

Known Pitfalls

  • ID Requirements: Nearly every tool requires IDs, not display names. Always resolve names to IDs first.
  • Board ID Format: Board IDs must be 24-char hex or 8-char shortLink. URL slugs like 'my-board' are NOT valid.
  • Search Delays: Search indexing has delays; newly created/updated cards may not appear immediately.
  • Nested Responses: Response data is often nested (data.data or data.details[]); parse defensively.
  • Rate Limiting: 300 req/10s per token. Batch reads with TRELLO_GET_BATCH.

Quick Reference

TaskTool SlugKey Params
List user's boardsTRELLO_GET_MEMBERS_BOARDS_BY_ID_MEMBERidMember='me', filter='open'
Get board detailsTRELLO_GET_BOARDS_BY_ID_BOARDidBoard (24-char hex)
List board listsTRELLO_GET_BOARDS_LISTS_BY_ID_BOARDidBoard
Create cardTRELLO_ADD_CARDSidList, name, desc, pos, due
Update cardTRELLO_UPDATE_CARDS_BY_ID_CARDidCard, idList (to move)
Search cardsTRELLO_GET_SEARCHquery, modelTypes='cards'
Add checklistTRELLO_ADD_CARDS_CHECKLISTS_BY_ID_CARDidCard, name
Add commentTRELLO_ADD_CARDS_ACTIONS_COMMENTS_BY_ID_CARDidCard, text
Assign memberTRELLO_ADD_CARDS_ID_MEMBERS_BY_ID_CARDidCard, value (member ID)
Attach file/URLTRELLO_ADD_CARDS_ATTACHMENTS_BY_ID_CARDidCard, url OR file
Get board membersTRELLO_GET_BOARDS_MEMBERS_BY_ID_BOARDidBoard
Batch readTRELLO_GET_BATCHurls (comma-separated paths)

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

38.66%
按下载量换算80

Claude

31.7%
按下载量换算65

Cursor

17.16%
按下载量换算35

Gemini CLI

8.71%
按下载量换算18

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills