{
  "schemaVersion": "1.0",
  "item": {
    "slug": "desearch-crawl",
    "name": "Crawl By Desearch",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/okradze/desearch-crawl",
    "canonicalUrl": "https://clawhub.ai/okradze/desearch-crawl",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/desearch-crawl",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=desearch-crawl",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "scripts/desearch.py",
      "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/desearch-crawl"
    },
    "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/desearch-crawl",
    "agentPageUrl": "https://openagent3.xyz/skills/desearch-crawl/agent",
    "manifestUrl": "https://openagent3.xyz/skills/desearch-crawl/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/desearch-crawl/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": "Crawl Webpage By Desearch",
        "body": "Extract content from any webpage URL. Returns clean text or raw HTML."
      },
      {
        "title": "Quick Start",
        "body": "Get an API key from https://console.desearch.ai\nSet environment variable: export DESEARCH_API_KEY='your-key-here'"
      },
      {
        "title": "Usage",
        "body": "# Crawl a webpage (returns clean text by default)\nscripts/desearch.py crawl \"https://en.wikipedia.org/wiki/Artificial_intelligence\"\n\n# Get raw HTML\nscripts/desearch.py crawl \"https://example.com\" --crawl-format html"
      },
      {
        "title": "Options",
        "body": "OptionDescription--crawl-formatOutput content format: text (default) or html"
      },
      {
        "title": "Read a documentation page",
        "body": "scripts/desearch.py crawl \"https://docs.python.org/3/tutorial/index.html\""
      },
      {
        "title": "Get raw HTML for analysis",
        "body": "scripts/desearch.py crawl \"https://example.com/page\" --crawl-format html"
      },
      {
        "title": "Example (format=text, truncated, default)",
        "body": "Artificial intelligence (AI) is the capability of computational systems to perform tasks that typically require human intelligence, such as learning, reasoning, problem-solving, perception, and decision-making..."
      },
      {
        "title": "Example (format=html, truncated)",
        "body": "<!DOCTYPE html>\n<html>\n  <head><title>Artificial intelligence - Wikipedia</title></head>\n  <body>\n    <p>Artificial intelligence (AI) is the capability of computational systems...</p>\n  </body>\n</html>"
      },
      {
        "title": "Notes",
        "body": "Response is plain text or raw HTML — not JSON.\nDefault format is text. Use --crawl-format html only when you need to inspect page structure.\nPrefer text format to avoid bloating the agent context with markup."
      },
      {
        "title": "Errors",
        "body": "Status 401, Unauthorized (e.g., missing/invalid API key)\n\n{\n  \"detail\": \"Invalid or missing API key\"\n}\n\nStatus 402, Payment Required (e.g., balance depleted)\n\n{\n  \"detail\": \"Insufficient balance, please add funds to your account to continue using the service.\"\n}"
      },
      {
        "title": "Resources",
        "body": "API Reference\nDesearch Console"
      }
    ],
    "body": "Crawl Webpage By Desearch\n\nExtract content from any webpage URL. Returns clean text or raw HTML.\n\nQuick Start\nGet an API key from https://console.desearch.ai\nSet environment variable: export DESEARCH_API_KEY='your-key-here'\nUsage\n# Crawl a webpage (returns clean text by default)\nscripts/desearch.py crawl \"https://en.wikipedia.org/wiki/Artificial_intelligence\"\n\n# Get raw HTML\nscripts/desearch.py crawl \"https://example.com\" --crawl-format html\n\nOptions\nOption\tDescription\n--crawl-format\tOutput content format: text (default) or html\nExamples\nRead a documentation page\nscripts/desearch.py crawl \"https://docs.python.org/3/tutorial/index.html\"\n\nGet raw HTML for analysis\nscripts/desearch.py crawl \"https://example.com/page\" --crawl-format html\n\nResponse\nExample (format=text, truncated, default)\nArtificial intelligence (AI) is the capability of computational systems to perform tasks that typically require human intelligence, such as learning, reasoning, problem-solving, perception, and decision-making...\n\nExample (format=html, truncated)\n<!DOCTYPE html>\n<html>\n  <head><title>Artificial intelligence - Wikipedia</title></head>\n  <body>\n    <p>Artificial intelligence (AI) is the capability of computational systems...</p>\n  </body>\n</html>\n\nNotes\nResponse is plain text or raw HTML — not JSON.\nDefault format is text. Use --crawl-format html only when you need to inspect page structure.\nPrefer text format to avoid bloating the agent context with markup.\nErrors\n\nStatus 401, Unauthorized (e.g., missing/invalid API key)\n\n{\n  \"detail\": \"Invalid or missing API key\"\n}\n\n\nStatus 402, Payment Required (e.g., balance depleted)\n\n{\n  \"detail\": \"Insufficient balance, please add funds to your account to continue using the service.\"\n}\n\nResources\nAPI Reference\nDesearch Console"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/okradze/desearch-crawl",
    "publisherUrl": "https://clawhub.ai/okradze/desearch-crawl",
    "owner": "okradze",
    "version": "1.0.1",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/desearch-crawl",
    "downloadUrl": "https://openagent3.xyz/downloads/desearch-crawl",
    "agentUrl": "https://openagent3.xyz/skills/desearch-crawl/agent",
    "manifestUrl": "https://openagent3.xyz/skills/desearch-crawl/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/desearch-crawl/agent.md"
  }
}