http-health-smoke | Skill Performance & Reviews | TopRankSkills

TopRank Skills

Home / Skills / tools / http-health-smoke

http-health-smoke

maintained by jfriisj

star 0 account_tree 0 verified_user MIT License
bolt View GitHub

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)

chat_bubble_outline

No comments yet. Be the first to share your thoughts!

Skill Details

GitHub Stars 0
GitHub Forks 0
Created Jan 2026
Last Updated 5个月前
tools tools testing

Related Skills

test-driven-development
chevron_right
checking-visuals
chevron_right
write-test
chevron_right
test-tdd
chevron_right
test-msw
chevron_right

Build your own?

Join 12,000+ developers contributing to the Claude ecosystem.