What problem does it solve? Broken links and dead heading anchors silently accumulate in Markdown documentation, leaving readers stranded on 404-style dead ends. This Skill scans Markdown files to detect broken local links and dead in-document anchors before they reach readers. ## Core Features & Use Cases - Local Link Validation: Recursively walks a directory of Markdown files and verifies that every relative and absolute local link resolves to an existing file. - Anchor Resolution: Replicates GitHub-style heading slug generation (including duplicate-heading numeric suffixes) to confirm that #fragment links point to real headings. - Clear Diagnostics: Distinguishes dead anchors (file exists, heading missing) from fully broken links, and exits with a non-zero status for CI integration. - Use Case: Before publishing a documentation site, run the script against your docs folder to catch every broken cross-reference introduced by renamed files or edited headings. ## Quick Start Ask the agent to run the doc-audit link checker against your documentation directory and report any broken links or dead anchors.