AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Fizzy Board Monitor

skill-rijul1204-rashedul-agentic-engineering-fizzy-board-monitor · by Rijul1204

>

No reviews yet
0 installs
17 views
0.0% view→install

Install

$ agentstack add skill-rijul1204-rashedul-agentic-engineering-fizzy-board-monitor

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No 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.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-rijul1204-rashedul-agentic-engineering-fizzy-board-monitor)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
2mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

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 →
Are you the author of Fizzy Board Monitor? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

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:

  1. Create a card in a specific column
  2. Close a card (mark done)
  3. Move a card to a different column
  4. Drill into a specific column (show all cards with descriptions)
  5. Show a different board (list available boards)
  6. 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.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.