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

Web & Frontend Development @wanng-ide Updated 6/28/2026 1,470 downloads 0 stars Security: Pass

Markdown Linter OpenClaw Plugin & Skill | ClawHub

Looking to integrate Markdown Linter into your AI workflows? This free OpenClaw plugin from ClawHub helps you automate web & frontend development tasks instantly, without having to write custom tools from scratch.

What this skill does

Validates Markdown files in the workspace for broken local links, missing file references, and basic syntax issues. Use to maintain documentation integrity and prevent broken references in MEMORY.md or SKILL.md files.

Install

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

Full SKILL.md

Open original
Metadata table.
namedescription
markdown-linterValidates Markdown files in the workspace for broken local links, missing file references, and basic syntax issues. Use to maintain documentation integrity and prevent broken references in MEMORY.md or SKILL.md files.

SKILL.md content below is scrollable.

Markdown Linter

A lightweight tool to validate Markdown files in the workspace. It focuses on ensuring internal consistency, particularly broken file links and missing references.

Capabilities

  • Link Validation: Checks [link](path) references to ensure the target file exists locally.
  • Header Check: Verifies that headers follow a logical hierarchy (e.g., H1 -> H2).
  • Code Block Check: Ensures code blocks have language identifiers where appropriate.

Usage

const linter = require('./index');
const results = await linter.scan('.'); // Scans current directory recursively
console.log(JSON.stringify(results, null, 2));

Output Format

{
  "totalFiles": 15,
  "brokenLinks": [
    {
      "file": "docs/README.md",
      "line": 10,
      "link": "./missing-image.png",
      "error": "File not found"
    }
  ],
  "syntaxErrors": []
}
ClawHub Registry URL: https://clawhub.ai/wanng-ide/skills/markdown-linter

Related skills

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