name: http-health-smoke description: Run quick HTTP health/readiness smoke checks against one or more endpoints. Use to validate a service is up before running deeper E2E tests.
Skill Instructions
Inputs
-
BASE_URL(string): e.g.http://localhost:8001 -
PATHS(string): space-separated paths, e.g./health/ /health/ready /health/live /health/models
Procedure
set -euo pipefail
base_url="${BASE_URL:?BASE_URL is required}"
paths="${PATHS:?PATHS is required}"
for p in $paths; do
curl -sS -f "$base_url$p" | head
done
Acceptance Criteria
- All requests return HTTP 200
- Responses are parseable/expected format for the project (often JSON)
chat Comments (0)
Sign in to join the discussion and leave a comment.
Skill Details
GitHub Stars
0
GitHub Forks
0
Created
Jan 2026
Last Updated
5个月前
tools
tools testing
Related Skills
Build your own?
Join 12,000+ developers contributing to the Claude ecosystem.
No comments yet. Be the first to share your thoughts!