prod-bug-hunter
by Shippers
Systematic runtime bug detection and automated patching for Firebase, Next.js, and Vercel stacks.
- Prevent auth race conditions in Next.js middleware and API routes
- Identify memory leaks from uncleaned Firestore real-time subscriptions
- Audit CI/CD workflows for missing environment variables and secret gaps
Free
One-time purchase · Own forever
See it in action
SEVERITY: P2
FILE: src/hooks/useChat.ts:42
CAUSE: onSnapshot listener lacks cleanup, causing memory leaks on unmount.
FIX:
useEffect(() => {
const unsub = onSnapshot(docRef, (doc) => setData(doc.data()));
return () => unsub(); // Added cleanup
}, [docId]);prod-bug-hunter
by Shippers
Systematic runtime bug detection and automated patching for Firebase, Next.js, and Vercel stacks.
Free
One-time purchase · Own forever
⚡ Also available via Agensi Pro — your AI agent can load this skill on demand via MCP. Learn more →
Included in download
- Downloadable skill package
- 1 permission declared
- Instant install
See it in action
SEVERITY: P2
FILE: src/hooks/useChat.ts:42
CAUSE: onSnapshot listener lacks cleanup, causing memory leaks on unmount.
FIX:
useEffect(() => {
const unsub = onSnapshot(docRef, (doc) => setData(doc.data()));
return () => unsub(); // Added cleanup
}, [docId]);About This Skill
Stop Production Fires Before They Start
The Production Bug Hunter is a specialized diagnostic skill designed to bridge the gap between "tests pass" and "production works." It targets the complex runtime failures—race conditions, stale states, and listener leaks—that static analysis and unit tests often miss in high-load environments.
What it does
This skill performs a priority-ordered sweep of your repository to identify and fix critical infrastructure bugs tailored to the Firebase, Next.js, and Vercel stack. It specifically hunts for:
- P0 Auth Race Conditions: Detects simultaneous Firebase initialization and unguarded auth state access.
- P1 Stale State Drift: Identifies UI/database desyncs and missing optimistic update rollbacks.
- P2 Listener Leaks: Finds uncleaned
onSnapshotsubscriptions that cause memory bloat and stale data. - P3 Environment Mismatches: Cross-references source code with CI/CD YAML files to catch missing secrets and version drifts.
Why use this skill?
Unlike general-purpose coding assistants, this skill employs a systematic "hunter-killer" methodology. It doesn't just look for clean code; it looks for architectural patterns that break under real-world stress. For a developer, it's like having a senior SRE perform a deep-dive audit of your app's reactivity and auth patterns in seconds, providing ready-to-apply patches for every vulnerability found.
📖 Learn more: Best DevOps & Deployment Skills for Claude Code →
Use Cases
- Prevent auth race conditions in Next.js middleware and API routes
- Identify memory leaks from uncleaned Firestore real-time subscriptions
- Audit CI/CD workflows for missing environment variables and secret gaps
- Apply optimistic update patterns to fix stale UI state drifts
How to Install
unzip production-bug-hunter.zip -d ~/.claude/skills/Reviews
No reviews yet — be the first to share your experience.
Only users who have downloaded or purchased this skill can leave a review.
No reviews yet — be the first to share your experience.
Only users who have downloaded or purchased this skill can leave a review.
Security Scanned
Passed automated security review
Permissions
Allowed Hosts
File Scopes
Frequently Asked Questions
Learn More About AI Agent Skills
Similar Skills
env-doctor
Diagnoses why your project will not start. Checks runtime versions, dependencies, environment variables, databases, ports, and build artifacts systematically.
git-commit-writer
Writes conventional commit messages by analyzing your staged git changes. Detects commit type, scope, and breaking changes automatically.
diagnosing-rag-failure-modes
RAG fails quietly. It retrieves documents, returns confident-looking answers, and misses the question entirely — because the question required connecting facts across documents, reasoning about sequence, or tracing causation. This skill gives you a five-question diagnostic checklist that classifies any failing query as either RAG-safe or structurally RAG-incompatible, then maps it to the specific failure pattern and the architectural fix that resolves it.
code-reviewer
Reviews your code for bugs, security vulnerabilities, logic errors, performance issues, and style violations. Organizes findings by severity and suggests fixes with code examples.