← 返回 Skills 市场
wanng-ide

Broken Link Checker

作者 WANGJUNJIE · GitHub ↗ · v1.0.0
cross-platform ✓ 安全检测通过
1047
总下载
0
收藏
6
当前安装
1
版本数
在 OpenClaw 中安装
/install broken-link-checker
功能描述
verify external URLs (http/https) for availability (200-399 status code).
使用说明 (SKILL.md)

Broken Link Checker

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

Usage

node skills/broken-link-checker/index.js \x3Curl1> [url2...]

Output

JSON array of results:

[
  {
    "url": "https://example.com",
    "valid": true,
    "status": 200
  },
  {
    "url": "https://example.com/broken",
    "valid": false,
    "status": 404
  }
]
安全使用建议
This skill appears to be what it claims: a small Node script that issues HTTP HEAD requests to the URLs you provide, returns a JSON array of results, and exits non‑zero if any URL is considered broken. Before installing: ensure you have Node available; be aware HEAD requests can be rejected by some servers (causing false negatives) and the script will exit with code 1 on any invalid link which may affect CI pipelines. Also note the SKILL.md usage path may need to be adjusted to where index.js is located, and the test script contacts google.com — run tests in an environment where outbound HTTP(S) is allowed and acceptable.
功能分析
Type: OpenClaw Skill Name: broken-link-checker Version: 1.0.0 The 'broken-link-checker' skill is benign. The `index.js` code correctly implements its stated purpose of checking URL availability using standard Node.js `http`/`https` modules with `HEAD` requests. It filters command-line arguments to ensure they start with 'http', and there are no signs of data exfiltration, malicious execution, persistence mechanisms, or prompt injection attempts in `SKILL.md`. All observed behavior aligns with a safe and functional link checker.
能力评估
Purpose & Capability
Name/description match the included code: index.js performs HTTP(S) HEAD requests and returns JSON results. There are no unrelated env vars, binaries, or services requested.
Instruction Scope
Runtime instructions are limited to running the included Node script. Minor inconsistencies: SKILL.md shows usage 'node skills/broken-link-checker/index.js' while the bundle places index.js at the package root (user/runtime may need to adjust the path). The implementation uses HEAD requests (some servers reject HEAD with 405), and the script exits with code 1 if any URL is invalid — behavior worth knowing but not malicious.
Install Mechanism
No install spec, no external downloads, and package.json has no dependencies. Nothing is written to disk beyond the included files.
Credentials
No environment variables, credentials, or config paths are requested. The code does not access process.env or other system secrets.
Persistence & Privilege
Skill does not request persistent/always-on presence and does not modify other skills or system configuration.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install broken-link-checker
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /broken-link-checker 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Initial release of broken-link-checker. - Checks external URLs for availability (HTTP status 200–399). - Accepts one or more URLs via command line. - Outputs a JSON array indicating URL status and validity.
元数据
Slug broken-link-checker
版本 1.0.0
许可证
累计安装 6
当前安装数 6
历史版本数 1
常见问题

Broken Link Checker 是什么?

verify external URLs (http/https) for availability (200-399 status code). 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 1047 次。

如何安装 Broken Link Checker?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install broken-link-checker」即可一键安装,无需额外配置。

Broken Link Checker 是免费的吗?

是的,Broken Link Checker 完全免费(开源免费),可自由下载、安装和使用。

Broken Link Checker 支持哪些平台?

Broken Link Checker 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Broken Link Checker?

由 WANGJUNJIE(@wanng-ide)开发并维护,当前版本 v1.0.0。

💬 留言讨论