<< All versions
Skill v1.0.0
currentAutomated scan100/100shockz09/uni-cli/uni-trello
──Details
PublishedApril 29, 2026 at 07:53 PM
Content Hashsha256:0b886d0b2a1ed3b4...
Git SHAf1dfc90a101f
──Files
Files (1 file, 1.6 KB)
SKILL.md1.6 KBactive
SKILL.md · 62 lines · 1.6 KB
version: "1.0.0" name: uni-trello description: | 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. allowed-tools: Bash(uni:), Bash(~/.local/bin/uni:)
Trello (uni)
Manage Trello boards, lists, and cards from the terminal.
Authentication
bash
# Set via environment variablesexport TRELLO_API_KEY="your_api_key"export TRELLO_TOKEN="your_token"# Get credentials from: https://trello.com/app-key
Boards
bash
uni trello boards # List all boardsuni trello boards create "Project" # Create new boarduni trello boards close <board_id> # Archive board
Lists
bash
uni trello lists <board_id> # List all lists in boarduni trello lists create <board_id> "To Do" # Create listuni trello lists archive <list_id> # Archive list
Cards
bash
uni trello cards <board_id> # List all cardsuni trello cards create <list_id> "Task name" # Create carduni trello cards create <list_id> "Task" -d "Details" # With descriptionuni trello cards move <card_id> <list_id> # Move to another listuni trello cards archive <card_id> # Archive carduni trello cards delete <card_id> # Delete permanently
Members
bash
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"