← Back to Skills
Cron

broken-link-checker

wanng-ide By wanng-ide 👁 16 views ▲ 0 votes

verify external URLs (http/https) for availability (200-399 status code).

GitHub
---
name: broken-link-checker
description: verify external URLs (http/https) for availability (200-399 status code).
---

# Broken Link Checker

Verify external URLs for availability. Useful for checking documentation links or external references.

## Usage

```bash
node skills/broken-link-checker/index.js <url1> [url2...]
```

## Output

JSON array of results:
```json
[
  {
    "url": "https://example.com",
    "valid": true,
    "status": 200
  },
  {
    "url": "https://example.com/broken",
    "valid": false,
    "status": 404
  }
]
```
cron

Comments

Sign in to leave a comment

Loading comments...