Install
$ agentstack add skill-rijul1204-rashedul-agentic-engineering-fizzy-board-monitor ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ● Network access Used
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
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:
curl -s "https://app.fizzy.do/6132669/boards" \
-H "Accept: application/json" \
-H "Authorization: Bearer R2Rek4vNLSrr12F9QFkBy3BZ"
Step 2 — Fetch columns
curl -s "https://app.fizzy.do/6132669/boards//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
curl -s "https://app.fizzy.do/6132669/cards?board_ids[]=&status=open" \
-H "Accept: application/json" \
-H "Authorization: Bearer R2Rek4vNLSrr12F9QFkBy3BZ"
Follow Link: rel="next" headers for pagination if the board has many cards.
Step 4 — Group cards by column
Map each card to its column using the card's column_id field. Count cards per column.
Step 5 — Present the Kanban overview
Fizzy Board — QA Board (YYYY-MM-DD HH:MM)
https://app.fizzy.do/6132669/boards/03fd4omd9qico7wmyyof5yfe4
┌─────────────────────────────────────────────────────────────┐
│ TO DO (3) │ IN PROGRESS (2) │ DONE (5) │
├─────────────────────────────────────────────────────────────┤
│ #45 Game disconnect│ #42 Payment retry │ #38 Admin label │
│ #44 Seed script │ #41 JWKS 500 │ #37 Leaderboard │
│ #43 Refactor auth │ │ ... │
└─────────────────────────────────────────────────────────────┘
Total open: 5 | Closed today: 5
If the terminal doesn't support box-drawing characters, use plain text with --- separators.
Show each card as: # — keep titles to 20 chars, truncate with … if longer.
Step 6 — Offer follow-up actions
After the overview, offer:
- Create a card in a specific column
- Close a card (mark done)
- Move a card to a different column
- Drill into a specific column (show all cards with descriptions)
- Show a different board (list available boards)
- Sync open cards to local task tracker
Error Handling
- Board not found by name → list available boards and ask user to confirm
- No cards in a column → show column with
(empty)label - API error → show the HTTP status and response body
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: Rijul1204
- Source: Rijul1204/rashedul-agentic-engineering
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.