npx skills add https://github.com/dandcg/claude-skills --skill trello通过 Trello REST API 管理 Trello 看板、列表和卡片。
~/.trello/ 中配置凭据(如果未完成,请运行设置)如果未配置,请运行:
~/.claude/skills/trello/scripts/trello-setup.sh
# 列出所有看板
~/.claude/skills/trello/scripts/trello-boards.sh boards
# 按名称查找看板
~/.claude/skills/trello/scripts/trello-boards.sh find "Shopping"
# 获取看板详情
~/.claude/skills/trello/scripts/trello-boards.sh board <board-id>
# 列出看板中的所有列表
~/.claude/skills/trello/scripts/trello-boards.sh lists <board-id>
# 获取列表详情
~/.claude/skills/trello/scripts/trello-boards.sh list <list-id>
# 列出列表中的卡片
~/.claude/skills/trello/scripts/trello-cards.sh list <list-id>
# 列出更多卡片
~/.claude/skills/trello/scripts/trello-cards.sh list <list-id> 100
# 获取 JSON 输出(用于脚本编写/排序)
~/.claude/skills/trello/scripts/trello-cards.sh list-json <list-id>
# 读取完整卡片详情
~/.claude/skills/trello/scripts/trello-cards.sh read <card-id>
Manage Trello boards, lists, and cards via the Trello REST API.
~/.trello/ (run setup if not done)If not configured, run:
~/.claude/skills/trello/scripts/trello-setup.sh
# List all boards
~/.claude/skills/trello/scripts/trello-boards.sh boards
# Find board by name
~/.claude/skills/trello/scripts/trello-boards.sh find "Shopping"
# Get board details
~/.claude/skills/trello/scripts/trello-boards.sh board <board-id>
# List all lists in a board
~/.claude/skills/trello/scripts/trello-boards.sh lists <board-id>
# Get list details
~/.claude/skills/trello/scripts/trello-boards.sh list <list-id>
# List cards in a list
~/.claude/skills/trello/scripts/trello-cards.sh list <list-id>
# List more cards
~/.claude/skills/trello/scripts/trello-cards.sh list <list-id> 100
# Get JSON output (for scripting/sorting)
~/.claude/skills/trello/scripts/trello-cards.sh list-json <list-id>
# Read full card details
~/.claude/skills/trello/scripts/trello-cards.sh read <card-id>
广告位招租
在这里展示您的产品或服务
触达数万 AI 开发者,精准高效
# 创建卡片
~/.claude/skills/trello/scripts/trello-cards.sh create <list-id> "Card title" "Optional description"
# 更新卡片字段(name、desc、due、closed)
~/.claude/skills/trello/scripts/trello-cards.sh update <card-id> name "New title"
# 将卡片移动到另一个列表
~/.claude/skills/trello/scripts/trello-cards.sh move <card-id> <list-id>
# 将卡片移动到列表顶部
~/.claude/skills/trello/scripts/trello-cards.sh top <card-id>
# 将卡片移动到列表底部
~/.claude/skills/trello/scripts/trello-cards.sh bottom <card-id>
# 设置特定位置(数字或 'top'/'bottom')
~/.claude/skills/trello/scripts/trello-cards.sh position <card-id> 12345
# 添加评论
~/.claude/skills/trello/scripts/trello-cards.sh comment <card-id> "Comment text"
# 列出评论
~/.claude/skills/trello/scripts/trello-cards.sh comments <card-id>
# 归档卡片
~/.claude/skills/trello/scripts/trello-cards.sh archive <card-id>
# 恢复已归档的卡片
~/.claude/skills/trello/scripts/trello-cards.sh unarchive <card-id>
# 永久删除
~/.claude/skills/trello/scripts/trello-cards.sh delete <card-id>
# 显示标签
~/.claude/skills/trello/scripts/trello-cards.sh labels <card-id>
# 显示分配成员
~/.claude/skills/trello/scripts/trello-cards.sh members <card-id>
# 显示检查清单
~/.claude/skills/trello/scripts/trello-cards.sh checklist <card-id>
当用户希望按类别(如按商店区域对食品项目)排序卡片时:
以 JSON 格式获取列表中的所有卡片:
~/.claude/skills/trello/scripts/trello-cards.sh list-json <list-id>
分析卡片名称并对其进行分类(例如,农产品、乳制品、肉类、烘焙食品、冷冻食品等)
向用户提议按类别分组的新顺序
获得批准后,更新每张卡片的位置:
# 第一张卡片获得位置 1000
~/.claude/skills/trello/scripts/trello-cards.sh position <card-id-1> 1000
# 第二张卡片获得位置 2000
~/.claude/skills/trello/scripts/trello-cards.sh position <card-id-2> 2000
# 依此类推...
这保留了原始列表,但重新排序卡片,使相同类别的项目分组在一起。
创建前始终确认:
每周安装数
1
仓库
首次出现
1 天前
安全审计
安装于
amp1
cline1
opencode1
cursor1
kimi-cli1
codex1
# Create a card
~/.claude/skills/trello/scripts/trello-cards.sh create <list-id> "Card title" "Optional description"
# Update card field (name, desc, due, closed)
~/.claude/skills/trello/scripts/trello-cards.sh update <card-id> name "New title"
# Move card to another list
~/.claude/skills/trello/scripts/trello-cards.sh move <card-id> <list-id>
# Move card to top of list
~/.claude/skills/trello/scripts/trello-cards.sh top <card-id>
# Move card to bottom of list
~/.claude/skills/trello/scripts/trello-cards.sh bottom <card-id>
# Set specific position (number or 'top'/'bottom')
~/.claude/skills/trello/scripts/trello-cards.sh position <card-id> 12345
# Add comment
~/.claude/skills/trello/scripts/trello-cards.sh comment <card-id> "Comment text"
# List comments
~/.claude/skills/trello/scripts/trello-cards.sh comments <card-id>
# Archive card
~/.claude/skills/trello/scripts/trello-cards.sh archive <card-id>
# Restore archived card
~/.claude/skills/trello/scripts/trello-cards.sh unarchive <card-id>
# Delete permanently
~/.claude/skills/trello/scripts/trello-cards.sh delete <card-id>
# Show labels
~/.claude/skills/trello/scripts/trello-cards.sh labels <card-id>
# Show assigned members
~/.claude/skills/trello/scripts/trello-cards.sh members <card-id>
# Show checklists
~/.claude/skills/trello/scripts/trello-cards.sh checklist <card-id>
When user wants to sort cards by category (like food items by store section):
Get all cards in the list as JSON:
~/.claude/skills/trello/scripts/trello-cards.sh list-json <list-id>
Analyze the card names and categorize them (e.g., Produce, Dairy, Meat, Bakery, Frozen, etc.)
Propose the new order to the user, grouped by category
After approval, update positions for each card:
# First card gets position 1000
~/.claude/skills/trello/scripts/trello-cards.sh position <card-id-1> 1000
# Second card gets position 2000
~/.claude/skills/trello/scripts/trello-cards.sh position <card-id-2> 2000
# And so on...
This keeps the original list but reorders cards so same-category items are grouped together.
Always confirm before creating:
Weekly Installs
1
Repository
First Seen
1 day ago
Security Audits
Installed on
amp1
cline1
opencode1
cursor1
kimi-cli1
codex1
开源项目教练指南 - 诊断问题、制定行动计划、优化开源项目运营
31,600 周安装
AgentOps技能转换器 - 一键将技能转换为Codex、Cursor等AI平台格式
212 周安装
Agile Skill Build:快速创建和扩展ace-skills的自动化工具,提升AI技能开发效率
1 周安装
LLM评估工具lm-evaluation-harness使用指南:HuggingFace模型基准测试与性能分析
212 周安装
Agently TriggerFlow 状态与资源管理:runtime_data、flow_data 和运行时资源详解
1 周安装
Agently Tools 工具系统详解:Python 代理工具注册、循环控制与内置工具使用
1 周安装
Agently Prompt配置文件技能:YAML/JSON提示模板加载、映射与导出指南
1 周安装