Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Checks system service health and status when the user asks to verify service availability or diagnose outages.
| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-13 | ✗→✓ | ▲ Improved | -14% | 0% |
| case-03 | ✗→✓ | ▲ Improved | 262% | 0% |
| case-06 | ✗→✓ | ▲ Improved | -7% | 0% |
| case-08 | ✗→✓ | ▲ Improved | 2% | 0% |
| case-10 | ✗→✓ | ▲ Improved | -20% | 0% |
Evaluates service health endpoints and produces formatted status reports.
This skill is triggered when the user asks to "check system status" or "verify service health".
curl --version to verify)which jq to verify installation)bash# 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"
bash# 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: User request like "check system status" Output: Formatted status report with:
You must always check for errors. Consider retrying on transient failures.
bash# Verify API response structure if ! echo "$response" | jq -e '.status' >/dev/null 2>&1; then echo "Invalid response format" exit 1 fi
bash$ check-status System Status: HEALTHY Response Time: 245ms
bash$ check-status Error: API_KEY not configured Solution: export API_KEY="your_key"
A: Install curl using your package manager (see Installation section)
A: Verify the result of echo $API_KEY — ensure it is set correctly
A: Review the endpoint load; optionally adjust timeout thresholds
See examples/advanced-usage.md for additional patterns.
Other measured skills in the registry, with their headline benchmark lift.