Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add seaworld008/Commonly-used-high-value-skills --skill link-checkergit clone --depth 1 https://github.com/seaworld008/Commonly-used-high-value-skillsWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/seaworld008/commonly-used-high-value-skills/link-checker)<a href="https://agentmods.dev/skills/seaworld008/commonly-used-high-value-skills/link-checker"><img src="https://agentmods.dev/badge/skills/seaworld008/commonly-used-high-value-skills/link-checker/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/seaworld008/commonly-used-high-value-skills/link-checker"><img src="https://agentmods.dev/badge/skills/seaworld008/commonly-used-high-value-skills/link-checker.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector warn
SkillSpector: 1 finding, up to medium
These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →
- medium MCP Rug Pull · line 23 npx commands without a version suffix (e.g. @1.0.0) create a rug-pull risk if the upstream server is compromised and publishes a malicious update.Fix: Pin the version: npx @scope/[email protected]
What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00030 | $0.02185 |
| Opus 5 | $0.00015 | $0.01092 |
| Sonnet 5 | $0.00006 | $0.00437 |
| Haiku 4.5 | $0.00003 | $0.00218 |
Grade A, and why
link-checker scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 142 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Link Checker
当任务包含外部链接清单、邮件/文档 URL 安全检查时使用。Link Checker 是一款全方位、多维度的链接健康度与安全性审计工具。它不仅能发现 404 等失效链接,还能深入探测重定向背后的潜在威胁(如钓鱼攻击、恶意软件下载),确保 Agent 与外部互联网交互时的绝对安全。
安装
npx clawhub@latest install link-checker
触发场景
- 对外发布前检查:在发布新的文档(Docs)、博客文章(Blog)或落地页(Landing Page)前,确保其中引用的所有内外部链接均为有效且可达。
- 疑似钓鱼链接检测:在处理邮件或 Slack 消息中的未知 URL 时,利用 Link Checker 进行“先行探测”。
- SEO 优化与维护:定期对现有网站进行全量扫描,修复会导致搜索引擎降权的“断链”。
- 审核运营素材:在广告投放或邮件营销前,核对跳转链路是否正确,避免预算浪费。
- 代码库依赖核对:检查
package.json或README.md中引用的项目主页、许可协议链接是否依然有效。
核心检查项
- HTTP 状态码与超时:识别 404 (Not Found), 403 (Forbidden), 500 (Server Error) 等基本可达性问题。
- 重定向路径分析 (Redirect Chain):追踪 301/302 跳数。如果跳转次数超过 5 次,标记为高风险或潜在的重定向循环。
- 协议安全性 (SSL/TLS):强制检查是否支持 HTTPS,是否存在证书过期或不安全的 TLS 版本。
- 域名信誉与可疑特征:检测同形异义词攻击(Homograph Attack,如
googIe.com使用大写 i 代替小写 l)、异常子域名(如login.paypal.com.secure-auth.xyz)。 - 页面内容一致性:检查最终跳转页面的标题(Title)是否与原始链接描述相符。
结果建议
- 阻断 (Block):检测到确凿的恶意链接、病毒库匹配项或无法修复的证书错误。
- 人工复核 (Review):链接可达但域名信誉低,或重定向到了意外的第三方平台。
- 通过 (Pass):链接有效、安全且符合内容上下文。
- 输出修复方案:若发现 301 永久重定向,自动生成替代的最新 URL。
触发条件 / When to Use
- 邮件/文档摘要任务:当 Agent 准备从某个外部链接提取内容前。
- 安全加固 (Hardening):作为
security-vetter或input-guard的下游技能,对输入流中的 URL 进行清洗。 - 部署前哨 (Pre-deploy):集成在 CI/CD 流水线的最后一步。
- 知识库更新 (RAG Maintenance):在更新本地
MEMORY.md引用时。 - 大规模网页抓取 (Scraping):在启动
web_scraper之前,先批量验证 URL 列表的活性。
核心能力 / Core Capabilities
1. 深度网络探测 (Network Probing)
- 操作步骤:
- 使用
HEAD请求而非GET请求(减少流量消耗,隐藏抓取痕迹)。 - 设置合理的
User-Agent(模拟 Chrome/Safari)以规避反爬策略。 - 捕获完整的 HTTP Response Headers,提取
X-Powered-By或Server字段进行指纹识别。
- 使用
- 最佳实践:对于高敏感域名,使用
Proxy模式进行探测,防止本地 IP 泄露。
2. 启发式安全扫描 (Heuristic Scanning)
- 操作步骤:
- 拆解 URL 组成部分:Protocol, Subdomain, Domain, TLD, Path, Query Params.
- 匹配已知的恶意 TLD 黑名单(如部分免费的
.tk,.ml域名)。 - 扫描 Query 参数中是否包含疑似 Base64 加密的敏感信息。
- 最佳实践:对比
whois信息中的域名创建时间,对于刚注册不到 30 天的域名保持警惕。
3. 内容一致性对比 (Visual/Textual Validation)
- 操作步骤:
- 调用
web_fetch或screenshot获取最终页面的快照。 - 提取页面关键词,与原始锚点文本(Anchor Text)进行语义匹配。
- 如果链接描述是“下载发票”,但最终页面包含“博彩游戏”,立即触发报警。
- 调用
- 最佳实践:使用
image_edit技能进行 OCR,识别页面内嵌入的恶意图片文字。
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 9d ago First seen · 142 lines · 30 tokens per session scan A 1ad3d11001bb
link-checker is a skill published in the GitHub repository seaworld008/Commonly-used-high-value-skills (70 stars, last pushed 5d ago), licensed MIT. It adds 30 tokens to every session and 2,185 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.
Other skills, from other repositories
elasticsearch
Query and analyze logs in Elasticsearch. Use this skill when the user wants to search logs, query log data, count log entries, filter by trace IDs, or analyze application logs stored in Elasticsearch. Common use cases include debugging requests by trace ID, finding error logs, analyzing request patterns, and…
svg-creator
Produce SVGs that are spec-correct (W3C SVG 2), CSS-independent, accessible when meaningful, safe to render in untrusted contexts, optimized in size, and readable enough to edit.
prompt-template-wizard
Rigorously collects and validates all fields needed to produce a complete, unambiguous prompt template for features and bug fixes. The skill asks targeted questions until the template is fully filled, consistent, and ready to paste into a Codex/GPT-5.2 coding session.
read-only-gh-pr-review
Review backend pull requests for correctness, security, performance, maintainability, and test coverage using GitHub CLI plus local repository inspection. Use when asked to review service-layer/API/database changes, audit backend branch diffs, summarize backend risk, or produce actionable must-fix/should-fix feedback.
german-elster-tax-filing
Use this skill to run a complete intake for a german personal income tax return in elster for tax years 2024 onward, estimate the tax result, and map the final values into the correct official forms and fields.
trello
Manage Trello boards, lists, and cards via the Trello REST API.