smithery/shockz09

uni-trello

Trello boards, lists, and cards via uni CLI. Use when user wants to manage Trello tasks, create boards, move cards between lists. Requires TRELLO_API_KEY and TRELLO_TOKEN.

Installation

$ npx skills add smithery/shockz09 --skill uni-trello

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery/shockz09.

npx skills add smithery/shockz09

Browse all from smithery/shockz09

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Skill metadata

Parsed from SKILL.md frontmatter.

Allowed toolsBash(uni:*), Bash(~/.local/bin/uni:*)

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,638 B
  • docs SUMMARY.md 190 B

History

  1. First recorded snapshot · 0 installs

SKILL.md

Trello (uni)

Manage Trello boards, lists, and cards from the terminal.

Authentication

# Set via environment variables
export TRELLO_API_KEY="your_api_key"
export TRELLO_TOKEN="your_token"

# Get credentials from: https://trello.com/app-key

Boards

uni trello boards                    # List all boards
uni trello boards create "Project"   # Create new board
uni trello boards close <board_id>   # Archive board

Lists

uni trello lists <board_id>                    # List all lists in board
uni trello lists create <board_id> "To Do"     # Create list
uni trello lists archive <list_id>             # Archive list

Cards

uni trello cards <board_id>                           # List all cards
uni trello cards create <list_id> "Task name"         # Create card
uni trello cards create <list_id> "Task" -d "Details" # With description
uni trello cards move <card_id> <list_id>             # Move to another list
uni trello cards archive <card_id>                    # Archive card
uni trello cards delete <card_id>                     # Delete permanently

Members

uni trello members <board_id>        # List board members

Notes

  • Board/list/card IDs shown in output as [xxx]
  • Can use board name instead of ID for some commands
  • Cards can have due dates: --due "2024-12-31"