Reduce AI coding input-token spend locally, with reproducible accuracy-retention benchmarks.
A one-page brief for whoever owns the budget, the architecture, and the risk. Entroly can be evaluated with a local proxy or a standalone Rust binary; this page summarizes the spend, security posture, and deployment story.
Coding agents (Claude Code, Cursor, Codex, Copilot…) re-send large chunks of the repo on every turn. Token spend scales with usage × context size, and agentic usage is growing far faster than per-token prices are falling — so the total bill keeps climbing. Most of those tokens are duplicated boilerplate and low-signal context the model never needed.
Entroly sits between your agents and the LLM API and selects context under a token budget. Core indexing and selection run locally; committed benchmark artifacts show the measured accuracy-retention results.
| Outcome | What it means |
|---|---|
| Measurable input reduction | Entroly reports source and selected tokens under an explicit budget; translate that result using your provider pricing. |
| Measured accuracy retention | Compression is selection-based and benchmarked for accuracy retention, not just ratio — with committed result files and confidence intervals. |
| Local & private core | Indexing, selection, and deterministic verification paths run on-device — no code or context is sent anywhere for analysis. |
| Hallucination guard | WITNESS scores model output against supplied evidence without an extra provider call; local compute still applies. |
| Multiple integration paths | HTTP proxy, MCP server, Python SDK, or a standalone Rust binary with no Python runtime. Integration helpers cover 30+ wrap targets; compatibility depends on the installed tool and version. |
Savings are workload-dependent, so here’s the honest formula instead of a made-up figure:
monthly_savings ≈ monthly_input_token_spend × input_token_reduction
+ model_routing_savings (RAVS, optional)
+ provider prefix-cache discount captured (cache alignment)
pip install entroly && cd /your/repo && entroly verify-claims
This bounded install smoke test writes .entroly_verification.json with sampled token savings, indexing speed, and file coverage. Use a representative proxy pilot and the dashboard to size ROI for your actual workload.
Pricing for “$ saved” uses a local, output-aware, overridable price table — set your negotiated rates via
ENTROLY_PRICING_FILE. The dashboard shows cumulative $ saved and a per-lever Cost Intelligence breakdown.
| Mode | Use it when |
|---|---|
| HTTP proxy | Point a supported agent or provider base URL at localhost:9377. |
| MCP server | IDE/agent integration (Cursor, Claude Code, Windsurf, …). |
| Python SDK | from entroly import compress inside your own pipeline. |
Single Rust binary (entroly-rs) |
No Python runtime; frictionless / locked-down hosts. |
pip install entroly && cd /your/repo && entroly verify-claims — validate the local install and inspect the sampled smoke report.Full technical detail → README · Architecture. Apache-2.0.