Jump to related tools in the same category or review the original source on GitHub.

CLI Utilities @wanng-ide Updated 6/28/2026 1,145 downloads 0 stars Security: Pass

Markdown Validator OpenClaw Plugin & Skill | ClawHub

Looking to integrate Markdown Validator into your AI workflows? This free OpenClaw plugin from ClawHub helps you automate cli utilities tasks instantly, without having to write custom tools from scratch.

What this skill does

Validates Markdown files for broken local links.

Install

ClawHub CLI
openclaw skills install @wanng-ide/markdown-validator
Node.js (npx)
npx clawhub@latest install markdown-validator

Full SKILL.md

Open original
Metadata table.
namedescription
markdown-validatorValidates Markdown files for broken local links.

SKILL.md content below is scrollable.

Markdown Validator

Validates Markdown files for broken local links. Use this skill to check internal documentation consistency.

Usage

# Validate current directory
openclaw exec node skills/markdown-validator/index.js .

# Validate specific file
openclaw exec node skills/markdown-validator/index.js README.md

Features

  • Scans recursively
  • Checks relative links
  • Ignores external URLs (http/https)
  • Ignores anchors within the same file (#anchor)
  • Outputs JSON report of broken links with line numbers

Example Output

[
  {
    "file": "/path/to/README.md",
    "valid": false,
    "brokenLinks": [
      {
        "text": "Link Text",
        "url": "./broken-link.md",
        "line": 10
      }
    ]
  }
]
ClawHub Registry URL: https://clawhub.ai/wanng-ide/skills/markdown-validator

Related skills

If this matches your use case, these are close alternatives in the same category.