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

Web & Frontend Development @plgonzalezrx8 Updated 6/28/2026 284 downloads 0 stars Security: Pass

Web Markdown Navigator OpenClaw Plugin & Skill | ClawHub

Looking to integrate Web Markdown Navigator 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

Fetch webpages and return clean markdown instead of raw HTML. Use for URL reading, extraction, and summarization tasks where the user wants markdown output; use browser fallback for JS-heavy/SPA pages when extraction is thin.

Install

ClawHub CLI
openclaw skills install @plgonzalezrx8/web-markdown-navigator
Node.js (npx)
npx clawhub@latest install web-markdown-navigator

Full SKILL.md

Open original
Metadata table.
namedescription
web-markdown-navigatorFetch webpages and return clean markdown instead of raw HTML. Use for URL reading, extraction, and summarization tasks where the user wants markdown output; use browser fallback for JS-heavy/SPA pages when extraction is thin.

SKILL.md content below is scrollable.

Web Markdown Navigator

Use this skill for deterministic URL → markdown extraction.

Quick flow

  1. Run script:
    • cd /Users/pedrogonzalez/clawd/skills/web-markdown-navigator/scripts
    • node fetch-markdown.mjs "<url>" --max-chars 50000
  2. If exit code 0, return markdown output.
  3. If exit code 3 or 4, or output is thin/boilerplate, use browser tool fallback to capture rendered content and return markdown summary.

Script

node scripts/fetch-markdown.mjs <url> [--max-chars N] [--timeout-ms N] [--json]

Behavior:

  • Layer 1: Fetch HTML + Mozilla Readability + Turndown markdown conversion.
  • Layer 2: Fallback plain-text markdown if extraction is too thin.
  • URL safety checks block localhost/private literal IPv4 hosts.

Output requirements

  • Return markdown only (no raw HTML dump).
  • Preserve source URL in response.
  • If truncated, include truncation note.
  • If fallback was needed, mention method used (readability or fallback-text).

Error handling

  • 1 bad args
  • 2 invalid/blocked URL
  • 3 network/fetch/content-type failure
  • 4 extraction failure/thin output

For extended notes and troubleshooting, read:

  • /Users/pedrogonzalez/clawd/skills/web-markdown-navigator/references/usage.md
ClawHub Registry URL: https://clawhub.ai/plgonzalezrx8/skills/web-markdown-navigator

Related skills

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