Less Token
Save 40-65% tokens on summarization tasks. Compress verbose natural language prompts into structured one-line instructions that any AI understands.
This skill is a text-to-text translator only. It does not access files, fetch URLs, execute commands, or call external services. It only converts your summarization prompts into compressed syntax.
What You Get
- 40-65% fewer tokens — Compress long summarization prompts into one-line instructions.
- Same result — AI produces identical output from the compressed instruction.
- Cross-platform — Compressed instructions work on ChatGPT, Claude, Gemini, DeepSeek, Kimi, 豆包, 元宝.
- No install — No CLI, no brew, no npm, no binary, no API key. Copy, paste, done.
How to Use
- Copy the full protocol text from this skill page
- Paste it into any AI conversation
- AI responds — ready to compress
Quick Test
After pasting, try:
- "Compress this: Please summarize the key points from this document in 3 professional bullet points"
- AI returns:
[SUM|sty=bullets,cnt=3,ton=pro]=>[OUT]
- 70% fewer tokens. Same result.
Compression Templates
| What you want |
Verbose prompt |
Compressed |
| Short summary |
"Give me a brief summary of the main points" |
[SUM|len=short]=>[OUT] |
| 3 bullet points |
"Summarize in 3 concise bullet points" |
[SUM|sty=bullets,cnt=3]=>[OUT] |
| Professional report |
"Create a professional executive summary in Markdown" |
[SUM|ton=pro,sty=executive,fmt=md]=>[OUT] |
| Key findings only |
"Extract only the key findings and important data" |
[SUM|key=findings]=>[OUT] |
| Summarize + translate |
"Summarize then translate to Chinese" |
[SUM|len=short]=>[TRANSLATE|lang=zh]=>[OUT] |
| Compare + summarize |
"Compare these two and summarize the differences" |
[CMP]=>[DIFF]=>[SUM|sty=bullets]=>[OUT] |
| Reformat summary |
"Summarize as bullet points in Markdown" |
[SUM|sty=bullets]=>[FMT|fmt=md]=>[OUT] |
Before & After
Before (28 words):
Please read through this document carefully, identify the most important points and key takeaways, then write a concise professional summary using bullet points.
After (7 words):
[SUM|key=important,sty=bullets,ton=pro]=>[OUT]
75% fewer tokens. Same result.
Before (22 words):
Take the main findings from the text above and rewrite them as a short executive summary suitable for a business audience.
After (5 words):
[SUM|sty=executive,ton=pro]=>[OUT]
77% fewer tokens. Same result.
Comparison
| Feature |
CLI-based tools |
Less Token |
| Install required |
Yes (brew, npm, binary) |
No |
| API key required |
Yes |
No |
| Works on |
Single platform |
Any AI platform |
| Token efficiency |
Standard prompts |
40-65% fewer tokens |
| Setup time |
5-10 minutes |
30 seconds |
| External dependencies |
Multiple |
Zero |
Tested Platforms
ChatGPT ✅ · Claude ✅ · Gemini ✅ · DeepSeek ✅ · Kimi ✅ · 豆包 ✅ · 元宝 ✅
Links
License
MIT — Free to use, share, and build on.
© 2026 I-Lang Research, iLang Inc., Canada.
1---2name: less-token3description: Save 40-65% tokens on summarization tasks. Compress verbose summary prompts into structured one-line instructions. Text-to-text translator only — no CLI, no API key, no install, no external dependencies. Works on ChatGPT, Claude, Gemini, DeepSeek, Kimi. Instruction-only, zero dependencies.4---5
6# Less Token
7
8Save 40-65% tokens on summarization tasks. Compress verbose natural language prompts into structured one-line instructions that any AI understands.
9
10**This skill is a text-to-text translator only.** It does not access files, fetch URLs, execute commands, or call external services. It only converts your summarization prompts into compressed syntax.
11
12## What You Get
13
141. **40-65% fewer tokens** — Compress long summarization prompts into one-line instructions.
152. **Same result** — AI produces identical output from the compressed instruction.
163. **Cross-platform** — Compressed instructions work on ChatGPT, Claude, Gemini, DeepSeek, Kimi, 豆包, 元宝.
174. **No install** — No CLI, no brew, no npm, no binary, no API key. Copy, paste, done.
18
19## How to Use
20
211. Copy the full protocol text from this skill page
222. Paste it into any AI conversation
233. AI responds — ready to compress
24
25
26### Quick Test
27
28After pasting, try:
29
30- "Compress this: Please summarize the key points from this document in 3 professional bullet points"
31- AI returns: `[SUM|sty=bullets,cnt=3,ton=pro]=>[OUT]`
32- 70% fewer tokens. Same result.
33
34## Compression Templates
35
36| What you want | Verbose prompt | Compressed |
37|--------------|----------------|------------|
38| Short summary | "Give me a brief summary of the main points" | `[SUM\|len=short]=>[OUT]` |
39| 3 bullet points | "Summarize in 3 concise bullet points" | `[SUM\|sty=bullets,cnt=3]=>[OUT]` |
40| Professional report | "Create a professional executive summary in Markdown" | `[SUM\|ton=pro,sty=executive,fmt=md]=>[OUT]` |
41| Key findings only | "Extract only the key findings and important data" | `[SUM\|key=findings]=>[OUT]` |
42| Summarize + translate | "Summarize then translate to Chinese" | `[SUM\|len=short]=>[TRANSLATE\|lang=zh]=>[OUT]` |
43| Compare + summarize | "Compare these two and summarize the differences" | `[CMP]=>[DIFF]=>[SUM\|sty=bullets]=>[OUT]` |
44| Reformat summary | "Summarize as bullet points in Markdown" | `[SUM\|sty=bullets]=>[FMT\|fmt=md]=>[OUT]` |
45
46## Before & After
47
48**Before** (28 words):
49> Please read through this document carefully, identify the most important points and key takeaways, then write a concise professional summary using bullet points.
50
51**After** (7 words):
52```
53[SUM|key=important,sty=bullets,ton=pro]=>[OUT]
54```
5575% fewer tokens. Same result.
56
57**Before** (22 words):
58> Take the main findings from the text above and rewrite them as a short executive summary suitable for a business audience.
59
60**After** (5 words):
61```
62[SUM|sty=executive,ton=pro]=>[OUT]
63```
6477% fewer tokens. Same result.
65
66## Comparison
67
68| Feature | CLI-based tools | Less Token |
69|---------|----------------|------------|
70| Install required | Yes (brew, npm, binary) | No |
71| API key required | Yes | No |
72| Works on | Single platform | Any AI platform |
73| Token efficiency | Standard prompts | 40-65% fewer tokens |
74| Setup time | 5-10 minutes | 30 seconds |
75| External dependencies | Multiple | Zero |
76
77## Tested Platforms
78
79ChatGPT ✅ · Claude ✅ · Gemini ✅ · DeepSeek ✅ · Kimi ✅ · 豆包 ✅ · 元宝 ✅
80
81## Links
82
83- Protocol & tools: https://ilang.ai
84- Full dictionary: https://github.com/ilang-ai/ilang-dict
85- Research: https://research.ilang.ai
86
87## License
88
89MIT — Free to use, share, and build on.
90
91© 2026 I-Lang Research, iLang Inc., Canada.
92