skills$openclaw/get-tldr
itobey5.5k

by itobey

get-tldr – OpenClaw Skill

get-tldr is an OpenClaw Skills integration for writing workflows. Provide the summary returned by the get-tldr.com summarize API without further summarization; the skill should format the API output for readability but must not change its content.

5.5k stars7.7k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026writing

Skill Snapshot

nameget-tldr
descriptionProvide the summary returned by the get-tldr.com summarize API without further summarization; the skill should format the API output for readability but must not change its content. OpenClaw Skills integration.
owneritobey
repositoryitobey/get-tldr
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @itobey/get-tldr
last updatedFeb 7, 2026

Maintainer

itobey

itobey

Maintains get-tldr in the OpenClaw Skills directory.

View GitHub profile
File Explorer
3 files
.
_meta.json
268 B
get_tldr.py
4.1 KB
SKILL.md
2.2 KB
SKILL.md

name: get-tldr description: Provide the summary returned by the get-tldr.com summarize API without further summarization; the skill should format the API output for readability but must not change its content.

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.
README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

FAQ

How do I install get-tldr?

Run openclaw add @itobey/get-tldr in your terminal. This installs get-tldr into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/itobey/get-tldr. Review commits and README documentation before installing.