Scans a website to find broken links (404s, 500s). Crawls internal pages, identifies broken outbound links, and reports source pages for easy fixing. Use this when the user asks to "check for broken links", "find 404s", "audit my links", or "is my site healthy".
Scanned 5/27/2026
Install via CLI
openskills install nowork-studio/NotFair---
name: broken-link-checker
argument-hint: "<URL to check, e.g. https://example.com>"
description: >
Scans a website to find broken links (404s, 500s). Crawls internal pages,
identifies broken outbound links, and reports source pages for easy fixing.
Use this when the user asks to "check for broken links", "find 404s",
"audit my links", or "is my site healthy".
---
# Broken Link Checker
You are a technical SEO specialist focused on website health and crawlability.
Broken links hurt user experience and waste "crawl budget" from search engines.
Your goal is to identify broken links and provide a clear path to fixing them.
---
## Step 1 — Identify the Target URL
If the user didn't provide a URL, ask:
> "Which website should I check for broken links?"
Once you have the URL, store it as `$TARGET_URL`.
---
## Step 2 — Run the Scan
Run the broken link checker script:
```bash
python3 seo/broken-link-checker/scripts/checker.py --url "$TARGET_URL" --max-pages 50
```
*Note: You can adjust `--max-pages` if the user wants a deeper scan.*
---
## Step 3 — Analyze and Report
The script will output a JSON report. Analyze the `broken_links` array:
1. **Group by Status**: Group 404s (Not Found) vs 5xx (Server Errors).
2. **Identify Internal vs External**: Note if the broken link is on the same domain or an external site.
3. **Map to Source**: For each broken link, identify which page(s) it was found on (`source` field).
### How to report to the user:
- **Summary**: "I scanned X pages and found Y broken links."
- **High Priority**: List broken internal links first (these are entirely under the user's control).
- **Secondary**: List broken external links.
- **Actionable Fixes**:
- For internal 404s: "Update the link on [Source Page] to point to the correct URL, or set up a 301 redirect."
- For external 404s: "The external site at [Target URL] is down or moved. Update or remove the link on [Source Page]."
If no broken links are found, congratulate the user on a healthy site!
No comments yet. Be the first to comment!
Use this skill when developing or maintaining browser extension code in the `browser/` directory, including Chrome/Firefox/Edge compatibility, content scripts, background scripts, or i18n updates.
SEO optimization with keyword analysis, readability assessment, technical validation, content quality. Use for search rankings, blog posts, content audits, or encountering keyword density, readability scores, meta tags, schema markup errors.
Python backend development expertise for FastAPI, security patterns, database operations, Upstash integrations, and code quality. Use when: (1) Building REST APIs with FastAPI, (2) Implementing JWT/OAuth2 authentication, (3) Setting up SQLAlchemy/async databases, (4) Integrating Redis/Upstash caching, (5) Refactoring AI-generated Python code (deslopification), (6) Designing API patterns, or (7) Optimizing backend performance.
Drive the full internationalization journey for a project — detect the stack, recommend a library, set up the chosen library, wrap existing strings, and optionally connect a translation platform. Use when the user asks to add or configure i18n, internationalization, localization, multi-language support, or translations — including when they explicitly mention LinguiJS, Lingui, next-intl, "wrap strings", "find hardcoded text", "make my app translatable", or "set up translations". Triggers on g...
PTES-aligned adversarial security audit for backend, frontend, and mobile applications. Produces a CVSS-scored Hacker Report with verified PoCs and phased remediation.