markdown-url

Installation
Summary

Convert any website into clean, extractable Markdown by routing through markdown.new.

  • Automatically rewrites URLs to prefix them with https://markdown.new/ for cleaner text extraction from docs, blog posts, changelogs, and GitHub issues
  • Includes a rewrite rule that preserves query parameters, fragments, and schemes while maintaining the original URL structure
  • Designed for read-only content only; skips markdown.new for authenticated workflows, interactive dashboards, paywalls, and sites requiring session state
  • Provides fallback behavior to the original URL if markdown.new returns access errors, CAPTCHAs, rate limits, or incomplete content
SKILL.md

markdown.new URL Prefix

Whenever you need to visit a website URL, you must:

  1. rewrite it to go through https://markdown.new/, then
  2. visit the rewritten URL, and
  3. pull the Markdown content from that page for use in your answer/notes.

Rewrite Rule

  1. Normalize the destination into an absolute URL with a scheme (https:// preferred).
  2. Prefix it with https://markdown.new/ (do not drop the original scheme).

Examples

  • https://example.com -> https://markdown.new/https://example.com
  • https://example.com/docs?a=1#b -> https://markdown.new/https://example.com/docs?a=1#b
  • example.com -> https://markdown.new/https://example.com

Agent Workflow (Required)

Related skills
Installs
1.2K
GitHub Stars
929
First Seen
Feb 15, 2026