token-saverlisted
Install: claude install-skill DanielNoamTuby/claude-skills
# Token Saver
Reach the fewest-token result that still gets the work done and verified. A
short session is not successful if it leaves the human to reconstruct what
happened.
## Where cost comes from
The main cost is input repeated across turns. Avoid:
- reading a whole file when a targeted range answers the question;
- rereading files immediately after a successful edit;
- using screenshots or large DOM dumps when text is enough;
- polling a slow job in a tight loop;
- narrating a plan, executing it, and then repeating the plan;
- dumping raw command output instead of summarizing the finding.
## Cheap path
1. Locate before reading. Search for the symbol or relevant lines, then read
only the needed range. When editing, read enough surrounding context to
preserve the file's invariants.
2. Use the cheapest surface that answers the question:
```
CLI or API → filesystem → rendered UI
```
Shape output at the source: request selected JSON fields, inspect a diff
summary before a full diff, and limit logs to the relevant interval.
3. Batch independent searches, reads, and commands in one turn.
4. Treat a successful edit or trusted green check as evidence. Recheck only
when another process could have changed the result.
5. Prefer blocking waits, background jobs, or scheduled wakeups over polling.
6. Delegate only when the conclusion is cheaper than loading the search output
into the current context. Do not duplicate the same investigation yourself.
7