Tokenless is a six-phase pipeline that gives AI agents 60–92% token savings on a wide range of agentic tasks — without losing the information that matters. Free and open source.
Every call runs the same deterministic pipeline. Token budgets are enforced at each phase — no overruns, no surprises.
Tokenless auto-detects the format and routes it to the right processor. No configuration needed.
| Content Type | Input Tokens | Avoidance |
|---|
# Install the package npm install tokenless # (Optional) Set up Claude Code integration tokenless init --global --hooks
import { pipeline } from 'tokenless' const result = await pipeline(content, query, { tokenBudget: 4000, topN: 3, }) // result.economy.avoidanceRate → 0.88 // result.bullets → key facts // result.fields → structured data // result.economy.tokensAvoided → e.g. 9,429