Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions .claude-plugin/marketplace.json
Original file line number Diff line number Diff line change
Expand Up @@ -1670,6 +1670,21 @@
"security",
"compliance"
]
},
{
"name": "tldr",
"source": "./plugins/tldr",
"description": "Keeps Claude Code's replies short. Turn it on and every answer stays under five lines until you turn it off.",
"version": "1.0.0",
"author": {
"name": "rodrigooler"
},
"category": "Development Engineering",
"homepage": "https://github.com/rodrigooler/claude-code-tldr",
"keywords": [
"productivity",
"concise"
]
}
]
}
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,7 @@ Install or disable them dynamically with the `/plugin` command — enabling you
- [python-expert](./plugins/python-expert)
- [rapid-prototyper](./plugins/rapid-prototyper)
- [react-native-dev](./plugins/react-native-dev)
- [tldr](./plugins/tldr)
- [vision-specialist](./plugins/vision-specialist)
- [web-dev](./plugins/web-dev)

Expand Down
11 changes: 11 additions & 0 deletions plugins/tldr/.claude-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"name": "tldr",
"description": "Keeps Claude Code's replies short. Turn it on and every answer stays under five lines until you turn it off.",
"version": "1.0.0",
"author": {
"name": "rodrigooler",
"url": "https://github.com/rodrigooler"
},
"homepage": "https://github.com/rodrigooler/claude-code-tldr",
"keywords": ["productivity", "concise", "output", "brevity"]
}
28 changes: 28 additions & 0 deletions plugins/tldr/commands/tldr.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
---
description: Turn on short-answer mode. Every reply stays under five lines until you turn it off.
author: rodrigooler
author-url: https://github.com/rodrigooler
version: 1.0.0
---

# tldr

Turn on a short-answer mode and keep it on for the rest of the session, until I say "tldr off".

While it is on, follow these rules on every reply:

- Keep it to three to five lines. If it does not fit, it is too long, so cut more.
- Give the result and the next step only. No context, no recap, no preamble.
- Drop the filler. No "great question", no "let me explain", no summary of what you are about to do. Just do it.
- Use short bullets, one idea per line.
- For code or commands, show only the part that changes, not the whole file.
- If an honest answer needs more (a real decision, a risk, a long set of steps), give the verdict in five lines and offer the detail if I ask for it.

Never shorten these, only the words around them:

- Code I am going to paste or run. It has to be complete and correct.
- Security or data-loss warnings. Clarity beats brevity.

To stop, I will say "tldr off" and you go back to your normal style.

Source: https://github.com/rodrigooler/claude-code-tldr (MIT)