health-check

Query HTTP endpoints and validate JSON responses to verify service health.

1|1|Updated Mar 6, 2026
One-click install
npx skills add https://github.com/dennisonbertram/go-agent-harness --skill health-check-dennisonbertram
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: health-check
Source: https://github.com/dennisonbertram/go-agent-harness/tree/main/skills/health-check
Command: npx skills add https://github.com/dennisonbertram/go-agent-harness --skill health-check-dennisonbertram

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Check service health via HTTP endpoints by measuring response time, status codes, and body validation to ensure uptime and readiness.

Core Features & Use Cases

  • Timed HTTP checks to verify endpoint availability and latency
  • Readiness and liveness probe style validation for orchestrated deployments
  • Quick health dashboards and alerting via JSON responses and thresholds

Quick Start

Run the health-check skill against your service endpoint to verify availability and performance.

Frequently Asked Questions about health-check

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

FAQPage Schema
How do I monitor HTTP service health and uptime using curl?

You can monitor HTTP service health by running curl-based checks against service endpoints to measure response time, validate status codes, and parse JSON responses for uptime and readiness signals.

What is the difference between readiness and liveness probes for microservices?

Readiness probes determine if a service is prepared to receive traffic, while liveness probes check if a service is running properly. HTTP health checks validate both by querying endpoints and evaluating the response status.

How do I validate HTTP endpoint availability and latency for health dashboards?

Validate HTTP endpoint availability and latency by executing timed HTTP checks that query the service URL, measure response time, and parse JSON output to evaluate status against configured thresholds for dashboard alerting.

Can I use HTTP health checks for orchestrated deployment monitoring?

Yes, HTTP health checks support orchestrated deployments by implementing readiness and liveness probe style validation, querying HTTP endpoints to verify service availability and performance before routing traffic.

What are the limitations of curl-based HTTP health checks for microservices?

Curl-based HTTP health checks are limited to querying HTTP endpoints and parsing JSON responses. They validate status codes and response times but do not monitor internal application metrics or non-HTTP service protocols.