Install
$ agentstack add skill-rijul1204-rashedul-agentic-engineering-fizzy-tasks ✓ 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 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
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:
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)
curl -s "https://app.fizzy.do/6132669/users" \
-H "Accept: application/json" \
-H "Authorization: Bearer R2Rek4vNLSrr12F9QFkBy3BZ"
Step 3 — Categorise cards
Group cards into:
- My Cards — assigned to the current user
- Open Bugs — tagged "bug" or "defect"
- Blockers — tagged "blocker" or description contains "blocked"
- Unassigned — open with no assignee
Step 4 — Assign Priority and Effort
For every card, assign a priority level and effort estimate based on Jackpot Snap service context. Do NOT ask the user — infer from card title, description, and tags.
Priority Levels
| Level | Label | When to assign | |-------|--------------------|----------------| | P0 | [P0 — Critical] | Touches game-engine WebSocket, payment-service (Bankful/Dots), user auth/JWT/JWKS, or validity-check card deals | | P1 | [P1 — High] | Touches competition service (enrollments, leaderboard, knockout), or QA-reported bug visible to players | | P2 | [P2 — Medium] | Non-blocking feature work, DX improvements, dev env issues, non-critical UI bugs | | P3 | [P3 — Low] | Nice-to-have, docs, observability, refactors, no user-facing impact |
Cross-reference rules:
- Any card affecting
userJWKS/auth → escalate to P0 (all services depend on it) - Any card affecting
validity-check→ P0 (game-engine cannot deal cards without it) - Any card affecting
payment-service→ P0 (real money at stake) - QA bug reports → start at P1 unless narrowed to cosmetic (P2)
Effort Estimates
- 1 day — flag as requiring sprint planning; do not estimate precisely
State reasoning in one line after the estimate.
Step 5 — Build deep links
For each card, construct a deep link:
https://app.fizzy.do/6132669/cards/
Step 6 — Present the digest
> IMPORTANT — Fizzy does NOT support Markdown. > When writing card descriptions, comments, or any content sent to Fizzy via the API, use plain text with spacing and line breaks only. No **bold**, # headers, - bullets, or any Markdown syntax. Use indentation and blank lines for structure instead.
Fizzy Digest — YYYY-MM-DD HH:MM
MY CARDS (N)
[P1 — High] ~2h #42 — Fix payment webhook retry logic
→ https://app.fizzy.do/6132669/cards/42
Reason: payment-service — real money at stake if retries fail.
[P2 — Medium] ~1h #38 — Update admin dashboard label
→ https://app.fizzy.do/6132669/cards/38
Reason: Non-blocking UI change, no live game impact.
OPEN BUGS (N)
[P1 — High] ~2–4h #45 — Game disconnects on round 8
→ https://app.fizzy.do/6132669/cards/45
Reason: game-engine WebSocket — visible to players.
BLOCKERS (N)
[P0 — Critical] #41 — JWKS endpoint returning 500
→ https://app.fizzy.do/6132669/cards/41
Reason: All services depend on user JWKS — blocks auth entirely.
UNASSIGNED (N)
[P3 — Low] #39 — Refactor seed script
→ https://app.fizzy.do/6132669/cards/39
---
Boards scanned: QA Board
Total open cards: N
Omit empty sections.
Step 7 — Offer follow-up actions
After the digest, offer:
- Create a new card
- Close / mark a card done
- Add a comment to a card
- Sync cards to local task tracker (
~/.claude/task-tracker.md) - Filter by specific board or tag
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.