π¦ ClawHubβ¦ BytesAgain
Deadlink
by @bytesagain3
Scan websites and files for broken links with HTTP status details. Use when auditing links, finding broken URLs, validating references.
TERMINAL
clawhub install deadlinkπ About This Skill
name: DeadLink description: "Scan websites and files for broken links with HTTP status details. Use when auditing links, finding broken URLs, validating references." version: "3.0.0" author: "BytesAgain" homepage: https://bytesagain.com source: https://github.com/bytesagain/ai-skills tags: ["link","checker","broken","dead","404","website","seo","validation","html"] categories: ["Developer Tools", "Utility"]
DeadLink β Dead Link Checker
Check URLs for broken links. Scan individual URLs, files containing links, or crawl websites. Generates reports with HTTP status codes.
Commands
| Command | Description |
|---------|-------------|
| check | Check a single URL β shows HTTP status, redirect target if applicable |
| scan | Extract and check all URLs found in a text file |
| site | Crawl a webpage, extract all href/src links, and check each one |
| report | Generate a timestamped report file from all URLs in a text file |
Examples
# Check a single URL
deadlink check https://example.com/page
β 200 OK
Scan a markdown file for broken links
deadlink scan README.md
β Extracts all http/https URLs and checks each one
Crawl a website
deadlink site https://example.com 1
β Fetches the page, extracts all links, checks each
Generate a report file
deadlink report bookmarks.html
β Creates deadlink-report-20240101-120000.txt
Status Codes
Requirements
curl β must be installed and in PATHNotes
http:// and https:// linkssite command does basic HTML link extraction (href and src attributes)π‘ Examples
# Check a single URL
deadlink check https://example.com/page
β 200 OK
Scan a markdown file for broken links
deadlink scan README.md
β Extracts all http/https URLs and checks each one
Crawl a website
deadlink site https://example.com 1
β Fetches the page, extracts all links, checks each
Generate a report file
deadlink report bookmarks.html
β Creates deadlink-report-20240101-120000.txt
π Tips & Best Practices
http:// and https:// linkssite command does basic HTML link extraction (href and src attributes)