reliability-reviewer

Identify reliability gaps in code reviews across service boundaries and I/O flows.

Updated Mar 14, 2026
One-click install
npx skills add https://github.com/Andreicr1/netz-analysis-engine --skill reliability-reviewer-andreicr1
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: reliability-reviewer
Source: https://github.com/Andreicr1/netz-analysis-engine/tree/main/.gemini/skills/reliability-reviewer
Command: npx skills add https://github.com/Andreicr1/netz-analysis-engine --skill reliability-reviewer-andreicr1

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This skill provides a reliability-focused review of code changes, highlighting potential failure modes and resilience gaps so teams can prevent outages in production.

Core Features & Use Cases

  • Identify missing error handling on I/O boundaries such as HTTP calls, DB queries, or background jobs.
  • Detect unsafe retry loops, missing timeouts, and dangerous fallback logic that can cascade failures.
  • Provide concrete recovery guidance and guardrails to improve system reliability in code reviews.

Quick Start

Provide a reliability-focused code review on the latest diffs and summarize potential failure modes.

Frequently Asked Questions about reliability-reviewer

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I identify missing timeouts and error handling in my code reviews?

To identify missing timeouts and error handling in code reviews, analyze I/O boundaries like HTTP calls and DB queries for explicit checks against unsafe retry loops, missing backoffs, and dangerous fallback logic that can cascade failures.

What is the best way to prevent cascading failures across service boundaries?

The best way to prevent cascading failures across service boundaries is to assess production reliability gaps by enforcing explicit checks for fault tolerance, safe error propagation, and avoiding dangerous fallback logic during code reviews.

How do I review code for unsafe retry loops and missing backoff strategies?

You review code for unsafe retry loops and missing backoff strategies by scanning service boundaries and I/O flows for explicit fault-tolerance mechanisms, ensuring dangerous retry configurations are remediated with concrete recovery guardrails.

Can I use a reliability-focused review to detect fault tolerance gaps in background jobs?

Yes, you can use a reliability-focused review to detect fault tolerance gaps in background jobs by assessing I/O boundaries for missing error propagation, unsafe fallback logic, and lack of proper recovery guidance.

Why does missing error propagation on database queries cause production outages?

Missing error propagation on database queries causes production outages because unhandled exceptions on I/O boundaries can trigger cascading failures, bypassing resilience guardrails like timeouts and backoffs needed for system stability.