← 返回 Skills 市场
Deadlink
作者
bytesagain3
· GitHub ↗
· v3.0.0
· MIT-0
329
总下载
0
收藏
1
当前安装
9
版本数
在 OpenClaw 中安装
/install deadlink
功能描述
Scan websites and files for broken links with HTTP status details. Use when auditing links, finding broken URLs, validating references.
使用说明 (SKILL.md)
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 \x3Curl> |
Check a single URL — shows HTTP status, redirect target if applicable |
scan \x3Cfile> |
Extract and check all URLs found in a text file |
site \x3Curl> [depth] |
Crawl a webpage, extract all href/src links, and check each one |
report \x3Cfile> |
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
- 2xx — OK (alive)
- 3xx — Redirect (alive, shows final URL)
- 4xx — Client error (dead — 404 Not Found, 403 Forbidden, etc.)
- 5xx — Server error (dead)
- 000 — Connection failed (DNS error, timeout, unreachable)
Requirements
curl— must be installed and in PATH- Network access to check URLs
Notes
- Timeout: 10 seconds per URL (5s connect timeout)
- URLs are extracted using regex pattern matching for
http://andhttps://links - The
sitecommand does basic HTML link extraction (href and src attributes) - Reports are saved as plain text files in the current directory
安全使用建议
This skill appears to do exactly what it says: check URLs and produce local reports. Before installing, ensure curl is available on the host (SKILL.md requires it despite registry metadata not listing binaries). Be aware that running scans or site crawls will generate outgoing HTTP(S) requests to every target URL (respect robots/terms of service and avoid aggressive scans against sites you don't own). The User-Agent string includes bytesagain.com but that is only an identifier — the script does not contact that domain. If you plan to scan large sites, consider rate-limiting and the legal/ethical implications; run it in an environment where outgoing network traffic is acceptable.
功能分析
Type: OpenClaw Skill
Name: deadlink
Version: 3.0.0
The DeadLink skill is a legitimate utility for auditing URLs and identifying broken links. The bash script (scripts/script.sh) uses curl to verify HTTP status codes and grep/sed for basic URL extraction from files and HTML content, which aligns perfectly with its stated purpose in SKILL.md. There are no signs of data exfiltration, persistence mechanisms, or malicious prompt injection.
能力评估
Purpose & Capability
The name/description, SKILL.md, and the included bash script are consistent: they implement URL checking, file scanning, crawling, and report generation. Minor metadata mismatch: the registry metadata lists no required binaries, but SKILL.md and the script require curl (and use common shell tools like grep/sed/sort). Asking for curl is reasonable for this purpose.
Instruction Scope
Runtime instructions and the script only fetch URLs (using curl), extract links from provided files or fetched pages, and write plain-text reports to the current directory. The script follows redirects, applies a 10s timeout, and uses a recognizable User-Agent string; it does not read unrelated files, environment variables, or send data to third-party endpoints beyond the URLs being checked.
Install Mechanism
No install spec — instruction-only plus an included bash script. No downloads or package installs are performed by the skill itself, so there is no high-risk install mechanism.
Credentials
The skill declares no environment variables or credentials and the code does not access secrets or config paths. Network access is required and justified by the stated functionality.
Persistence & Privilege
The skill is not marked always:true and does not attempt to modify other skills or system-wide settings. It writes report files only to the current working directory, which is proportional to its purpose.
如何使用
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install deadlink - 安装完成后,直接呼叫该 Skill 的名称或使用
/deadlink触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v3.0.0
v3.0.0: Complete rewrite with real functionality.
v2.0.1
update
v2.0.0
v2.5 standard: Use-when desc, homepage, source, security fix
v1.0.5
retry-fix-token
v1.0.4
old template -> domain-specific v2.0.0
v1.0.3
Quality upgrade: custom functionality
v1.0.2
De-template, unique content, script cleanup
v1.0.1
Quality improvement: better docs, examples, cleaner text
v1.0.0
Initial release
元数据
常见问题
Deadlink 是什么?
Scan websites and files for broken links with HTTP status details. Use when auditing links, finding broken URLs, validating references. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 329 次。
如何安装 Deadlink?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install deadlink」即可一键安装,无需额外配置。
Deadlink 是免费的吗?
是的,Deadlink 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
Deadlink 支持哪些平台?
Deadlink 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Deadlink?
由 bytesagain3(@bytesagain3)开发并维护,当前版本 v3.0.0。
推荐 Skills