Back to list
jfriisj

http-health-smoke

by jfriisj

0🍴 0📅 Jan 19, 2026

SKILL.md


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)

Score

Total Score

50/100

Based on repository quality metrics

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

0/10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

Reviews

💬

Reviews coming soon