| name | fizzy-cli |
| description | Fizzy project management CLI for boards, cards, columns, steps, comments, and notifications.
Use when the user wants to manage tasks, track work, create/update cards, organize boards,
or interact with Fizzy (fizzy.do). Triggers: "create a card", "list my boards", "move card",
"check notifications", "update task", "fizzy", "board", "card", or any project management action.
|
| allowed-tools | Bash(fizzy:*) |
Fizzy CLI
Ruby CLI for Fizzy project management. Installed as fizzy gem.
Authentication
Credentials stored at ~/.config/fizzy-cli/tokens.yml. Check status before operations:
fizzy auth status
If not authenticated:
fizzy auth login --token YOUR_PAT_TOKEN
Generate a Personal Access Token from your Fizzy profile > API section > "Personal access tokens".
Multi-account:
fizzy auth accounts
fizzy auth switch /SLUG
Global Flags
All commands support:
--json — Machine-readable JSON output (use for parsing)
--account /SLUG — Target a specific account
Identity
fizzy identity
fizzy identity --json
Boards
fizzy boards list
fizzy boards get BOARD_ID
fizzy boards create "Board Name"
fizzy boards update BOARD_ID --name "New Name"
fizzy boards delete BOARD_ID
fizzy boards sync
Project Config (.fizzy.yml)
fizzy init scaffolds a per-project config in the current directory:
account: 'ACCOUNT_SLUG'
boards:
BOARD_ID_1: Board Name 1
BOARD_ID_2: Board Name 2
When a project directory has a .fizzy.yml, prefer the boards it declares over picking from fizzy boards list. If the user is working inside a project and no .fizzy.yml exists, ask before assuming a board; offer to run fizzy init to record the mapping.
Cards
Cards are addressed by number (integer), not ID. The --board flag is only required for create.
CRUD
fizzy cards list
fizzy cards list --board BOARD_ID
fizzy cards list --status closed
fizzy cards list --column COLUMN_ID
fizzy cards list --assignee USER_ID
fizzy cards get 42
fizzy cards create "Title" --board BOARD_ID
fizzy cards update 42 --title "New title"
fizzy cards delete 42
Card Actions
fizzy cards close 42
fizzy cards reopen 42
fizzy cards not-now 42
fizzy cards triage 42 --column COLUMN_ID
fizzy cards untriage 42
fizzy cards tag 42 "bug"
fizzy cards assign 42 USER_ID
fizzy cards watch 42
fizzy cards unwatch 42
fizzy cards golden 42
fizzy cards ungolden 42
Columns
Columns are scoped to a board — --board is always required.
fizzy columns list --board BOARD_ID
fizzy columns get COLUMN_ID --board BOARD_ID
fizzy columns create "To Do" --board BOARD_ID
fizzy columns update COLUMN_ID --board BOARD_ID --name "Done"
fizzy columns delete COLUMN_ID --board BOARD_ID
Steps (Card Checklists)
Steps are scoped to a card — --card NUMBER is always required.
No list endpoint; steps are returned inline in fizzy cards get.
fizzy steps create "Write tests" --card 42
fizzy steps get STEP_ID --card 42
fizzy steps update STEP_ID --card 42 --completed
fizzy steps update STEP_ID --card 42 --no-completed
fizzy steps update STEP_ID --card 42 --description "Updated text"
fizzy steps delete STEP_ID --card 42
Comments
Scoped to a card — --card NUMBER is always required.
fizzy comments list --card 42
fizzy comments get COMMENT_ID --card 42
fizzy comments create "Looks good" --card 42
fizzy comments update COMMENT_ID --card 42 --body "Updated text"
fizzy comments delete COMMENT_ID --card 42
Reactions
Works on cards and optionally on comments — --card NUMBER always required.
fizzy reactions list --card 42
fizzy reactions list --card 42 --comment COMMENT_ID
fizzy reactions create "thumbsup" --card 42
fizzy reactions create "heart" --card 42 --comment COMMENT_ID
fizzy reactions delete REACTION_ID --card 42
Tags
fizzy tags list
Users
fizzy users list
fizzy users get USER_ID
fizzy users update USER_ID --name "New Name"
fizzy users deactivate USER_ID
Notifications
fizzy notifications list
fizzy notifications read NOTIFICATION_ID
fizzy notifications unread NOTIFICATION_ID
fizzy notifications mark-all-read
Pins
fizzy pins pin 42
fizzy pins unpin 42
Note: fizzy pins list requires session auth (not available with PAT).
Common Workflows
Discover boards and cards
fizzy boards list --json
BOARD_ID=$(fizzy boards list --json | jq -r '.[0].id')
fizzy cards list --board $BOARD_ID
fizzy columns list --board $BOARD_ID
Create and organize a card
fizzy cards create "Ship feature X" --board $BOARD_ID
fizzy cards triage 42 --column $COLUMN_ID
fizzy cards assign 42 $USER_ID
fizzy cards tag 42 "feature"
Add checklist steps to a card
fizzy steps create "Write tests" --card 42
fizzy steps create "Update docs" --card 42
fizzy cards get 42
Card lifecycle
fizzy cards create "Bug fix" --board $BOARD_ID
fizzy cards triage 42 --column $IN_PROGRESS_ID
fizzy cards close 42
fizzy cards reopen 42
fizzy cards not-now 42
Check what's assigned to you
MY_ID=$(fizzy identity --json | jq -r '.accounts[0].user.id')
fizzy cards list --assignee $MY_ID
Tips
- Always use
--json when parsing output programmatically
- Cards use numbers (integers), everything else uses IDs (base36 UUIDs)
fizzy cards get returns steps inline — no separate steps list endpoint
- Append
help to any subcommand: fizzy cards help, fizzy columns help
- Credentials at
~/.config/fizzy-cli/tokens.yml
- Override account per-command with
--account /SLUG