Interact with the Fizzy tracker for Pagecord work. Use when the user asks to list, create, update, move, close, comment on, or inspect Fizzy cards or boards.
Use the Fizzy API via curl.
FIZZY_TOKEN from /Users/olly/dev/pagecord/.env.https://app.fizzy.doGET /my/identity and reuse it for the rest of the task.Every API call should include:
Authorization: Bearer $TOKENAccept: application/jsonContent-Type: application/json for write requestsGET /$SLUG/boardsGET /$SLUG/boards/:board_id/columnsGET /$SLUG/cardsGET /$SLUG/cards/:card_numberPOST /$SLUG/boards/:board_id/cards with {"card":{"title":"...","description":"..."}}PUT /$SLUG/cards/:card_numberPOST /$SLUG/cards/:card_number/triage with {"column_id":"..."}POST /$SLUG/cards/:card_number/commentsPOST /$SLUG/cards/:card_number/closureDELETE /$SLUG/cards/:card_number/closureIf the user does not specify a board for creation, list boards first. If the user wants a move but does not specify a column, list columns for that board first.
For card lists, show a concise table with number, title, status, tags, and board. For single-card reads, summarize the key fields instead of dumping raw JSON.