Broken Link Checker OpenClaw Plugin & Skill | ClawHub
Looking to integrate Broken Link Checker into your AI workflows? This free OpenClaw plugin from ClawHub helps you automate calendar & scheduling tasks instantly, without having to write custom tools from scratch.
What this skill does
verify external URLs (http/https) for availability (200-399 status code).
Install
npx clawhub@latest install broken-link-checkerFull SKILL.md
Open original| name | description |
|---|---|
| broken-link-checker | verify external URLs (http/https) for availability (200-399 status code). |
SKILL.md content below is scrollable.
Broken Link Checker
Verify external URLs for availability. Useful for checking documentation links or external references.
Usage
node skills/broken-link-checker/index.js <url1> [url2...]
Output
JSON array of results:
[
{
"url": "https://example.com",
"valid": true,
"status": 200
},
{
"url": "https://example.com/broken",
"valid": false,
"status": 404
}
]