← ClaudeAtlas

fizzy-taskslisted

Fetch open Fizzy cards assigned to the user, open bugs, and unassigned tasks. Presents a prioritised digest with deep links. Use when user says "fizzy tasks", "my fizzy cards", "what are my open tasks in fizzy", "fizzy action items", "bugs in fizzy", "show my tasks", or wants a digest of current Fizzy workload.
Rijul1204/rashedul-agentic-engineering · ★ 1 · AI & Automation · score 77
Install: claude install-skill Rijul1204/rashedul-agentic-engineering
# Fizzy Tasks — Open Cards Digest Fetch and display open Fizzy cards assigned to the current user, open bugs, blockers, and unassigned items — enriched with priority and effort estimates using Jackpot Snap project context. ## Credentials **Bearer token**: `R2Rek4vNLSrr12F9QFkBy3BZ` **Account ID**: `6132669` **Base URL**: `https://app.fizzy.do` ## Workflow ### Step 1 — Fetch assigned cards ```bash curl -s "https://app.fizzy.do/6132669/cards?status=open" \ -H "Accept: application/json" \ -H "Authorization: Bearer R2Rek4vNLSrr12F9QFkBy3BZ" ``` Filter the response for cards where the current user is assigned. Also fetch all open cards to identify bugs (tagged "bug") and unassigned items. If the API supports `?assigned=me`, use that parameter to reduce results: ```bash curl -s "https://app.fizzy.do/6132669/cards?status=open&assigned=me" \ -H "Accept: application/json" \ -H "Authorization: Bearer R2Rek4vNLSrr12F9QFkBy3BZ" ``` ### Step 2 — Fetch users (to resolve names) ```bash curl -s "https://app.fizzy.do/6132669/users" \ -H "Accept: application/json" \ -H "Authorization: Bearer R2Rek4vNLSrr12F9QFkBy3BZ" ``` ### Step 3 — Categorise cards Group cards into: 1. **My Cards** — assigned to the current user 2. **Open Bugs** — tagged "bug" or "defect" 3. **Blockers** — tagged "blocker" or description contains "blocked" 4. **Unassigned** — open with no assignee ### Step 4 — Assign Priority and Effort For every card, assign a **priority level** and **effort esti