system-health-checker

system-health-checker is a skill for Claude Code, Codex from joeynyc/skillscore. It costs 23 tokens per session (925 once invoked), scanned B, original, MIT.

A read-only check for whether online services are responding and available. It queries a service health endpoint and formats the returned status.

In plain words
What is it for?
Use it to verify service availability, investigate an outage, and produce a status report from a health-check API.
Why use it?
It gives a quick, consistent answer when a service may be down, without deploying, restarting, monitoring, or reviewing historical trends.

Skill for Claude CodeCodex

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.

agentmods
npx agentmods add skills/joeynyc/skillscore/perfect-skill
Any agent
npx skills add joeynyc/skillscore --skill perfect-skill
Clone the repo
git clone --depth 1 https://github.com/joeynyc/skillscore

Made for: Claude Code, Codex.

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 system-health-checker

README.md
[![agentmods](https://agentmods.dev/badge/skills/joeynyc/skillscore/perfect-skill.svg)](https://agentmods.dev/skills/joeynyc/skillscore/perfect-skill)
Your own site
<a href="https://agentmods.dev/skills/joeynyc/skillscore/perfect-skill"><img src="https://agentmods.dev/badge/skills/joeynyc/skillscore/perfect-skill.svg" alt="Measured on agentmods" height="20"></a>
Per session 23 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 925 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 2 findings. Scan, not verified.
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 $0.00023 $0.00925
Opus 5 $0.00012 $0.00463
Sonnet 5 $0.00005 $0.00185
Haiku 4.5 $0.00002 $0.00093

Measured 5d ago against content hash 1402370deed5, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade B, and why

system-health-checker scanned grade B 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 5d 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.

Asks for rootmediumPrivilege escalation

A mod that escalates privileges can change anything on the machine, not only the project.

sudo apt-get install curl # Ubuntu/Debian

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

- curl: HTTP client for API requests (`curl --version` to verify)
tests/fixtures/perfect-skill/SKILL.md · 149 lines

How it starts

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

System Health Checker

Evaluates service health endpoints and produces formatted status reports.

When to Use

This skill is triggered when the user asks to "check system status" or "verify service health".

When NOT to Use

  • Don't use this for detailed monitoring or alerting — use a dedicated monitoring skill instead
  • Not for deploying or restarting services; this is read-only status checking
  • Avoid using this for historical trend analysis

Dependencies

  • curl: HTTP client for API requests (curl --version to verify)
  • jq: JSON parser (which jq to verify installation)
  • Environment variable: API_KEY (obtain from the service dashboard)

Installation

# Install curl (if not present)
sudo apt-get install curl  # Ubuntu/Debian
brew install curl          # macOS

# Install jq
sudo apt-get install jq    # Ubuntu/Debian
brew install jq            # macOS

# Set API key
export API_KEY="your_api_key_here"

Workflow

  1. Validate dependencies are available
  2. Check API key is configured
  3. Make API call to health endpoint
  4. Parse response and format for user
  5. Handle any errors gracefully
  • Verify curl and jq are installed
  • Confirm API_KEY is set
  • Check endpoint responds

Example commands:

# Check if dependencies are available
command -v curl >/dev/null 2>&1 || echo "curl not found"
command -v jq >/dev/null 2>&1 || echo "jq not found"

# Make the API call
if ! response=$(curl -s -H "Authorization: Bearer $API_KEY" \
     -H "Accept: application/json" \
     "https://api.example.com/health"); then
  echo "Error: API call failed"
  exit 1
fi

echo "$response" | jq '.status'

Input/Output

Input: User request like "check system status" Output: Formatted status report with:

  • Service status (online/offline)
  • Response time
  • Any alerts or issues

Error Handling

You must always check for errors. Consider retrying on transient failures.

Common issues and solutions:

  • No API key: Prompt user to configure API_KEY environment variable
  • Service unavailable: Return cached status if available, otherwise inform user
  • Network timeout: Retry once, then report network issue
  • Invalid response: Log raw response and return "Unable to parse status"

Read the full file on GitHub · 149 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. 5d ago First seen · 149 lines · 23 tokens per session scan B 1402370deed5

Subscribe to this mod's changes

system-health-checker is a skill published in the GitHub repository joeynyc/skillscore (17 stars, last pushed 4mo ago), licensed MIT. It adds 23 tokens to every session and 925 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it B with 2 findings (asks for root, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

protein-design-qc

Protein design quality control, filtering thresholds, and ranking guidance. Use this skill when: (1) Evaluating design quality for binding, expression, or structure, (2) Setting filtering thresholds for pLDDT, ipTM, PAE, (3) Checking sequence liabilities (cysteines, deamidation, polybasic clusters), (4) Creating…

zongtingwei/Bioclaw_Skills_Hub · 143 tokens

ipsae

Binder design ranking using ipSAE (interprotein Score from Aligned Errors). Use this skill when: (1) Ranking binder designs for experimental testing, (2) Filtering BindCraft or RFdiffusion outputs, (3) Comparing AF2/AF3/Boltz predictions, (4) Predicting binding success rates, (5) Need better ranking than ipTM or iPAE.…

zongtingwei/Bioclaw_Skills_Hub · 114 tokens

nemoclaw-contributor-implement-issue

Implement an accepted NemoClaw GitHub issue in the current checkout. Use when a user asks to pick up an issue for implementation, implement or fix a named issue, or add the issue's tests. Confirm accepted scope, deliver the smallest independently valuable capability slice, and record validation and remaining gates…

NVIDIA/NemoClaw · 134 tokens

tmux

Remote-control tmux sessions for interactive CLIs by sending keystrokes and scraping pane output.

HKUDS/nanobot · 22 tokens

summarize

Summarize or extract text/transcripts from URLs, podcasts, and local files (great fallback for “transcribe this YouTube/video”).

HKUDS/nanobot · 32 tokens

add-matrix

Add Matrix channel integration via Chat SDK. Works with any Matrix homeserver.

nanocoai/nanoclaw · 19 tokens