fizzy-board-monitorlisted
Install: claude install-skill Rijul1204/rashedul-agentic-engineering
# Fizzy Board Monitor — On-Demand Board Overview
Display an on-demand Kanban-style overview of any Fizzy board, with cards grouped by column.
## Credentials
**Bearer token**: `R2Rek4vNLSrr12F9QFkBy3BZ`
**Account ID**: `6132669`
**Base URL**: `https://app.fizzy.do`
## Known Boards
| Board ID | Name | Default? |
|-----------------------------|-----------|----------|
| 03fd4omd9qico7wmyyof5yfe4 | QA Board | YES |
> **Default behaviour**: always show the QA board unless the user explicitly names a different board.
## Workflow
### Step 1 — Determine target board
- If the user says "show the board" or "fizzy board" with no board name → use QA board (`03fd4omd9qico7wmyyof5yfe4`)
- If the user names a board (e.g., "show the backend sprint board") → list all boards and match by name:
```bash
curl -s "https://app.fizzy.do/6132669/boards" \
-H "Accept: application/json" \
-H "Authorization: Bearer R2Rek4vNLSrr12F9QFkBy3BZ"
```
### Step 2 — Fetch columns
```bash
curl -s "https://app.fizzy.do/6132669/boards/<BOARD_ID>/columns" \
-H "Accept: application/json" \
-H "Authorization: Bearer R2Rek4vNLSrr12F9QFkBy3BZ"
```
Note column IDs and names (e.g., "To Do", "In Progress", "Done").
### Step 3 — Fetch open cards
```bash
curl -s "https://app.fizzy.do/6132669/cards?board_ids[]=<BOARD_ID>&status=open" \
-H "Accept: application/json" \
-H "Authorization: Bearer R2Rek4vNLSrr12F9QFkBy3BZ"
```
Follow `Link: rel="next"` headers for paginati