Clawfu-skills link-checker

Find broken links on websites. Use when: auditing website for broken links; checking internal link structure; finding 404 errors; validating external links; pre-launch QA

install
source · Clone the upstream repo
git clone https://github.com/guia-matthieu/clawfu-skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/guia-matthieu/clawfu-skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/seo-tools/link-checker" ~/.claude/skills/guia-matthieu-clawfu-skills-link-checker && rm -rf "$T"
manifest: skills/seo-tools/link-checker/SKILL.md
source content

Link Checker

Crawl websites to find broken links and 404 errors - essential for SEO health and user experience.

What Claude Does vs What You Decide

Claude DoesYou Decide
Structures analysis frameworksMetric definitions
Identifies patterns in dataBusiness interpretation
Creates visualization templatesDashboard design
Suggests optimization areasAction priorities
Calculates statistical measuresDecision thresholds

Dependencies

pip install aiohttp beautifulsoup4 click

Commands

python scripts/main.py check https://example.com --depth 2
python scripts/main.py report https://example.com --output broken-links.csv

Skill Boundaries

What This Skill Does Well

  • Structuring data analysis
  • Identifying patterns and trends
  • Creating visualization frameworks
  • Calculating statistical measures

What This Skill Cannot Do

  • Access your actual data
  • Replace statistical expertise
  • Make business decisions
  • Guarantee prediction accuracy

Skill Metadata

  • Mode: centaur
category: seo-tools
dependencies: [aiohttp, beautifulsoup4]
difficulty: beginner