Meaning-First Compression
Retains critical information, intent, and structure—so your models stay effective.
For teams running chat, RAG, support, or coding agents. SuperCompress removes low-value context before inference—so your models do more with the tokens you already pay for.
1M free tokens/mo · then $0.30/1M · no credit card
Prompt compression · RAG context · chat memory · CPU-only policy
const result = await compress({
context: conversation,
query: "What failed in the last deploy?",
mode: "compiler"
})
// → kept answer-critical lines; cut waste
Drop as much as possible on held-out LongBench / OOD dumps — typically ~58–66% mean cut.
Always target >98% answer-critical retention. Pooled held-out gold containment: 99.4% (180/181).
Semantic keep/drop vs the current ask. No extra LLM summarizer call.
BUILT FOR DEVELOPERS
Retains critical information, intent, and structure—so your models stay effective.
Use our API or SDK in minutes. Works with OpenAI, Anthropic, Mistral, and more.
Your data stays yours. Local inference option and enterprise-ready deployments.
HOW IT WORKS
Context arrives oversized — history, docs, and traces piled into one prompt.
COMPILER MODE · SEMANTIC KEEP/DROP
No fixed keep ratio. Score context against the query, remove everything you can, and fail the run if critical retention drops below 98%.
Full methodology →SuperCompress numbers: held-out compiler suites (real / fresh4 / fresh5) — pooled gold answer containment 99.4% (180/181), mean cut typically ~58–66%, gates ≥98% answer keep and ≥55% cut. Not a fixed keep budget. Details on /benchmarks.
curl -X POST https://api.supercompress.dev/compress \
-H "Authorization: Bearer $SC_LIVE_..." \
-H "Content-Type: application/json" \
-d '{
"context": "$(cat conversation.txt)",
"query": "What failed in the last deploy?",
"mode": "compiler"
}'
// Response
{
"compressed": "...",
"original_tokens": 23014,
"compressed_tokens": 8055,
"tokens_saved_pct": 62,
"important_kept_pct": 99,
"policy_name": "SuperCompress"
}
SuperCompress
Codex
Gemini CLI
Windsurf
VS Code
OpenCodeEvery coding agent. One compression layer.
CODING AGENT PLUGIN · MCP-FIRST
Auto-detect Cursor, Claude Code, Codex, OpenCode, Windsurf, and more. The MCP plugin compresses huge dumps before they burn tokens — keep your normal login.
Or without a global install: npm install supercompress-proxy then npx supercompress setup.
npm install -g supercompress-proxynpx supercompress setupUSE CASES
From agentic coding to document-heavy work, meaning-first compression helps teams do more with less—without losing what matters.
Compress task history, repo context, tool traces, and diffs so agents reason farther inside the same context window—and spend less per turn.
Keep long chats useful and coherent. SuperCompress retains the decisions, constraints, and facts that drive better answers—not every filler turn.
Retrieved chunks often drown the query. Compress retrieved context so the model sees the evidence that matters for the current ask.
Ticket history, macros, and knowledge-base hits add up fast. Compress before generation to keep replies accurate without burning tokens.
Specs, tickets, research notes, and PRDs are dense. Compress for reviews and synthesis while retaining requirements and decisions.
Reduce token usage and latency in live apps while preserving output quality. Run locally on CPU or deploy beside your API gateway.
Live polling…
—
tokens processed
across SuperCompress · updates as people compress
1M free tokens/mo · then $0.30/1M · no credit card.