Productivity

health-check-endpoints

aj-geddes/useful-ai-prompts · updated Apr 8, 2026

$npx skills add https://github.com/aj-geddes/useful-ai-prompts --skill health-check-endpoints
summary

Implement health check endpoints to monitor service health, dependencies, and readiness for traffic.

skill.md

Health Check Endpoints

Table of Contents

Overview

Implement health check endpoints to monitor service health, dependencies, and readiness for traffic.

When to Use

  • Kubernetes liveness and readiness probes
  • Load balancer health checks
  • Service discovery and registration
  • Monitoring and alerting systems
  • Circuit breaker decisions
  • Auto-scaling triggers
  • Deployment verification

Quick Start

Minimal working example:

import express from "express";
import { Pool } from "pg";
import Redis from "ioredis";

interface HealthStatus {
  status: "healthy" | "degraded" | "unhealthy";
  timestamp: string;
  uptime: number;
  checks: Record<string, CheckResult>;
  version?: string;
  environment?: string;
}

interface CheckResult {
  status: "pass" | "fail" | "warn";
  time: number;
  output?: string;
  error?: string;
}

class HealthCheckService {
  private startTime = Date.now();
  private version = process.env.APP_VERSION || "1.0.0";
  private environment = process.env.NODE_ENV || "development";

// ... (see reference guides for full implementation)

Reference Guides

Detailed implementations in the references/ directory:

Guide Contents
Express.js Health Checks Express.js Health Checks
Spring Boot Actuator-Style (Java) Spring Boot Actuator-Style (Java)
Python Flask Health Checks Python Flask Health Checks

Best Practices

✅ DO

  • Implement separate liveness and readiness probes
  • Keep liveness probes lightweight
  • Check critical dependencies in readiness
  • Return appropriate HTTP status codes
  • Include response time metrics
  • Set reasonable timeouts
  • Cache health check results briefly
  • Include version and environment info
  • Monitor health check failures

❌ DON'T

  • Make liveness probes check dependencies
  • Return 200 for failed health checks
  • Take too long to respond
  • Skip important dependency checks
  • Expose sensitive information
  • Ignore health check failures
general reviews

Ratings

4.461 reviews
  • Arjun Johnson· Dec 28, 2024

    We added health-check-endpoints from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.

  • Mateo Chawla· Dec 24, 2024

    health-check-endpoints has been reliable in day-to-day use. Documentation quality is above average for community skills.

  • Ganesh Mohane· Dec 12, 2024

    health-check-endpoints fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.

  • Alexander Jain· Dec 12, 2024

    We added health-check-endpoints from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.

  • Aarav Kim· Dec 8, 2024

    health-check-endpoints fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.

  • Aanya Singh· Dec 8, 2024

    Solid pick for teams standardizing on skills: health-check-endpoints is focused, and the summary matches what you get after install.

  • Arjun Ndlovu· Dec 4, 2024

    health-check-endpoints reduced setup friction for our internal harness; good balance of opinion and flexibility.

  • Aarav Mensah· Nov 27, 2024

    Registry listing for health-check-endpoints matched our evaluation — installs cleanly and behaves as described in the markdown.

  • Sofia Martinez· Nov 23, 2024

    Solid pick for teams standardizing on skills: health-check-endpoints is focused, and the summary matches what you get after install.

  • Mateo White· Nov 23, 2024

    We added health-check-endpoints from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.

showing 1-10 of 61

1 / 7