LaunchKit · 2026
Back to Skills

intomd

Fetch and convert any documentation URL to Markdown using into.md service.

0
0 downloads
by @rezhajulio

Setup & Installation

openclaw skills install @rezhajulio/intomd

Or with the ClawHub CLI, for registry-managed skill folders outside a full OpenClaw workspace:

npx clawhub install intomd

What This Skill Does

Fetches any documentation URL and returns clean Markdown by proxying through the into.md service. Requires only curl. Works on any publicly accessible documentation page.

Converts any docs URL to clean Markdown in a single curl command, avoiding HTML parsing or browser scraping.

When to use it

  • Read library docs in a terminal without opening a browser
  • Feed documentation pages into an LLM prompt
  • Save a project's API reference as a local Markdown file
  • Check docs from inside a script or pipeline
  • Pipe documentation content into grep or other CLI tools

Example Workflow

Here's how your AI assistant might use this skill in practice.

INPUT

User asks: get the Zod documentation as Markdown

AGENT
  1. 1Receives the target URL from the user
  2. 2Runs curl -sL https://into.md/https://zod.dev
  3. 3into.md fetches and converts the page to clean Markdown
  4. 4Returns the Markdown content to the user
OUTPUT

Clean Markdown representation of the Zod documentation page