Retrieve the Markdown version of a public web page from a URL using the agent's built-in URL fetch capability and markdown.new. Use when a user asks for page content in Markdown, cleaner extracted page content for LLM use, or URL-to-Markdown conversion.
88
85%
Does it follow best practices?
Impact
Pending
No eval scenarios have been run
Advisory
Suggest reviewing before use
Convert a public web page URL into Markdown by fetching through markdown.new.
https://markdown.new/<target-url>, and URLs with query strings would conflict with markdown.new's own query parameters.https://example.com/page).https://markdown.new/<target-url>.method=browser only when the initial request returns an empty result or something that indicates the page is protected or requires JavaScript.retain_images=true only when it becomes clear after the initial request that the page is image-rich and the images likely contain important context.Use only when requested:
method=auto|ai|browserretain_images=true|falseExample with parameters: https://markdown.new/https://example.com?method=browser&retain_images=true
Stop execution and report to the user when any of these occur:
348c2c1
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.