{
  "schemaVersion": "1.0",
  "item": {
    "slug": "pls-url-to-markdown",
    "name": "PLS URL to Markdown",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/mattvalenta/pls-url-to-markdown",
    "canonicalUrl": "https://clawhub.ai/mattvalenta/pls-url-to-markdown",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/pls-url-to-markdown",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=pls-url-to-markdown",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/pls-url-to-markdown"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/pls-url-to-markdown",
    "agentPageUrl": "https://openagent3.xyz/skills/pls-url-to-markdown/agent",
    "manifestUrl": "https://openagent3.xyz/skills/pls-url-to-markdown/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/pls-url-to-markdown/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "URL to Markdown Converter",
        "body": "Fetches URLs and converts web pages to clean Markdown."
      },
      {
        "title": "Python Method (markdownify)",
        "body": "pip install requests beautifulsoup4 markdownify\n\npython3 -c \"... fetching and converting URL ...\""
      },
      {
        "title": "CLI Tools (html2text, pandoc)",
        "body": "curl -s URL | html2text\nwget -q -O - URL | pandoc -f html -t markdown"
      },
      {
        "title": "Full Extraction Script",
        "body": "import requests\nfrom bs4 import BeautifulSoup\nfrom markdownify import markdownify as md\n\ndef url_to_markdown(url, output_file=None):\n    # ... fetch, parse, convert logic ...\n    pass"
      },
      {
        "title": "Extract Article Body",
        "body": "def extract_article(html):\n    soup = BeautifulSoup(html, 'html.parser')\n    article = soup.find('article') or soup.find('main')\n    return md(str(article)) if article else None"
      },
      {
        "title": "Preserve Code Blocks",
        "body": "def preserve_code(html):\n    # ... logic to wrap code in ``` ...\n    pass"
      },
      {
        "title": "CLI Usage",
        "body": "python url_to_markdown.py URL -o output.md"
      },
      {
        "title": "Error Handling",
        "body": "def safe_fetch(url, retries=3):\n    # ... retry logic ...\n    pass"
      }
    ],
    "body": "URL to Markdown Converter\n\nFetches URLs and converts web pages to clean Markdown.\n\nQuick Start\nPython Method (markdownify)\npip install requests beautifulsoup4 markdownify\n\npython3 -c \"... fetching and converting URL ...\"\n\nCLI Tools (html2text, pandoc)\ncurl -s URL | html2text\nwget -q -O - URL | pandoc -f html -t markdown\n\nFull Extraction Script\nimport requests\nfrom bs4 import BeautifulSoup\nfrom markdownify import markdownify as md\n\ndef url_to_markdown(url, output_file=None):\n    # ... fetch, parse, convert logic ...\n    pass\n\nContent Extraction Patterns\nExtract Article Body\ndef extract_article(html):\n    soup = BeautifulSoup(html, 'html.parser')\n    article = soup.find('article') or soup.find('main')\n    return md(str(article)) if article else None\n\nPreserve Code Blocks\ndef preserve_code(html):\n    # ... logic to wrap code in ``` ...\n    pass\n\nCLI Usage\npython url_to_markdown.py URL -o output.md\n\nError Handling\ndef safe_fetch(url, retries=3):\n    # ... retry logic ...\n    pass"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/mattvalenta/pls-url-to-markdown",
    "publisherUrl": "https://clawhub.ai/mattvalenta/pls-url-to-markdown",
    "owner": "mattvalenta",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/pls-url-to-markdown",
    "downloadUrl": "https://openagent3.xyz/downloads/pls-url-to-markdown",
    "agentUrl": "https://openagent3.xyz/skills/pls-url-to-markdown/agent",
    "manifestUrl": "https://openagent3.xyz/skills/pls-url-to-markdown/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/pls-url-to-markdown/agent.md"
  }
}