返回 Skill 列表
extension
分类: 数据与分析无需 API Key

markdown.new

使用 `https://markdown.new/{target_url}` 格式的链接获取页面并将其转换为静态 Markdown。当用户请求时触发此技能。

person作者: ctxinfhubclawhub

Markdown.New Local-First Static Access

Use markdown.new as the default path to access URL content as structured Markdown.

Required Behavior

  1. Prefer local access with curl (or any suitable alternative tools):
curl -L --fail --silent --show-error "https://markdown.new/<target_url>"
  1. Always attempt markdown.new first when the target is a readable page:
  • docs and manuals
  • GitHub repository home/README pages
  • blog posts and announcements
  • landing pages and product pages
  • changelog and release-note pages
  1. Do not start with direct page browsing if markdown.new can reasonably handle the page.

  2. When markdown.new succeeds, keep using this route for that task unless the user explicitly asks for another method.

  3. If markdown.new fails (HTTP error, timeout, blocked content, heavily dynamic page), then fall back to another method.

Examples

curl -L --fail --silent --show-error "https://markdown.new/https://github.com/ctxinf/markdown.new-skill"
curl -L --fail --silent --show-error "https://markdown.new/https://example.com/docs/getting-started"

Output Expectation

The result should be static, structured Markdown suitable for quick reading, summarization, extraction, and downstream processing.