Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add vladkesler/initrunner --skill service-health-checkgit clone --depth 1 https://github.com/vladkesler/initrunnerWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/vladkesler/initrunner/service-health-check)<a href="https://agentmods.dev/skills/vladkesler/initrunner/service-health-check"><img src="https://agentmods.dev/badge/skills/vladkesler/initrunner/service-health-check/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/vladkesler/initrunner/service-health-check"><img src="https://agentmods.dev/badge/skills/vladkesler/initrunner/service-health-check.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00028 | $0.00922 |
| Opus 5 | $0.00014 | $0.00461 |
| Sonnet 5 | $0.00006 | $0.00184 |
| Haiku 4.5 | $0.00003 | $0.00092 |
Grade C, and why
service-health-check scanned grade C with 2 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Downloads and executes remote codehighSupply chain
curl | sh runs whatever the server returns today, which is not necessarily what it returned when this was reviewed.
curl -s --max-time 5 http://host:port/health | python -c " Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
bins: [curl] How it starts
The opening of the file, as written. The whole thing — 134 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Service health check skill using curl and standard system tools.
When to activate
Use this skill when tests fail and the underlying service might be down, when running pre-test health validation to confirm infrastructure is ready, when a deployment just completed and needs smoke-test verification, or when intermittent failures suggest an unstable dependency.
Health endpoints
Probe these common health paths in order until one responds:
/health/healthz/readiness/api/health/status/ping/(root, as a last resort)
For each endpoint:
curl -s -o /dev/null -w '%{http_code}' --max-time 5 http://host:port/health
A 200 response means healthy. A non-200 or timeout means the service or that specific check is failing.
If the health endpoint returns a JSON body, parse it to extract per-dependency status:
curl -s --max-time 5 http://host:port/health | python -c "
import sys, json
data = json.load(sys.stdin)
for dep, status in data.get('dependencies', {}).items():
mark = 'OK' if status.get('healthy') else 'FAIL'
print(f' {dep}: {mark}')
"
Dependency checks
For each service, verify that its dependencies are reachable:
- Database -- use the database-verification skill's connectivity checks
- Cache (Redis/Memcached) --
redis-cli -h host pingor equivalent - Message queue (RabbitMQ/Kafka) -- check management API or port availability
- External APIs -- curl the external service's health endpoint or a known stable URL with a short timeout
Build a dependency map from the service's configuration (docker-compose.yaml, environment variables, config files) and check each dependency individually.
Docker service health
When services run in Docker:
docker-compose ps # all services and their status
docker logs --tail 30 <service> # recent log output for errors
docker inspect --format='{{.State.Health.Status}}' <container>
Check for:
- Services in "Exit" or "Restarting" state
- Health checks reporting "unhealthy"
- OOM kills in docker events or logs
- Port mapping correctness (host port mapped to expected container port)
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 12d ago First seen · 134 lines · 28 tokens per session scan C ab665ec45649
service-health-check is a skill published in the GitHub repository vladkesler/initrunner (41 stars, last pushed 3d ago), licensed Apache-2.0. It adds 28 tokens to every session and 922 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it C with 2 findings (downloads and executes remote code, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
skill-conflict-detector
Detects skill name shadowing and description-overlap conflicts that cause OpenClaw to trigger the wrong skill or silently ignore one when two skills compete for the same intent.
skill-portability-checker
Validates that a skill's companion scripts declare their OS and binary dependencies correctly, and checks whether those dependencies are actually present on the current machine.
mcp-health-checker
Monitors MCP server connections for health, latency, and availability — detects stale connections, timeouts, and unreachable servers before they cause silent tool failures.
skill-doctor
Diagnoses silent skill discovery failures — YAML parse errors, path violations, schema mismatches — so broken skills don't disappear without a trace.
loop-circuit-breaker
Detects infinite tool-call retry loops from deterministic errors and breaks them before they drain context or budget.
openclaw-config-advisor
Diagnoses OpenClaw provider, fallback, channel, MCP, and gateway config issues with read-only scans and stateful summaries.