The Problem
AI coding tools waste 60-90% of your context window on noise. Every file read sends the full content. Every git status sends raw output. Every API response dumps uncompressed JSON. You're paying for tokens that carry zero signal.
The Solution
sqz sits between your AI tool and the LLM, compressing everything before it reaches the model. No workflow changes. Install once, save on every API call.
Without sqz: With sqz:
LLM ──"read auth.ts"──▶ Editor ──▶ File LLM ──"read auth.ts"──▶ sqz ──▶ File
▲ │ ▲ │ │
│ ~2,000 tokens (full file) │ │ ~13 tokens │ cache │
└────────────────────────────────┘ └──── (compressed) ────┴───────┘
Token Savings (Real Measured Showcase)
Numbers below are from actual runs in this repository (not estimates).
Benchmark Suite Results
Command:
| Case | Before | After | Saved |
|---|---|---|---|
| repeated_logs | 148 | 62 | 58.1% |
| json_api | 64 | 59 | 7.8% |
| git_diff | 61 | 54 | 11.5% |
| large_json_array | 259 | 60 | 76.8% |
| stack_trace (safe mode) | 82 | 82 | 0.0% |
| prose_docs | 124 | 124 | 0.0% |
Workspace-Wide Compression
Measured by compressing 138 real text/code/config files in this repo with sqz compress.
| Metric | Value |
|---|---|
| Files scanned | 138 |
| Tokens before | 309,964 |
| Tokens after | 268,874 |
| Tokens saved | 41,090 |
| Net reduction | 13.26% |
| Total runtime | 1,997.75 ms |
| Avg time per file | 14.48 ms |
Real Command Output Samples
| Operation | Before | After | Saved |
|---|---|---|---|
ls -la |
515 | 438 | 15.0% |
git ls-files |
1,062 | 1,062 | 0.0% |
git log --oneline -n 50 |
285 | 285 | 0.0% |
cargo check -p sqz-engine |
93 | 93 | 0.0% |
cargo test --workspace |
10,750 | 10,750 | 0.0% |
Why some operations show 0%: sqz is intentionally conservative on outputs it classifies as high-risk or already compact, and preserves critical/error-heavy outputs via fallback semantics.
Why sqz may show lower savings than some tools
sqz is optimized for trust and correctness first, not maximum compression at any cost.
- Conservative guardrails: verifier + safe mode reduce over-compression risk.
- Faithfulness-first behavior: critical content (errors, stack traces, diffs, key JSON fields) is preserved by design.
- Real benchmarks over marketing benchmarks: numbers shown here are measured on real runs, not idealized samples.
- Content-dependent savings: repetitive logs and large arrays compress heavily; already compact code/test outputs often compress less.
- No cheap wins: sqz intentionally avoids aggressive deletions that can hurt model reliability.
Install
# Pick one:
|
All install channels point to github.com/ojuschugh1/sqz.
Then:
That's it. Shell hooks installed, default presets created, ready to go.
How It Works
sqz operates at four integration levels simultaneously:
1. Shell Hook (CLI Proxy)
Intercepts command output from 100+ CLI tools (git, cargo, npm, docker, kubectl, aws, etc.) and compresses it before the LLM sees it.
# Before: git log sends ~800 tokens of raw output
# After: sqz compresses to ~150 tokens, same information
2. MCP Server
A compiled Rust binary (not Node.js) that serves as an MCP server with intelligent tool selection, preset hot-reload, and an 8-stage compression pipeline.
3. Browser Extension
Chrome extension for ChatGPT, Claude.ai, Gemini, Grok, and Perplexity. Compresses pasted content client-side via WASM. Zero network requests.
4. IDE Extensions
Native VS Code and JetBrains extensions that intercept file reads at the editor level, with AST-aware compression for 18 languages and a status bar showing token budget.
Features
Compression Engine
- 8-stage pipeline — keep_fields, strip_fields, condense, strip_nulls, flatten, truncate_strings, collapse_arrays, custom_transforms
- TOON encoding — lossless JSON compression producing compact ASCII-safe output (reduction varies by structure, 4-30% typical)
- Tree-sitter AST — structural code extraction for 4 languages natively (Rust, Python, JavaScript, Bash) + 14 via regex fallback (TypeScript, Go, Java, C, C++, Ruby, JSON, HTML, CSS, C#, Kotlin, Swift, TOML, YAML)
- Image compression — screenshots → semantic DOM descriptions
- ANSI auto-strip — removes color codes before compression
Caching & Memory
- SHA-256 file cache — on a miss, content is compressed and stored; on a hit, the engine returns a compact inline reference (~13 tokens) instead of resending the full payload. LRU eviction, persisted across sessions. (Rust API:
CacheResult::DedupvsFresh.) - SQLite FTS5 session store — cross-session memory with full-text search (
Sessionin code;SessionStateis a compatibility alias) - Correction log — immutable append-only log that survives compaction
- CTX format — portable session graph across Claude, GPT, and Gemini
Intelligence
- Prompt cache awareness — preserves Anthropic 90% and OpenAI 50% cache boundaries
- Dynamic tool selection — exposes 3-5 relevant tools per task via semantic matching
- Model routing — routes simple tasks to cheaper local models
- Terse mode — system prompt injection for concise LLM responses (3 levels)
- Predictive budget warnings — alerts at 70% and 85% thresholds
Cost & Analytics
- Real-time USD tracking — per-tool breakdown with cache discount impact
- Multi-agent budgets — per-agent allocation with isolation and enforcement
- Session cost summaries — total tokens, USD, cache savings, compression savings
Extensibility
- TOML presets — hot-reload within 2 seconds, community-driven ecosystem
- Plugin API — Rust trait + WASM interface for custom compression strategies
- 150 CLI patterns — git, cargo, npm, docker, kubectl, aws, and more
Privacy
- Zero telemetry — no data transmitted, no crash reports, no analytics
- Fully offline — works in air-gapped environments after install
- Local only — all processing happens on your machine
Platforms
sqz integrates with AI coding tools across 3 levels:
Level 1 — MCP Config Only
Continue · Zed
Level 2 — Shell Hook + MCP
Claude Code · Cursor · Copilot · Windsurf · Gemini CLI · Codex · OpenCode · Goose · Aider · Amp
Level 3 — Native / Deep
VS Code · JetBrains · Chrome (ChatGPT, Claude.ai, Gemini, Grok, Perplexity)
See docs/integrations/ for platform-specific setup guides.
CLI Commands
Configuration
sqz uses TOML presets with hot-reload. The [preset] table maps to the Rust PresetHeader type (name, version, optional description).
[]
= "default"
= "1.0"
[]
= ["keep_fields", "strip_fields", "condense", "strip_nulls",
"flatten", "truncate_strings", "collapse_arrays", "custom_transforms"]
[]
= true
= 3
[]
= true
[]
= 0.70
= 0.85
= 200000
[]
= true
= "moderate"
[]
= "anthropic"
= "claude-sonnet-4-20250514"
= 0.4
Architecture
┌─────────────────────────────────────────────────────┐
│ Integration Surfaces │
│ CLI Binary │ MCP Server │ Browser │ IDE Ext │
└──────┬───────┴──────┬───────┴─────┬─────┴─────┬─────┘
│ │ │ │
└──────────────┴─────────────┴────────────┘
│
┌──────────────────┴──────────────────┐
│ sqz_engine (Rust core) │
│ │
│ Compression Pipeline (8 stages) │
│ TOON Encoder (lossless JSON) │
│ AST Parser (tree-sitter + regex, 18 langs) │
│ Cache manager (SHA-256 file cache) │
│ Session Store (SQLite FTS5) │
│ Budget Tracker (multi-agent) │
│ Cost Calculator (real-time USD) │
│ Tool Selector (semantic matching) │
│ Prompt Cache Detector │
│ Model Router (complexity routing) │
│ Correction Log (append-only) │
│ Plugin API (Rust + WASM) │
└─────────────────────────────────────┘
Distribution
| Channel | Command |
|---|---|
| Cargo | cargo install sqz-cli |
| Homebrew | brew install sqz |
| npm | npm install -g sqz / npx sqz |
| pip | pip install sqz |
| curl | curl -fsSL .../install.sh | sh |
| Docker | docker run sqz |
| GitHub Releases | Pre-built binaries for Linux, macOS, Windows |
Development
Rust API names (sqz_engine)
Prefer the primary type names below; the second name in each row is a type alias kept for compatibility.
| Primary | Alias |
|---|---|
Session |
SessionState |
Turn |
ConversationTurn |
PinnedSegment |
PinEntry |
KvFact |
Learning |
WindowUsage |
BudgetState |
ToolCall |
ToolUsageRecord |
EditRecord |
CorrectionEntry |
EditHistory |
CorrectionLog |
PresetHeader |
PresetMeta |
File cache: CacheManager returns CacheResult::Dedup (compact inline reference) or CacheResult::Fresh (newly compressed payload).
Sandbox: SandboxResult uses status_code, was_truncated, and was_indexed (stdout-only data enters the context window).
Project Structure
sqz_engine/ Core Rust library (all compression logic)
sqz/ CLI binary (shell hooks, commands)
sqz-mcp/ MCP server binary (stdio/SSE transport)
sqz-wasm/ WASM target for browser extension
extension/ Chrome extension (content scripts, popup)
vscode-extension/ VS Code extension (TypeScript)
jetbrains-plugin/ JetBrains plugin (Kotlin)
docs/ Integration guides and documentation
Testing
The test suite includes 549 tests with 57 property-based correctness properties validated via proptest:
- TOON round-trip fidelity
- Compression preserves semantically significant content
- ASCII-safe output across all inputs
- File cache — deduplication, hits, and invalidation
- Budget token count invariants
- Pin/unpin compaction round-trips
- CTX format round-trip serialization
- Plugin priority ordering
- Tool selection cardinality bounds
- Cross-tokenizer determinism
Contributing
We welcome contributions. By submitting a pull request, you agree to the Contributor License Agreement.
See CONTRIBUTING.md for the development workflow.
License
Licensed under Elastic License 2.0 (ELv2). You can use, fork, modify, and distribute sqz freely. Two restrictions: you cannot offer it as a competing hosted/managed service, and you cannot remove licensing notices.
We chose ELv2 over MIT because MIT permits repackaging the code as a competing closed-source SaaS — ELv2 prevents that while keeping the source available to everyone.