| name | superthread |
| description | Interact with Superthread project management via CLI. Use when creating/managing cards, viewing boards, searching tasks, or tracking work. |
Superthread CLI
Project management CLI for the Superthread API.
Quick Start
brew install steveclarke/tap/superthread
suth setup
suth cards assigned me
suth search query "term"
Essential Patterns
--json
-y / --yes
-s SPACE
me
Most commands accept names or IDs for spaces, boards, lists, sprints, users, and tags.
Mentions
Use {{@Name}} to mention workspace members in comments, replies, checklist items, and card/page content. The name is matched case-insensitively against workspace member display names.
suth comments create -c CARD --content "{{@Stacey}} Ready for review."
suth replies create --comment COMMENT --content "{{@Steve Clarke}} can you take a look?"
suth comments create -c CARD --content "{{@Stacey}} and {{@Steve Clarke}} — thoughts?"
Do NOT use raw HTML mention tags (e.g., <user-mention> or <mention-user>). These will not trigger notifications. Always use the {{@Name}} template syntax.
To include literal {{@Name}} text without triggering a mention, escape it: \{{@Name}}.
Common Workflows
View and manage cards
suth cards list -b BOARD
suth cards search "login timeout"
suth cards assigned me
suth cards get CARD
suth cards create --title "Task" -l LIST -b BOARD
suth cards update CARD --list "Done"
suth cards assign CARD user1,user2
Browse structure
suth spaces list
suth boards list -s SPACE
suth lists list -b BOARD
suth projects list
Search
suth cards search "login timeout"
suth cards search "bug" --status open,started
suth cards search "auth" -s SPACE --limit 50
suth search query "term"
suth search query "bug" --types card,page
suth search query "auth" --status open -s SPACE
Full Command Reference
Details below. Options shown as # Options: are optional unless marked required.
Accounts
suth accounts list
suth accounts show
suth accounts use NAME
suth accounts add NAME
suth accounts add NAME --with-token
suth accounts remove NAME
Non-interactive setup for agents:
echo "$SUPERTHREAD_API_KEY" | suth accounts add myaccount --with-token
Workspaces
suth workspaces list
suth workspaces use WORKSPACE
suth workspaces current
Current User & Members
suth me
suth members list
Spaces
suth spaces list
suth spaces get SPACE
suth spaces create --title "Name"
suth spaces update SPACE --title "New Name"
suth spaces delete SPACE
suth spaces add_member SPACE USERS [--role ROLE]
suth spaces remove_member SPACE USERS
Boards
suth boards list -s SPACE
suth boards get BOARD
suth boards create -s SPACE --title "Name"
suth boards update BOARD --title "New Name"
suth boards duplicate BOARD -s SPACE
suth boards delete BOARD
Lists
Board column management:
suth lists list -b BOARD
suth lists create --title "In Progress" -b BOARD
suth lists update LIST --title "Done"
suth lists delete LIST
Cards
suth cards list -b BOARD
suth cards list --sprint SPRINT -s SPACE
suth cards assigned USER
suth cards assigned me
suth cards search TERM
suth cards get CARD
suth cards create --title "Task" -l LIST -b BOARD
suth cards update CARD
suth cards delete CARD
suth cards duplicate CARD --project ID -b BOARD -l LIST
suth cards assign CARD USERS
suth cards assign CARD me
suth cards unassign CARD USERS
suth cards link --card CARD --related OTHER --type blocks
suth cards unlink --card CARD --related OTHER
suth cards tag CARD tag1,tag2
suth cards untag CARD tag1
Projects (Epics)
suth projects list
suth projects get PROJECT
suth projects create --title "Q1" -l LIST [-b BOARD]
suth projects update PROJECT --title "New"
suth projects delete PROJECT
suth projects add_card PROJECT CARD
suth projects remove_card PROJECT CARD
Pages
suth pages list [-s SPACE]
suth pages get PAGE
suth pages create -s SPACE [--title "Doc"]
suth pages update PAGE --title "New title"
suth pages duplicate PAGE -s SPACE
suth pages archive PAGE
suth pages delete PAGE
Comments & Replies
suth comments list -c CARD
suth comments get COMMENT
suth comments create --content "Note" -c CARD
suth comments update COMMENT --content "Updated"
suth comments delete COMMENT
suth replies list --comment COMMENT
suth replies get REPLY --comment COMMENT
suth replies create --comment COMMENT --content "Reply text"
suth replies update REPLY --comment COMMENT --content "Updated"
suth replies delete REPLY --comment COMMENT
Checklists
suth checklists list -c CARD
suth checklists get CHECKLIST -c CARD
suth checklists create --title "Tasks" -c CARD
suth checklists update CHECKLIST --title "New Title" -c CARD
suth checklists delete CHECKLIST -c CARD
suth checklists add-item CHECKLIST --title "Do thing" -c CARD [--checked]
suth checklists update-item ITEM --checklist CL -c CARD --title "New"
suth checklists remove-item ITEM --checklist CL -c CARD
suth checklists check ITEM [ITEM...] --checklist CL -c CARD
suth checklists uncheck ITEM [ITEM...] --checklist CL -c CARD
Tags
suth tags list
suth tags create --name "urgent" --color "#ff0000"
suth tags update TAG --name "critical"
suth tags delete TAG
Notes
suth notes list
suth notes get NOTE
suth notes create --title "Meeting" [--transcript "..."]
suth notes delete NOTE
Sprints
suth sprints list -s SPACE
suth sprints get SPRINT -s SPACE
Search
suth search query TERM
Activity
suth activity
Config & Completion
suth config init
suth config show
suth config set KEY VALUE
suth config path
suth completion bash
suth completion zsh
suth completion fish
Global Options
-a, --account NAME Use specific account
-w, --workspace ID Workspace (ID or name)
-y, --yes Skip confirmations
-v, --verbose Detailed logging
-q, --quiet Minimal logging
--json JSON output
--limit N Max items (default: 50)
Option Aliases
| Long | Short | Description |
|---|
--space | -s | Space (ID or name) |
--board | -b | Board (ID or name) |
--list | -l | List (ID or name) |
--card | -c | Card ID |
--related | -r | Related card ID |
--owner | -o | Owner (user ID, name, email, or 'me') |
--yes | -y | Skip confirmations |
Priority levels: 1=Urgent, 2=High, 3=Medium, 4=Low