# Send get-tldr to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- 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.
## Suggested prompts
### New install

```text
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.
```
### Upgrade existing

```text
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.
```
## Machine-readable fields
```json
{
  "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": {
    "downloadUrl": "/downloads/get-tldr",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=get-tldr",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "get_tldr.py",
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "get-tldr",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-12T02:56:42.539Z",
      "expiresAt": "2026-05-19T02:56:42.539Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=get-tldr",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=get-tldr",
        "contentDisposition": "attachment; filename=\"get-tldr-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "get-tldr"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "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."
      ]
    }
  },
  "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"
  }
}
```
## Documentation

### get-tldr

Quick, deterministic skill to summarize the content of a link using the get-tldr.com API.

Usage pattern (for the agent):

Trigger when the user says something like: "get-tldr <link>" or "get-tldr" followed by a URL.
The skill will call the bundled script get_tldr.py with the URL as the single argument.
IMPORTANT: 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.
IMPORTANT: 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.

Files included:

get_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.

Notes for maintainers:

Create the config file at ~/.config/get-tldr/config.json with the following structure (JSON):

{
  "api_token": "<your_key_here>",
  "logfile": "/path/to/logfile.log"
}

The 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.
IMPORTANT: Do not summarize the API response again; the skill should only format the response for readability and must not alter the content.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: itobey
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-12T02:56:42.539Z
- Expires at: 2026-05-19T02:56:42.539Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/get-tldr)
- [Send to Agent page](https://openagent3.xyz/skills/get-tldr/agent)
- [JSON manifest](https://openagent3.xyz/skills/get-tldr/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/get-tldr/agent.md)
- [Download page](https://openagent3.xyz/downloads/get-tldr)