🇨🇳 中文 • 🇯🇵 日本語 • 🇰🇷 한국어 • 🇧🇷 Português • 🇪🇸 Español • 🇩🇪 Deutsch • 🇫🇷 Français • 🇷🇺 Русский • 🇮🇳 हिन्दी • 🇹🇷 Türkçe
🛡️ Local context selection plus proof-carrying output checks.
Entroly checks factual claims against supplied evidence, flags unsupported claims, and selects plus compresses large-repo context for AI coding tools so you can inspect what was sent and why.
💰 Lower input-token waste · 🎯 Evidence-backed answers · ⚡ 30-second install · 🔌 Works with Claude, Cursor, Codex, Aider
Don't trust the claims? Paste your own code into the live demo → watch entroly shrink large-repo context and show which files and snippets it selected. 60 seconds. No install.
Install · Cookbook · Benchmarks · 37 wrap targets
pip install entroly
Then cd /your/repo && entroly go — auto-opens the dashboard in your browser.
Or: brew tap juyterman1000/entroly && brew install entroly · npm i -g entroly
See the Cookbook for 10 concrete recipes,
or pick your stack from the 37 wrap targets.
PRISM weights can shift as local feedback accumulates. The dashboard shows the current ranking weights and confidence signals.
Run
entroly demoon your own repo. The dashboard shows estimated token reduction per request and cumulative value tracking.
Run
entroly benchmark --compare-baselineto see how context quality improves as PRISM learns which files matter for your workflow.
Measured (HaluEval-QA, standard protocol): WITNESS scores AUROC 0.80 / 84.9% accuracy catching unsupported answers — at $0 and ~2 ms/decision, no LLM call. On identical data it statistically ties
gpt-4o-minias a judge and beats the published GPT-3.5 judge (62.6%). Threshold-free number, reproducible, no cherry-picking → full results & reproduce command.
Use WITNESS when you want model answers checked against supplied evidence before you trust them:
entroly witness --context-file evidence.txt --output-file answer.txt --mode strict
Proxy mode attaches proof certificate headers to every non-streaming JSON response. The full certificate is available from the sidecar URL in X-Entroly-Witness-Id; use --witness-embed only if you want certificates embedded into the provider JSON body:
entroly proxy --witness audit # headers + sidecar certificate
entroly proxy --witness strict --witness-profile rag # suppress unsupported factual claims
entroly proxy --witness strict --witness-profile summary # warn on unknowns to reduce over-suppression
entroly proxy --witness audit --witness-nli # use OpenAI NLI when OPENAI_API_KEY is set
Profiles tune false-positive behavior by workload: rag, qa, benchmark_qa, and code fail closed in strict mode; summary, chat, and dialogue suppress contradictions but warn on unknown claims. JSON/structured outputs are audited with sidecar certificates and left byte-valid instead of being rewritten.
Certificate UX:
curl http://localhost:9377/witness/{id} # full proof path + evidence
curl http://localhost:9377/witness?limit=10 # recent certificates
curl -X POST http://localhost:9377/witness/{id}/feedback \
-H "Content-Type: application/json" \
-d '{"verdict":"false_positive"}'
The live dashboard also shows recent WITNESS certificates, flagged claims, proof/evidence snippets, suppression counts, and false-positive feedback totals when the proxy is running.
Current scope: non-streaming responses can be rewritten before return. In strict or annotate streaming mode, Entroly buffers the upstream stream, verifies it, then emits a verified SSE response; audit streaming mode remains pass-through and records certificates after completion. Optional NLI verification is batched with a latency budget and falls back to deterministic local PAV if the provider call fails.
Example trace from this repo’s local development vault:
[detect] gap observed → entity="auth", miss_count=3
[synthesize] StructuralSynthesizer ($0, deterministic, no LLM)
[benchmark] skill=ddb2e2969bb0 → fitness 1.0 (1 pass / 0 fail, 338 ms)
[promote] status: draft → promoted
[spend] $0.0000 — invariant C_spent ≤ τ·S(t) holds
Compression did not reduce measured accuracy in these release benchmarks. Results below were measured with gpt-4o-mini; intervals are Wilson 95% confidence intervals.
| Benchmark | n | Budget | Baseline (95% CI) | With Entroly (95% CI) | Retention | Token Savings |
|---|---|---|---|---|---|---|
| NeedleInAHaystack | 20 | 2K | 100% [83.9-100%] | 100% [83.9-100%] | 100.0% | 99.5% |
| LongBench (HotpotQA) | 50 | 2K | 64.0% [50.1-75.9%] | 68.0% [54.2-79.2%] | 106.2% | 85.3% |
| Berkeley Function Calling | 50 | 500 | 100% [92.9-100%] | 100% [92.9-100%] | 100.0% | 79.3% |
| SQuAD 2.0 | 50 | 100 | 78.0% [64.8-87.2%] | 76.0% [62.6-85.7%] | 97.4% | 39.3% |
| GSM8K | 100 | 50K | 85.0% [76.7-90.7%] | 86.0% [77.9-91.5%] | 101.2% | pass-through¹ |
| MMLU | 100 | 50K | 82.0% [73.3-88.3%] | 85.9% [77.8-91.4%] | 104.7% | pass-through¹ |
| TruthfulQA (MC1) | 100 | 50K | 72.0% [62.5-79.9%] | 73.7% [64.3-81.4%] | 102.4% | pass-through¹ |
¹ pass-through: Context already fits within budget, so Entroly leaves it unchanged. Results vary by model, dataset, prompt shape, and token budget.
How well does WITNESS catch unsupported answers? Measured under the standard HaluEval-QA protocol (Li et al., EMNLP 2023): the full qa set — 10,000 items, both the correct and the hallucinated answer scored = 20,000 balanced decisions. The operating threshold is selected on a disjoint calibration split (no test-set tuning). The threshold-free AUROC is the primary, unspoofable figure; accuracy is reported at the calibrated point. GPT judges see the same knowledge WITNESS sees (fair grounded comparison) on a shared 1,200-decision sample.
python benchmarks/halueval_qa_faithful.py
| System | Accuracy | AUROC | F1 | Cost / latency | Notes |
|---|---|---|---|---|---|
| WITNESS (full 20K, calibrated τ) | 84.9% ± 0.6% | 0.798 | 0.864 | $0, 2.4 ms/decision | deterministic, no LLM |
| WITNESS (same 1.2K sample) | 86.6% ± 1.9% | 0.813 | 0.878 | $0 | — |
| gpt-4o-mini (grounded judge, same sample) | 86.3% ± 2.0% | — | 0.853 | LLM call | statistical tie with WITNESS |
| gpt-3.5-turbo (HaluEval paper, published) | 62.6% | — | — | LLM call | no-knowledge reference |
Honest reading. On identical data WITNESS statistically ties a strong modern LLM judge (gpt-4o-mini: 86.6% vs 86.3%, CIs overlap) at zero marginal cost and ~2 ms, and clearly beats the canonical published GPT-3.5 number (62.6%). AUROC 0.80 is the figure we stand behind — accuracy depends on the operating point, and the calibrated point is deliberately high-recall (R 0.96 / P 0.79). This is not a global-SOTA claim: published methods that score higher on HaluEval-QA do so with privileged signals (token log-probs, a paired evaluator LLM, or supervised training on the benchmark); among zero-cost, black-box, text-only, untrained verifiers we found no verified method that beats it (literature reviewed through May 2026). Reproduce numbers and CIs with the command above; full report in benchmarks/results/halueval_qa_faithful_report.md.
The core install and selection claims are checked against this repository itself (394 files, 901K tokens, Python/Rust/JS). Reproduce the packaged smoke check on any repo:
pip install entroly && cd /path/to/your/project
entroly verify-claims
| Claim | README | Verified | Status |
|---|---|---|---|
| Indexing speed | local, no API call | 0.66s (394 files, release run) | ✅ Verified |
| Token savings (32K budget) | large-codebase selection should reduce context heavily | 96.7% on this repo | ✅ Verified for this workload |
| Token savings (8K budget) | tighter budgets should reduce more | 99.1% on this repo | ✅ Verified for this workload |
| Token savings (average) | workload-dependent | 87.0% on this repo | ✅ Verified for this workload |
| Optimization smoke latency | local execution, benchmark separately for strict timing | emitted by entroly verify-claims and stored in .entroly_verification.json |
✅ Verified |
| Multi-language coverage | 10+ project types | 9 file types (py/rs/js/md/yml/json/toml/sh) | ✅ Verified |
| Entropy scoring | Non-trivial | 0.07–0.90 range | ✅ Verified |
| Source-type prioritization | Code > config | Code 133 vs Config 12 | ✅ Verified |
| SimHash deduplication | No duplicates | 154/154 unique | ✅ Verified |
| Rust engine | Rust + WASM | entroly_core loaded | ✅ Verified |
| Local-only | No API keys | All ops offline | ✅ Verified |
| SDK | 2-line import | compress importable | ✅ Verified |
The packaged verifier generates a machine-readable
.entroly_verification.jsonreport. Results depend on repo size, language mix, and token budget; tiny repos and short-context workloads have less room to compress.
Five local checks that run in <2 seconds on a typical development machine, no API keys required:
python bench/trust_bench.py
| Test | What It Proves | Result |
|---|---|---|
| A. Compression | Real token reduction on source files | 50% savings ✅ |
| B. Classifier | RAVS archetype accuracy (40 labeled prompts) | 100% accuracy ✅ |
| C. Hook Coverage | Tool pattern coverage (50 commands) | 100% coverage ✅ |
| D. Router Logic | Bayesian gate correctness (5 cases) | 5/5 correct ✅ |
| E. Determinism | Same input → identical output (SHA-256) | Bit-identical ✅ |
“Given a docstring, find the correct function from 200 candidates.” Public dataset, reproducible, no API key.
python bench/repobench_retrieval.py --samples 50 --pool-size 200
| Method | R@1 | R@5 | MRR | Latency |
|---|---|---|---|---|
| Top-K (FIFO) | 0.000 | 0.000 | 0.017 | 0.0 ms |
| BM25 (standard baseline) | 1.000 | 1.000 | 1.000 | 43.2 ms |
| Entroly | 1.000 | 1.000 | 1.000 | 18.6 ms |
Entroly matched BM25 on this run at 2.3× lower latency (18.6ms vs 43.2ms). n=50 queries, pool=200, dataset=CodeSearchNet/python.
Apples-to-apples comparison at identical 1,500 token budget. Same LLM (gpt-4o-mini), same questions, same gold answers. n=30.
| Method | F1 Score | Compress Latency | API Calls | Illustrative cost / 1k queries |
|---|---|---|---|---|
| Baseline (Truncation) | 0.187 | 0 ms | 1 | $0.225 |
| Agentic Pruning baseline | 0.570 | 10,632 ms | 2 | $3.609 |
| Entroly | 0.223 | 107 ms | 1 | $0.225 |
The trade-off: Agentic pruning (using an LLM to filter context) scored higher in this run, but it added 10.6 seconds of latency and increased API costs by 1,500%.
Entroly’s local path: It improved F1 over baseline truncation by +19.2% in this run, executing locally in 107ms with no extra model call.
← One-click reproduction (Agentic Pruning vs Entroly, runs on H100 GPU)
Reproduce locally: python bench/looGLE_compare.py --samples 30 --budget 1500
Pure retrieval quality — no LLM calls, no API key, $0 cost. “Given a docstring, find the correct function from 500 candidates.”
| Method | R@1 | R@5 | MRR | Latency |
|---|---|---|---|---|
| Top-K (FIFO) | 0.000 | 0.015 | 0.013 | 0.0 ms |
| BM25 (standard baseline) | 0.980 | 0.995 | 0.987 | 56.7 ms |
| Entroly | 0.990 | 0.995 | 0.993 | 28.1 ms |
On this run, Entroly scored above BM25 on R@1 (+1.0%) and MRR (+0.6%), at roughly half the latency (28ms vs 57ms). n=200 queries, pool=500 distractors.
Reproduce: python bench/repobench_retrieval.py --samples 200 --pool-size 500
Representative long-context approaches and their trade-offs:
| Method | Retention | Token Reduction | Architecture / Trade-offs |
|---|---|---|---|
| Entroly | 100–106% on these runs | 85–99% on long-context runs | Fast local selection + compression. High-priority fragments are preserved verbatim; lower-priority files are compressed to signatures or references. Works with APIs that can receive the optimized prompt. |
| Agentic Context Pruning | ~100% | 70–90% | Extremely slow. Requires multiple LLM calls to filter context before the main query. High latency overhead. |
| KV Cache Compression | ~98–99% | N/A (Cost reduction) | Hardware bound. Reduces memory footprint, but requires running local models. Doesn’t work for OpenAI/Anthropic APIs. |
| Token-level neural pruning | ~98–99% | 80–95% | High overhead. Runs BERT-base for token classification. Token-level dropping degrades code syntax. |
| RAG-specific reranking | ~98% | 60–80% | RAG-specific pruner. Good retention but lower token reduction than Entroly. |
Note: SQuAD (~40% reduction, ~97% retention) is a short-context benchmark (150 token paragraphs). Entroly shows the largest reductions on large-context workloads.
Reproduce: python -m bench.accuracy --benchmark all --model gpt-4o-mini --samples 100
Custom OpenAI-compatible providers (Groq, Together, OpenRouter, Ollama, vLLM, …):
python -m bench.accuracy --benchmark gsm8k --model llama-3.1-70b-versatile \
--base-url https://api.groq.com/openai/v1 --api-key-env GROQ_API_KEY
For coding agents, the first question is retrieval: did the context engine select the files that need to be modified? This benchmark measures whether Entroly captures SWE-bench Lite gold files in its selected context.
Measured on the local retrieval harness:
| Metric | Result | Why It Matters |
|---|---|---|
| Hit Rate | 100.0% (50/50 tasks) | Each sampled task had at least one gold file captured. |
| Recall@5 | 42.0% | Fraction of gold files found in the top 5. |
| Recall@10 | 70.0% | Fraction of gold files found in the top 10. |
| Recall@20 | 90.0% | Fraction of gold files found in the top 20. |
| MRR | 0.420 | How early the first relevant file appears. |
| Latency | ~80ms / task | Local retrieval latency in the benchmark harness. |
In this sample, every task had a required file represented in the selected context. This is a retrieval signal, not a guarantee that any specific model will solve every task.
Reproduce the breakthrough:
python -m bench.swebench_retrieval --samples 50 --engine rust
Run token cost checks in every PR — catch regressions before they ship:
- uses: juyterman1000/entroly-cost-check-@v1
Local fallback:
- name: Check Entroly token budget
run: pip install entroly && entroly batch --budget 8000 --fail-over-budget
Two things often go wrong with AI coding workflows:
1. Unsupported claims look plausible. Models can mention functions, APIs, files, or dependencies that are not present in the evidence they were given.
2. Large repos waste context budget. Raw dumps include duplicated boilerplate, generated files, and low-signal text that crowd out the files the model actually needs.
Entroly addresses both locally: it selects compact, explainable repo context under a token budget, and WITNESS can audit model outputs against supplied evidence.
| Metric | Before Entroly | After Entroly |
|---|---|---|
| Files visible to AI | 5–10 | Supported files selected at variable resolution |
| Tokens per request | ~186,000 raw example | 9,300 – 55,000 in listed release examples |
| Monthly AI spend (at 1K req/day) | depends on provider/model | lower when input tokens drop |
| AI answer grounding | depends on supplied context | auditable against selected evidence |
| Review burden | manual inspection | certificate/evidence snippets available |
| Setup | Days of prompt engineering | 30 seconds |
Savings depend on repo size, query breadth, model pricing, and budget. Run
entroly demoorentroly verify-claimson your own repository for local measurements.
pip install entroly && entroly go
Or wrap your coding agent — one command:
entroly wrap claude # Claude Code
entroly wrap cursor # Cursor
entroly wrap codex # Codex CLI
entroly wrap aider # Aider
Or use the proxy — zero code changes, any language:
entroly proxy --port 9377
ANTHROPIC_BASE_URL=http://localhost:9377 your-app
OPENAI_BASE_URL=http://localhost:9377/v1 your-app
GOOGLE_GEMINI_BASE_URL=http://localhost:9377/v1beta your-app
Why the different path suffixes? They are not arbitrary tags. Each SDK appends its provider’s real API path to its base URL, and the proxy routes by that path to the matching upstream: the Anthropic SDK calls
/v1/messages(so the base URL has no suffix), the OpenAI SDK calls/v1/chat/completionsor/v1/responses(base URL ends in/v1), and the Gemini SDK calls/v1beta/models/...(base URL ends in/v1beta). Use the suffix that matches the SDK you’re pointing at the proxy; one proxy handles all three concurrently. Environment variable names are client-specific; use the base-url setting your SDK or CLI actually documents.
Drop it into your own code — two lines:
from entroly import compress, compress_messages
# Compress any content (code, JSON, logs, prose)
compressed = compress(api_response, budget=2000)
# Or compress a full LLM conversation
messages = compress_messages(messages, budget=30000)
Here’s what entroly actually does, in plain English:
The result for you: Your AI can draw from a broader project map instead of a few open files, with a smaller selected context. Release checks measured 70-95% fewer input tokens on large-repo workloads; on small repos or short prompts, savings are naturally lower.
Want the math? Skip to the technical details or read docs/DETAILS.md for the full algorithmic spec (BIPT, NKBE, Causal Context Graph, Resonance Matrix, and more).
The interactive commands entroly go, entroly proxy, entroly daemon, and entroly dashboard open or serve a browser dashboard at http://localhost:9378 — no extra install, no React build, nothing to configure.
Dashboard — real-time metrics (token savings, PRISM weights, health grade, cost savings, pipeline latency):
http://localhost:9378 ← auto-opens on entroly go / proxy / daemon
Control Panel — full control surface for the daemon:
http://localhost:9378/controls
| Control | What it does |
|---|---|
| Optimization toggle | Enable/pause context optimization |
| Bypass mode | Forward requests raw for A/B testing |
| Quality selector | Switch between Fast / Balanced / Max |
| Repo manager | See indexed repos, trigger re-index |
| PRISM weights | View learned weights, reset, run autotune |
| Federation | Opt-in/out of anonymous global learning |
| Log viewer | Real-time daemon logs in-browser |
Everything is served inline from the Python package —
pip install entrolyincludes the full UI. Zero npm, zero build step.
entroly daemon)One process that manages everything — proxy, dashboard, MCP server, file watcher, learning loop:
entroly daemon # start everything, opens browser
entroly daemon --no-proxy # dashboard + MCP only
entroly daemon --quality max # max quality mode
The daemon exposes a Control API at http://localhost:9378/api/control/*:
# Check daemon status
curl http://localhost:9378/api/control/status
# Toggle optimization
curl -X POST http://localhost:9378/api/control/optimization/pause
curl -X POST http://localhost:9378/api/control/optimization/enable
# Switch quality mode
curl -X POST http://localhost:9378/api/control/quality -d '{"mode":"max"}'
# Re-index a repo
curl -X POST http://localhost:9378/api/control/repos/reindex
# View learning weights
curl http://localhost:9378/api/control/learning
# Stop the daemon
curl -X POST http://localhost:9378/api/control/stop
Backward compatible: Existing
entroly proxy,entroly serve,entroly dashboardcommands work exactly as before. The daemon is additive.
If you run Entroly from a non-project directory (like your Desktop), it warns you:
No codebase detected in: /Users/you/Desktop
Navigate to your codebase first:
cd /path/to/your/project
entroly go
Entroly auto-detects Python, JS/TS, Rust, Go, Java, Ruby, C/C++, and 10+ other project types.
Small, fast models can struggle on large codebases because they may miss cross-file relationships in raw code chunks.
Entroly’s Context Scaffolding Engine (CSE) addresses this by extracting dependency-graph cues across supported languages. It then injects a compact structural preamble before the code context, mapping imports, definitions, test coverage, and entry points when available.
The result is not magic model equivalence; it is cheaper structure. CSE gives smaller models explicit dependency cues that are easy to miss in raw snippets. On scaffold-friendly code tasks, that can reduce the amount of “just in case” context while improving grounding. On judgment-heavy tasks, use a stronger model.
Entroly compresses your context. RAVS can also evaluate whether repeated low-risk task classes are safe candidates for cheaper models.
Many turns are simple: reading a file, checking a log, running tests, formatting code. Using a flagship model for these can be unnecessary spend.
RAVS watches honest outcomes and can be enabled as a guarded proxy router. Once local evidence passes the configured gate for a low-risk task class, it can route that task class down:
You type: "run the tests"
↓
Entroly intercepts the request
↓
RAVS checks confidence for this task type:
→ repeated low-risk task class
→ enough local outcomes to pass the configured gate
→ lower confidence bound > threshold
↓
Eligible proxy request: stronger model → cheaper configured model
↓
Same task class, cheaper model, original-model fallback if confidence drops.
Inspect your own local evidence with
entroly ravs report. Routing should stay disabled when sample sizes are small, task risk is high, or the confidence gate does not pass.
How it works:
.claude/settings.json — RAVS starts watching silentlyThe numbers:
| Opus | Haiku (RAVS-routed) | Savings | |
|---|---|---|---|
| Output cost / M tokens | higher | lower | provider-dependent |
| Typical repeated simple task | flagship model | cheaper configured model | measured locally |
| Monthly usage | varies | varies | inspect entroly ravs report |
Fail-closed by design: if data is sparse, the task is high-risk (security, auth), confidence is low, or the proxy cannot safely rewrite the provider request, the original model handles it.
# See what RAVS has learned about your workflow
entroly ravs report
# Filter to the last 7 days
entroly ravs report --since 7d
Most of Entroly’s ranking and feedback loops run locally. They do not require an embeddings API, fine-tuning job, or model call.
When optional synthesis or networked learning is enabled, it is intended to be budget-gated:
Learning budget target ≤ 5% × lifetime savings
By default, local context selection and dashboard metrics are enough to measure whether Entroly is helping on your workload.
Federation is optional. It is designed to share anonymous optimization weights, not code.
export ENTROLY_FEDERATION=1
LLM responses often include greetings, hedging, and meta-commentary. Entroly can strip common filler from prose while leaving code blocks untouched.
Before: "Sure! I'd be happy to help. Let me take a look at your code.
The issue is in the auth module. Hope this helps!"
After: "The issue is in the auth module."
→ fewer output tokens
Three intensity levels: lite → full → ultra. Enable with one env var.
Local indexing, selection, deterministic verification, and dashboards do not require a cloud service. If you proxy a cloud AI provider, that provider still receives the selected prompt content you send through Entroly. Core scoring paths are local and fast; full end-to-end optimization commonly runs in tens of milliseconds depending on repo size and engine mode. Air-gapped use is possible when you use only local/offline commands and local model endpoints.
entroly wrap <agent> uses the best available integration path for each supported tool. Use wrappers only with tools and accounts whose terms permit local MCP servers, custom endpoints, or compatible proxy configuration.
Third-party product names are used only to describe compatibility. Entroly is not affiliated with, sponsored by, or endorsed by those providers unless explicitly stated.
mcp.json (with a .entroly-backup of any prior config). Restart the IDE.These wrappers are compatibility helpers, not endorsements by the tool vendors. If a vendor CLI does not honor custom endpoint environment variables in your installed version, configure Entroly through that tool’s documented provider settings or use MCP instead.
| Agent | Command |
|---|---|
| Claude Code | entroly wrap claude |
| OpenAI Codex CLI | entroly wrap codex |
| Aider | entroly wrap aider |
| Gemini CLI | entroly wrap gemini |
| Qwen Code | entroly wrap qwen |
| OpenCode | entroly wrap opencode |
| Charm CRUSH | entroly wrap crush |
| Hermes | entroly wrap hermes |
| Pi Coding Agent | entroly wrap pi |
| Ollama | entroly wrap ollama |
mcp.json)| IDE | Command | Config file written |
|---|---|---|
| Cursor | entroly wrap cursor |
.cursor/mcp.json |
| Windsurf | entroly wrap windsurf |
.windsurf/mcp.json |
| VS Code MCP clients | entroly wrap vscode |
.vscode/mcp.json |
| Claude Desktop | entroly wrap claude-desktop |
OS-specific Claude config dir |
| Claude Code (MCP mode) | entroly wrap claude-code |
Claude Code MCP config |
| Zed | entroly wrap zed |
~/.config/zed/settings.json |
entroly wrap <agent> prints the exact file path and field name. Paste once, restart, done.
| Agent | Slug |
|---|---|
| Cline (VS Code) | cline |
| Roo Code (VS Code) | roo |
| Continue | continue |
| Sourcegraph Cody | cody |
| Sourcegraph Amp | amp |
| Kiro | kiro |
| Qoder | qoder |
| Trae | trae |
| Antigravity | antigravity |
| Amazon Q Developer | amazonq |
| Verdent | verdent |
| JetBrains AI Assistant | jetbrains |
| Helix | helix |
| Tabby | tabby |
| Twinny | twinny |
| Sublime Text | sublime |
| Emacs (gptel / aider.el) | emacs |
| Neovim (avante / codecompanion) | neovim |
| Fitten Code | fittencode |
| Tabnine Enterprise | tabnine |
| Supermaven | supermaven |
Entroly’s proxy (localhost:9377) works with tools that let you override their API endpoint. If your agent supports OPENAI_BASE_URL, ANTHROPIC_BASE_URL, GOOGLE_GEMINI_BASE_URL, or similar documented settings, point it at the proxy and test the workflow with your provider/model.
Cloud-hosted agents (Devin, Jules, Replit Agent, etc.) run in the vendor’s cloud, not on your machine. Check your provider’s documentation to see if they support custom base URLs before attempting to proxy through entroly. Always review the provider’s Terms of Service.
| Use case | One-liner |
|---|---|
| LLM APIs with compatible base-URL configuration | entroly proxy → HTTP proxy on localhost:9377 |
| LangChain / LlamaIndex / your code | from entroly import compress, compress_messages |
| Nous Hermes (Local/ChatML) | from entroly.integrations.hermes import safe_compress_hermes |
| CI / token-budget gate | entroly batch --budget 8000 --fail-over-budget |
Also: OpenAI-compatible APIs, Anthropic-compatible clients, OpenRouter, Ollama, vLLM, and other providers/tools that allow compatible endpoint configuration.
Don’t see your tool?
entroly wrap(no agent) prints the full grouped list, and the Cookbook has copy-paste recipes for the most common workflows.
Entroly selects and compresses context. The difference is ordering: it ranks the repo first, then compresses lower-priority material to signatures or references instead of blindly compressing/truncating whatever was provided.
| Entroly | Compression tools | Top-K / RAG | Raw truncation | |
|---|---|---|---|---|
| Approach | Information-theoretic selection + compression | Text compression | Embedding retrieval | Cut-off |
| Token savings | Tested 70-95% on large-repo release checks; workload-dependent | 50–70% | 30–50% | 0% |
| Quality loss | No measured loss in listed release checks | 2–5% | Variable | High |
| Multi-resolution | Full / Skeleton / Reference | One-size | One-size | One-size |
| Learns over time | Yes (PRISM RL) | No | No | No |
| Latency | Local; commonly tens of ms end-to-end | 50–200ms | 100–500ms | 0ms |
| Reversible | Yes — full content always retrievable | Varies | Yes | No |
| Runs locally | Yes | Varies | Varies | Yes |
Why selection + compression matters: Compressing a bad selection is still a bad selection. Entroly ranks files first, then compresses or preserves them at a resolution appropriate to the budget. The AI receives structural context, not just fewer tokens.
Three chat integrations ship in the box. They can report selected gap detections, skill synthesis events, and dream-cycle changes in real time:
export ENTROLY_TG_TOKEN=... # Telegram (2-way: /status /skills /gaps /dream)
export ENTROLY_DISCORD_WEBHOOK=... # Discord
export ENTROLY_SLACK_WEBHOOK=... # Slack
Skills Entroly creates aren’t locked in. Export to the open agentskills.io v0.1 spec:
node node_modules/entroly-wasm/js/agentskills_export.js ./dist/agentskills
python -m entroly.integrations.agentskills ./dist/agentskills
Structurally synthesized exports carry origin.token_cost: 0.0, so zero-token provenance travels with those skills.
Python is the reference CLI/runtime. The Node.js WASM package exposes the Rust engine and a matching surface for core workflows; check command help for feature-specific availability:
| Capability | Python | Node.js (WASM) |
|---|---|---|
| Context compression | ✅ | ✅ |
| Self-evolution | ✅ | ✅ |
| Dreaming loop | ✅ | ✅ |
| Federation | ✅ | ✅ |
| Response distillation | ✅ | ✅ |
| Chat gateways | ✅ | ✅ |
| agentskills.io export | ✅ | ✅ |
Architecture, Rust modules, 3-resolution compression, provenance model, RAG comparison, CLI reference, Python SDK, LangChain integration → docs/DETAILS.md
Measure and reduce wasted context tokens with local, evidence-aware tooling.
npm install -g entroly && entroly | pip install entroly && entroly go
Discussions • Issues • Apache-2.0 License