fizzy_task
Create or update kanban cards in Fizzy boards, managing status, tags, steps, and column placement to organize tasks effectively.
Instructions
Create or update a card with full control over status, tags, steps, and column placement.
Mode detection:
card_numberabsent → CREATE mode (requiresboard_id+title)card_numberpresent → UPDATE mode
Create mode: Creates card, then best-effort: adds steps, toggles tags, triages to column.
Update mode: Updates title/description if provided. Changes status (open/closed/not_now). Manages tags with add/remove. Moves card to column (from inbox or another column). Same-column moves are skipped.
Fizzy column conventions:
Maybe? (inbox): Cards with no
column_id. This is where new cards start.Not Now: Set
status: "not_now"to move here (defers the card).Done: Set
status: "closed"to move here (completes the card).Custom columns: Use
column_idfromfizzy_boardsto triage to workflow columns.
Arguments:
account_slug(optional): Uses session default if omittedcard_number(optional): Card to update. Omit to create new card.board_id(optional): Board ID. Required for create mode.title(optional): Card title. Required for create mode.description(optional): Card body in markdownstatus(optional): open | closed | not_now — changes card lifecycle statecolumn_id(optional): Move card to this column (works from inbox or other columns; skipped if already there)position(optional): top | bottom (default: bottom) — position in columnadd_tags(optional): Tag titles to addremove_tags(optional): Tag titles to removesteps(optional): Checklist items to create (create mode only)
Returns:
JSON with mode, card (id, number, title, url, status), operations summary, failures array.
Examples:
Create: {board_id: "...", title: "New task", steps: ["Step 1", "Step 2"]}
Update: {card_number: 42, status: "closed", add_tags: ["done"]}
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| account_slug | No | Account slug. Uses session default if omitted. | |
| card_number | No | Card number to update. Omit to create a new card. | |
| board_id | No | Board ID. Required when creating a new card. | |
| title | No | Card title (1-500 chars). Required when creating. | |
| description | No | Card body in markdown (max 10000 chars). | |
| status | No | Card status: open | closed | not_now. | |
| column_id | No | Column ID to triage card to. | |
| position | Yes | Position in column: top | bottom (default: bottom). | bottom |
| add_tags | No | Tag titles to add to the card. | |
| remove_tags | No | Tag titles to remove from the card. | |
| steps | No | Checklist steps to create (create mode only). |