service-health-check

service-health-check is a skill for Claude Code from notque/vexjoy-agent. It costs 17 tokens per session (2,372 once invoked), scanned A, original, MIT.

A service health check skill examines whether services are working by checking processes, health files, and network ports. It also validates endpoints, security headers, authentication settings, and CVE sources, where CVEs are public records of known security flaws.

In plain words
What is it for?
Use it to discover services, check endpoint availability and configuration, investigate authentication failures, review security headers, and audit vulnerability data sources.
Why use it?
It avoids declaring a service healthy based on one unreliable signal, such as a stale health file or a running process that no longer responds.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Good fit Use it to discover services, check endpoint availability and configuration, investigate authentication failures, review security headers, and audit vulnerability data sources.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/notque/vexjoy-agent/service-health-check
Install

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.

Any agent
npx skills add notque/vexjoy-agent --skill service-health-check
Clone the repo
git clone --depth 1 https://github.com/notque/vexjoy-agent

Made for: Claude Code.

Wrote 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.

agentmods badge for service-health-check

README.md
[![agentmods](https://agentmods.dev/badge/skills/notque/vexjoy-agent/service-health-check/github.svg)](https://agentmods.dev/skills/notque/vexjoy-agent/service-health-check)
Your own site
<a href="https://agentmods.dev/skills/notque/vexjoy-agent/service-health-check"><img src="https://agentmods.dev/badge/skills/notque/vexjoy-agent/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.

agentmods 80×15 button for service-health-check

Your own site · 80×15
<a href="https://agentmods.dev/skills/notque/vexjoy-agent/service-health-check"><img src="https://agentmods.dev/badge/skills/notque/vexjoy-agent/service-health-check.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 17 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,372 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00017 $0.02372
Opus 5 $0.00009 $0.01186
Sonnet 5 $0.00003 $0.00474
Haiku 4.5 $0.00002 $0.00237

Measured 9d ago against content hash a4ef7004591a, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

service-health-check scanned grade A with 0 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 9d 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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/infrastructure/service-health-check/SKILL.md · 268 lines

How it starts

The opening of the file, as written. The whole thing — 268 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Service Health Check Skill

Overview

This skill provides deterministic service health monitoring using the Discover-Check-Report pattern. It finds services, gathers health signals from multiple sources (process table, health files, port binding), and produces actionable reports identifying degraded or failed services.

Core principle: Health assessment is evidence-based. Never report a service healthy without verifying process status independently of health file content. Never assume a running process is functional — always cross-check against health files and port binding.


Reference Loading Table

Signal Load These Files Why
Endpoint validation request references/endpoint-validator.md Full endpoint validation methodology
Security header WARNs, HSTS/CSP/X-Frame issues references/security-headers.md Deep security header reference
Config errors, hardcoded IPs, timeout problems references/endpoint-config-preferred-patterns.md Endpoint config patterns
401/403 failures, Bearer/API-key/cookie auth references/auth-endpoint-patterns.md Auth endpoint patterns
CVE source audit request references/cve-source-check.md Full CVE source check methodology
CVE registry schema questions references/registry-schema.md Registry shape and entry format
CVE source URL verification references/source-verification.md HEAD-check semantics
CVE report format questions references/output-formats.md JSON schema and Markdown sections

Instructions

Phase 1: DISCOVER

Goal: Identify all services to check before running any health probes.

Step 1: Locate service definitions

Search for service configuration in this order:

  1. services.json in project root
  2. Docker/docker-compose files for service definitions
  3. systemd unit files or process manager configs
  4. User-provided service specification

Step 2: Build service manifest

For each service, establish:

## Service Manifest
| Service | Process Pattern | Health File | Port | Stale Threshold |
|---------|----------------|-------------|------|-----------------|
| api-server | gunicorn.*app:app | /tmp/api_health.json | 8000 | 300s |
| worker | celery.*worker | /tmp/worker_health.json | - | 300s |
| cache | redis-server | - | 6379 | - |

Read the full file on GitHub · 268 lines

Changes

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.

  1. 9d ago First seen · 268 lines · 17 tokens per session scan A a4ef7004591a

Subscribe to this mod's changes

service-health-check is a skill published in the GitHub repository notque/vexjoy-agent (419 stars, last pushed 3d ago), licensed MIT. It adds 17 tokens to every session and 2,372 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.

Related

Other skills, from other repositories

netlify-deploy

Deploy web projects to Netlify using the Netlify CLI (npx netlify). Use when the user asks to deploy, host, publish, or link a site/repo on Netlify, including preview and production deploys.

foryourhealth111-pixel/Vibe-Skills · 51 tokens

docker-devops

Docker/K8s: Dockerfile, multi-stage, compose, manifests, Helm. Triggers: Docker, Dockerfile, container, Kubernetes, k8s, compose, Helm, pod.

softspark/ai-toolkit · 43 tokens

rollback

Rolls back git commit, DB migration, or deploy to known-good with safety + health checks. Triggers: rollback, revert deploy, revert migration, rollback commit, git revert.

softspark/ai-toolkit · 39 tokens

health

Service/infra health via liveness/readiness checks, resource usage, quick diagnostics. Triggers: health check, services up, system status, infra health, degraded service.

softspark/ai-toolkit · 37 tokens

bailian-train-deploy

A workflow for using Alibaba Cloud’s Bailian command-line tool to fine-tune or directly deploy AI models as callable services. It covers text, speech-synthesis, image-generation, and video-generation models.

modelstudioai/skills · 321 tokens

orca-config-origin

Traces any Orca alert back to who deployed it, what tool was used, what introduced the issue, and a full timeline of events. Use when user asks about origin, deployment, or ownership of an alert (e.g., "who created this", "where did this come from", "trace back orca-3380725", "who deployed", "what tool was used").

orcasecurity/orca-skills · 83 tokens