{
  "schemaVersion": "1.0",
  "item": {
    "slug": "get-tldr",
    "name": "get-tldr",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/itobey/get-tldr",
    "canonicalUrl": "https://clawhub.ai/itobey/get-tldr",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/get-tldr",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=get-tldr",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "get_tldr.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-05-07T17:22:31.273Z",
      "expiresAt": "2026-05-14T17:22:31.273Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
        "contentDisposition": "attachment; filename=\"afrexai-annual-report-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/get-tldr"
    },
    "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/get-tldr",
    "agentPageUrl": "https://openagent3.xyz/skills/get-tldr/agent",
    "manifestUrl": "https://openagent3.xyz/skills/get-tldr/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/get-tldr/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": "get-tldr",
        "body": "Quick, deterministic skill to summarize the content of a link using the get-tldr.com API.\n\nUsage pattern (for the agent):\n\nTrigger when the user says something like: \"get-tldr <link>\" or \"get-tldr\" followed by a URL.\nThe skill will call the bundled script get_tldr.py with the URL as the single argument.\nIMPORTANT: The API response is already a summary; the skill must NOT further summarize or alter the content — only take the value of the \"summary\" element of the json and format it for readability. Take the entire summary property, do not omit anything.\nIMPORTANT: If the summary element of the response json from the API already is formatted in markdown, just return the formatted markdown. Do not omit anything and do not change the text. Make sure its not wrapped in a code block and if so remove the wrapping code block, so that it correctly renders as markdown, but not as a code block.\n\nFiles included:\n\nget_tldr.py — small Python script (located in the skill folder) that posts {\"input\": \"<URL>\"} to https://www.get-tldr.com/api/v1/summarize using the required X-API-Key header and prints the JSON response to stdout. The script reads the API key and an optional logfile path from ~/.config/get-tldr/config.json (preferred), or falls back to the GET_TLDR_API_KEY environment variable or a .env file in the skill folder. If no logfile is configured the script defaults to ~/.config/get-tldr/skill.log.\n\nNotes for maintainers:\n\nCreate the config file at ~/.config/get-tldr/config.json with the following structure (JSON):\n\n{\n  \"api_token\": \"<your_key_here>\",\n  \"logfile\": \"/path/to/logfile.log\"\n}\n\nThe script will use the \"api_token\" field from the config. If the config file is missing the script falls back to the GET_TLDR_API_KEY environment variable or a .env file in the skill folder.\nIMPORTANT: Do not summarize the API response again; the skill should only format the response for readability and must not alter the content."
      }
    ],
    "body": "get-tldr\n\nQuick, deterministic skill to summarize the content of a link using the get-tldr.com API.\n\nUsage pattern (for the agent):\n\nTrigger when the user says something like: \"get-tldr <link>\" or \"get-tldr\" followed by a URL.\nThe skill will call the bundled script get_tldr.py with the URL as the single argument.\nIMPORTANT: The API response is already a summary; the skill must NOT further summarize or alter the content — only take the value of the \"summary\" element of the json and format it for readability. Take the entire summary property, do not omit anything.\nIMPORTANT: If the summary element of the response json from the API already is formatted in markdown, just return the formatted markdown. Do not omit anything and do not change the text. Make sure its not wrapped in a code block and if so remove the wrapping code block, so that it correctly renders as markdown, but not as a code block.\n\nFiles included:\n\nget_tldr.py — small Python script (located in the skill folder) that posts {\"input\": \"<URL>\"} to https://www.get-tldr.com/api/v1/summarize using the required X-API-Key header and prints the JSON response to stdout. The script reads the API key and an optional logfile path from ~/.config/get-tldr/config.json (preferred), or falls back to the GET_TLDR_API_KEY environment variable or a .env file in the skill folder. If no logfile is configured the script defaults to ~/.config/get-tldr/skill.log.\n\nNotes for maintainers:\n\nCreate the config file at ~/.config/get-tldr/config.json with the following structure (JSON):\n{\n  \"api_token\": \"<your_key_here>\",\n  \"logfile\": \"/path/to/logfile.log\"\n}\n\nThe script will use the \"api_token\" field from the config. If the config file is missing the script falls back to the GET_TLDR_API_KEY environment variable or a .env file in the skill folder.\nIMPORTANT: Do not summarize the API response again; the skill should only format the response for readability and must not alter the content."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/itobey/get-tldr",
    "publisherUrl": "https://clawhub.ai/itobey/get-tldr",
    "owner": "itobey",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/get-tldr",
    "downloadUrl": "https://openagent3.xyz/downloads/get-tldr",
    "agentUrl": "https://openagent3.xyz/skills/get-tldr/agent",
    "manifestUrl": "https://openagent3.xyz/skills/get-tldr/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/get-tldr/agent.md"
  }
}