Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
thebushidocollective avatar

Token Efficiency

  • 1 installs
  • 186 repo stars
  • Updated July 19, 2026
  • thebushidocollective/han

Minimize token consumption through efficient tool usage patterns.

About

Minimizes token consumption through efficient tool usage patterns. A developer uses it when reducing an agent's token overhead.

  • Efficient tool usage patterns
  • Minimizes token consumption

Token Efficiency by the numbers

  • 1 all-time installs (skills.sh)
  • Ranked #14,098 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
  • Data as of Aug 1, 2026 (Skillselion catalog sync)
npx skills add https://github.com/thebushidocollective/han --skill token-efficiency

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs1
repo stars186
Last updatedJuly 19, 2026
Repositorythebushidocollective/han

What it does

Minimize token consumption through efficient tool usage patterns.

Files

SKILL.mdMarkdownGitHub ↗

Token Efficiency

Name

han-core:token-efficiency

Description

Minimize token consumption without sacrificing quality. Every token spent on overhead is a token not available for thinking.

File Operations

  • Use Edit for modifications — sends only the diff (~50-100 tokens), not the whole file
  • Use Write only for new files — full file content costs ~500-5000 tokens
  • Never re-read a file you just wrote — you already know its contents
  • Batch related edits to the same file in one Edit call

Search Operations

  • Use Glob for file finding — faster and cheaper than Bash find
  • Use Grep for content search — cheaper than Bash grep
  • Set head_limit on Grep — avoid returning thousands of matches

Context Management

  • Don't repeat what the user said — they can see their own message
  • Lead with the answer — skip preamble and filler
  • Use structured output — tables and lists over prose for data

Anti-Patterns

WastefulEfficient
Read file → Write entire file with 1 line changedEdit the specific line
cat file.txt via BashRead tool
find . -name "*.ts" via BashGlob **/*.ts
"Let me start by reading the file to understand..."Just read it

When to Apply

Always. Token efficiency is not premature optimization — it directly extends how much work fits in a session.

Related skills

AI & Agent Buildingagentsautomation

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.