Setup & Installation
Or with the ClawHub CLI, for registry-managed skill folders outside a full OpenClaw workspace:
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.
User asks: get the Zod documentation as Markdown
- 1Receives the target URL from the user
- 2Runs curl -sL https://into.md/https://zod.dev
- 3into.md fetches and converts the page to clean Markdown
- 4Returns the Markdown content to the user
Clean Markdown representation of the Zod documentation page