cd /news/large-language-models/a-claude-skill-that-turns-long-ai-an… Β· home β€Ί topics β€Ί large-language-models β€Ί article
[ARTICLE Β· art-40732] src=dev.to β†— pub= topic=large-language-models verified=true sentiment=Β· neutral

A Claude Skill That Turns Long AI Answers Into Short Notes

A developer created 'toot', a Claude skill that condenses long AI answers into short, symbol-heavy notes. The skill, named after the Persian word for mulberry, reduces verbose responses to a few lines while preserving key information. It is implemented as a single SKILL.md file that instructs Claude to summarize answers on demand.

read2 min views1 publishedJun 26, 2026

An AI gives a long answer. You read fast and skip most of it. Every time.

Your eyes don't read the whole reply. They look for one thing: the line that says do this, not that. The other 400 words are extra. So I wanted a way to turn any answer into short notes β€” the kind you write in the margin of a book.

toot

turns a long answer into short notes. A few words per line. Symbols do most of the work.

The name is Persian: toot

(ΨͺوΨͺ) means mulberry β€” the small berry you eat in one bite. That is the idea: take something big and make it small enough to take in at once.

Here is a real answer about adding a database index:

Adding an index on

user_id

makes these lookups faster, but it is not free. Every index must be updated on each INSERT, UPDATE, and DELETE, so tables with many writes pay a cost. Your table has many reads and always filters onuser_id

, so it is worth it. One warning: ifuser_id

has very few different values, the planner may skip the index. Also, a composite index on(user_id, created_at)

would cover both the filter and the sort.

The same answer, after toot:

index on user_id β†’ faster reads βœ“
every write updates it β†’ write cost ↑
many reads + filters user_id β†’ worth it βœ“
⚠ few different values β†’ planner skips it β†’ useless
composite (user_id, created_at) ≑ covers filter + sort

About 110 words become 5 lines. Nothing important is lost β€” the cost, the warning, and the advice are all still there. Two rules keep it safe:

toot

translates only the one hard word, on its own line below the note. Words you already know β€” like cache

or rollback

β€” stay in English.The skill is just one SKILL.md

file with rules written in plain English. There is no script. Claude does the work; the file tells it how.

1. Install β€” go to your skills folder, then clone the gist:

cd ~/.claude/skills
git clone https://gist.github.com/dalirnet/26bc7f57a13f13a030afb78ed17f7d71.git toot

Claude finds it in your next session. To update later: cd ~/.claude/skills/toot && git pull

.

2. Use it β€” say toot

(or /toot

) after any answer. To always translate into one language, add this line to your project's CLAUDE.md

:

toot default language: Persian
── more in #large-language-models 4 stories Β· sorted by recency
── more on @claude 3 stories trending now
sponsored brought to you by zahid.host 4,200+ EU-deployed projects
reading about agents? ship yours in a single git push.

Run your AI side-project on zahid.host

EU-based hosting, git-push deploys, automatic HTTPS, no cold starts. Free tier with a custom domain β€” perfect for shipping the agent you just read about.

$git push zahid main
β†’ Live at https://your-agent.zahid.host βœ“
Get free account β†’ Pricing
from €0/mo Β· no card required
LIVE [news/a-claude-skill-that-…] indexed:0 read:2min 2026-06-26 Β· β€”