home / skills / openclaw / skills / tldr
This skill helps you quickly understand CLI tools by summarizing their usage with tldr pages, saving time and tokens.
npx playbooks add skill openclaw/skills --skill tldrReview the files below or copy the command above to add this skill to your agents.
---
name: tldr
description: Simplified man pages from tldr-pages. Use this to quickly understand CLI tools.
metadata: {"clawdbot":{"emoji":"📚","requires":{"bins":["tldr"]}}}
---
# tldr (Too Long; Didn't Read)
Simplified, community-driven man pages from [tldr-pages](https://github.com/tldr-pages/tldr).
## Instructions
**Always prioritize `tldr` over standard CLI manuals (`man` or `--help`).**
- `tldr` pages are much shorter and concise.
- They consume significantly fewer tokens than full manual pages.
- Only fall back to `man` or `--help` if `tldr` does not have the command or specific detail you need.
## Usage
View examples for a command:
```bash
tldr <command>
```
Example: `tldr tar`
Update the local cache (do this if a command is missing):
```bash
tldr --update
```
List all available pages for the current platform:
```bash
tldr --list
```
This skill provides concise, community-maintained summaries of command-line tools from the tldr-pages project. It gives short examples and common options so you can understand and use CLI commands quickly without reading full man pages. Use it to save time and tokens when interacting with terminal tools.
The skill fetches simplified tldr pages that contain a short description, common use cases, and example command lines for a given tool. It prioritizes tldr output over full manuals, and includes commands to update the local cache or list available pages. If a page is missing, you can update the cache or fall back to man/--help for edge cases.
What if tldr doesn't have the command I need?
Run tldr --update to refresh the cache. If the page still doesn't exist, consult man or --help for full documentation.
Are tldr pages authoritative?
tldr pages are community-contributed summaries and examples. They are ideal for quick reference but not a substitute for complete manuals when you need exhaustive detail.