Install
openclaw skills install cn-url-health-checkerCheck URL health status (HTTP response code, redirect chain). Detect broken links and server errors. Pure Python standard library, no API key required.
openclaw skills install cn-url-health-checkerCheck the health status of any URL.
python3 scripts/url_health.py --url https://example.com
{
"url": "https://example.com",
"status": 200,
"final_url": "https://example.com",
"redirects": [],
"error": null
}
{
"url": "https://example.com/nonexistent",
"status": 404,
"error": "HTTP Error 404: Not Found"
}