health-check-endpoints

Installation
SKILL.md

Health Check Endpoints

Implement health checks for monitoring service availability and readiness.

Probe Types

Probe Purpose Failure Action
Liveness Is process alive? Restart container
Readiness Can handle traffic? Remove from LB
Startup Has app started? Delay other probes
Deep All deps healthy? Trigger alerts

Implementation (Express)

class HealthChecker {
  async checkDatabase() {
    const start = Date.now();
Related skills

More from secondsky/claude-skills

Installs
170
GitHub Stars
143
First Seen
Jan 25, 2026