@hybridlabor-api/heimdall-token-saver
v2.6.3
Published
Ultra-fast context compression engine for CLI tool outputs in AI agent workflows.
Readme

Heimdall Token Saver
Save more tokens & get over 60% more coding power out of your AI subscription (Claude Code, Codex, Antigravity).
⚡ WHY HEIMDALL // Cut your AI coding costs by 60-99% on CLI output
AI coding subscriptions (Claude Code, OpenAI Codex / ChatGPT, Google Antigravity) are constrained by context window sizes and strict hourly usage limits. Every time your AI agent executes a terminal command — git diff, pytest, npm install, docker, terraform plan, or kubectl — over 90% of the raw output is pure noise (download spinners, passing tests, progress bars, and lockfile text).
The Problem With Raw Terminal Output
When an AI agent reads raw CLI logs:
- You waste your subscription quotas: Your 5-hour rate limits expire up to 5x faster because the model reads thousands of lines of useless progress bars.
- Context window pollution: The LLM's working memory gets cluttered with non-actionable boilerplate, causing the agent to forget earlier instructions and hallucinate fixes.
- Higher API costs: If you pay per 1M tokens, every
pytestornpm installrun burns money on passing tests and download indicators.
The Heimdall Solution
Heimdall Token Saver acts as an intelligent, zero-latency local context firewall between your CLI tools and your AI agent:
- 🛡 100% Signal, 0% Noise: Strips out progress bars, passing test logs, and spinners while guaranteeing zero information loss. Every stack trace, error message, failing assertion, and diff survives intact.
- 🚀 Maximized Subscription Value: Gives you over 60% higher effective context capacity, letting you run complex multi-file refactors without hitting hourly limit caps.
- ⚡ Faster Agent Responses: Less text for LLMs to read means faster response times and razor-sharp debugging focus.
Before & After Savings
| Command / MCP Tool | Raw Output | Compressed Output | Token Savings |
|-------------------|-----------|-------------------|---------------|
| git diff (large refactor) | 2,270 tokens | 909 tokens | 60% |
| pytest (500 tests, 2 failures) | 6,744 tokens | 308 tokens | 95% |
| npm install (220 packages) | 3,844 tokens | 4 tokens | 99% |
| bdb_td_nodes (TouchDesigner dump) | 12,400 tokens | 620 tokens | 95% |
| bdb_unreal_actor (Unreal Engine PCG) | 8,900 tokens | 445 tokens | 95% |
| bdb_after_effects (AE keyframes) | 6,500 tokens | 455 tokens | 93% |
| bdb_davinci_timeline (Resolve dump) | 9,100 tokens | 728 tokens | 92% |
| memb_search_memory (memB vector search) | 5,400 tokens | 324 tokens | 94% |
🔮 With Heimdall BDB MCP Processors: You cut token consumption by 90-95% per MCP tool call, allowing your agent to run 10x longer without hitting context limits.
Run
heimdall benchmark <command>to measure real-time savings on your own workloads.
🛠️ HOW IT WORKS
Heimdall Token Saver sits transparently between your terminal commands and AI coding assistants (Claude Code, OpenAI Codex, Antigravity CLI).
Visual Pipeline Flow
┌────────────────────────────────────────────────────────┐
│ Raw CLI Tool Execution Output │
│ (git diff, pytest, npm install, docker, terraform) │
└───────────────────────────┬────────────────────────────┘
│
▼
┌────────────────────────────────────────────────────────┐
│ HEIMDALL TOKEN SAVER ENGINE │
│ 36 Specialized Local Processors (Zero Latency) │
└───────────────────────────┬────────────────────────────┘
│
┌────────────────┴────────────────┐
│ │
▼ ▼
┌─────────────────┐ ┌──────────────────┐
│ PRESERVED (100%)│ │ DISCARDED (0%) │
│ • Error Traces │ │ • Progress Bars │
│ • Failing Tests│ │ • Passing Tests │
│ • File Diffs │ │ • Download Logs │
│ • Warnings │ │ • Boilerplate │
└────────┬────────┘ └──────────────────┘
│
▼
┌────────────────────────────────────────────────────────┐
│ Clean, Compressed Context Output │
└───────────────────────────┬────────────────────────────┘
│
▼
┌────────────────────────────────────────────────────────┐
│ AI Coding Assistants & Subscriptions │
│ (Claude Code • OpenAI Codex • Antigravity CLI) │
└────────────────────────────────────────────────────────┘
│
▼
🎯 RESULT: 60-99% Token Reduction & Extended Hourly Quotas!Architecture & Engine Mechanics
CLI command --> Specialized processor --> Compressed output
|
36 processors
(git, test, cargo, go, build,
lint, package_list, python_install,
maven_gradle, bun, network, docker,
kubectl, terraform, pulumi, cdktf,
nix, mise, env, search, system_info,
gh, db_query, cloud_cli, ansible,
helm, syslog, ssh, jq_yq, just, act,
structured_log, file_listing,
file_content, generic)The engine (CompressionEngine) maintains a priority-ordered chain of processors.
The first processor that can handle the command (can_handle()) produces the
compressed output. GenericProcessor serves as a fallback and always matches last.
When a specialized processor doesn't achieve the minimum compression ratio (10%), the engine tries the generic processor as a fallback before returning uncompressed output.
After the specialized processor runs, a lightweight cleanup pass (clean())
strips residual ANSI codes and collapses consecutive blank lines.
Platform Integration
The two platforms use different mechanisms:
Claude Code (PreToolUse hook):
1. Claude wants to run `git status`
2. PreToolUse hook intercepts the command
3. Rewrites to: python3 wrap.py 'git status'
4. wrap.py executes the original command
5. Compresses the output
6. Claude receives the compressed versionClaude Code's PreToolUse hook cannot modify output after execution. The only way to reduce tokens is to rewrite the command to go through a wrapper that executes, compresses, and returns the result.
Antigravity CLI (AfterTool hook):
1. Antigravity executes the command
2. AfterTool hook receives the raw output
3. Compresses the output
4. Replaces it via {"decision": "deny", "reason": "<compressed output>"}Antigravity CLI allows direct output replacement through the deny/reason mechanism.
Precision Guarantees
Compression is aggressive on noise, conservative on signal:
- Short outputs (< 200 characters) are never modified
- Compression is only applied if the gain exceeds 10%
- All errors, stack traces, and actionable information are fully preserved
- Source code files (
cat *.py,cat *.ts, ...) pass through unchanged — the model needs exact content - Secrets in
.envfiles are automatically redacted before reaching the model - Only "noise" is removed: progress bars, passing tests, installation logs, ANSI codes, platform lines
- 853 tests including 49 precision-specific tests that verify every critical piece of data survives compression
Installation
Prerequisites
- Python 3.10+
- Claude Code and/or Antigravity CLI
Method 1: Claude Code Plugin (recommended)
From the self-hosted marketplace:
/plugin marketplace add hybridlabor-api/heimdall-token-saver
/plugin install token-saverOr test directly from a local clone:
git clone https://github.com/hybridlabor-api/heimdall-token-saver.git
claude --plugin-dir ./token-saverMethod 2: Manual installation
git clone https://github.com/hybridlabor-api/heimdall-token-saver.git
cd token-saver
python3 install.py --target claude # Claude Code only
python3 install.py --target antigravity # Antigravity CLI only
python3 install.py --target both # Both platformsThe manual installer registers token-saver as a native Claude Code plugin
(equivalent to /plugin install). It appears in /plugin list and hooks,
skills, and commands are managed natively by Claude Code.
The repo/zip can be deleted after installation. Heimdall Token Saver copies everything
it needs to ~/.token-saver/ and the platform plugin directories.
Development Mode
python3 install.py --target claude --link # Symlinks instead of copiesChanges in the source directory are immediately applied. Do not delete the repo in this mode.
Uninstall
python3 install.py --uninstall # Remove from all platforms
python3 install.py --uninstall --keep-data # Keep stats DBUpdating
Plugin install: Claude Code handles updates automatically when you refresh the marketplace.
Manual install: Run heimdall update from anywhere, or:
cd token-saver && git pull && python3 install.py --target claudeGitHub releases: Both methods check for new releases via the GitHub API. The heimdall update CLI command and the SessionStart hook notification work regardless of install method.
Upgrading from v1.x to v2.0
If you previously installed token-saver v1.x:
cd token-saver
git pull
python3 install.py --target claudeThe installer automatically:
- Removes legacy hooks from
~/.claude/settings.json(no longer needed) - Removes the old
~/.claude/plugins/token-saver/directory - Installs to the plugin cache as a native Claude Code plugin
- Registers in
enabledPluginsandinstalled_plugins.json
You can also run heimdall update from anywhere to auto-upgrade.
Avoid dual installation
Do NOT install token-saver via BOTH /plugin install AND python3 install.py
simultaneously — this could register the plugin twice. Use one method or the other.
To switch from manual to marketplace:
python3 install.py --uninstall --target claude
/plugin marketplace add hybridlabor-api/heimdall-token-saver
/plugin install token-saverWhat the Installer Does
- Copies (or symlinks) files to:
- Core:
~/.token-saver/(CLI, updater, shared source) - Claude Code:
~/.claude/plugins/cache/token-saver-marketplace/token-saver/ - Antigravity CLI:
~/.gemini/antigravity-cli/plugins/token-saver/
- Core:
- Registers as a native Claude Code plugin in
installed_plugins.jsonandenabledPlugins - Installs
token-saverCLI to~/.local/bin/ - Stamps the current version into plugin manifests
- Cleans up any legacy
token-savingor v1.x installation
CLI
After installation, the token-saver command is available:
heimdall version # Print current version
heimdall stats # Show savings statistics
heimdall stats --json # JSON output for scripting
heimdall update # Check for and apply updates
heimdall benchmark 'git diff' # Measure compression on a command
heimdall benchmark 'pytest' --format json # JSON output
heimdall benchmark 'git log' --dry-run # Show processor without executingIf ~/.local/bin is not in your PATH, the installer prints instructions.
Processors
🔌 Specialized BDB MCP Processors (70–95% Token Savings)
Heimdall includes 6 dedicated, zero-latency processors specifically tailored for BDB creative technology and memory MCP servers:
- BdbTouchdesignerProcessor (
bdb_td_*,mcp_td_*,touchdesigner_*,tdmcp_*): Compresses node graph dumps, cooking logs, and DAT scripts. Preserves cook errors, failing scripts, and parameter overrides while stripping unchanged defaults and ticker frames. - BdbUnrealProcessor (
bdb_unreal_*,mcp_unreal_*,unreal_*): Compresses Unreal Engine 5 log dumps, PCG graph outputs, and actor transforms. PreservesLogUnrealEngineerrors, PCG warnings, and Blueprint failures while filtering asset registry spam. - BdbAfterEffectsProcessor (
bdb_after_effects_*,ae-mcp_*,mcp_aftereffects_*): Compresses ExtendScript errors and layer state arrays. Preserves line numbers, layer indexes, and keyframe deltas while filtering frame-by-frame progress updates. - BdbDavinciProcessor (
bdb_davinci_*,resolve_mcp_*,davinci_*): Compresses timeline cut dumps and render job states. Preserves offline media paths, render failures, and cut markers while removing empty metadata keys. - BdbCreativeSuiteProcessor (
bdb_resolume_*,bdb_rhino_*,adobe_uxp_*,vectorworks_*): Compresses Resolume clip states, Rhino 3D geometry errors, Photoshop layers, and Vectorworks CAD queries while stripping zeroed matrix transforms and OpenAPI schemas. - BdbMembProcessor (
memb_mcp_*,memb-skill_*,memb_*): Compresses memB vector memory responses. Preserves high-relevance memory text, categories, and memory IDs while stripping 30MB ONNX float embedding arrays ([0.123, -0.456, ...]).
Each processor handles a family of commands. The first one that matches
(can_handle()) processes the output. Detailed documentation for each
processor is in docs/processors/.
| # | Processor | Priority | Commands | Docs | |---|---|---|---|---| | 1 | Package List | 15 | pip list/freeze, npm ls, conda list, gem list, brew list | package_list.md | | 2 | just | 18 | just --list, just --summary (recipe listing compaction) | — | | 3 | act | 19 | act (run GitHub Actions locally via nektos/act) | — | | 4 | Git | 20 | status, diff, log, show, push/pull/fetch, branch, stash, reflog, blame, cherry-pick, rebase, merge | git.md | | 5 | Test | 21 | pytest, jest, vitest, mocha, cargo test, go test, rspec, phpunit, bun test, npm/yarn/pnpm test, dotnet test, swift test, mix test | test_output.md | | 6 | Cargo | 22 | cargo build, check, doc, update, bench | cargo.md | | 7 | Go | 23 | go build, vet, mod, generate, install | go.md | | 8 | Python Install | 24 | pip install, poetry install/update/add, uv pip install, uv sync | python_install.md | | 9 | Build | 25 | npm/yarn/pnpm build/install, cargo build, make, cmake, tsc, webpack, vite, next build, turbo, nx, bazel, sbt, mix compile, docker build | build_output.md | | 10 | Cargo Clippy | 26 | cargo clippy (multi-line block grouping with span/help preservation) | cargo_clippy.md | | 11 | Lint | 27 | eslint, ruff, flake8, pylint, clippy, mypy, prettier, biome, shellcheck, hadolint, rubocop, golangci-lint | lint_output.md | | 12 | Maven/Gradle | 28 | mvn, ./mvnw, gradle, ./gradlew (download stripping, task noise removal) | maven_gradle.md | | 13 | Bun | 29 | bun install, add, remove, update | — | | 14 | Network | 30 | curl, wget, http/https (httpie) | network.md | | 15 | Docker | 31 | ps, images, logs, pull/push, inspect, stats, compose up/down/build/ps/logs | docker.md | | 16 | Kubernetes | 32 | kubectl/oc get, describe, logs, top, apply, delete, create | kubectl.md | | 17 | Terraform | 33 | terraform/tofu plan, apply, destroy, init, output, state list/show | terraform.md | | 18 | Environment | 34 | env, printenv (with secret redaction) | env.md | | 19 | Search | 35 | grep -r, rg, ag, fd, fdfind | search.md | | 20 | System Info | 36 | du, wc, df | system_info.md | | 21 | GitHub CLI | 37 | gh pr/issue/run list/view/diff/checks/status | gh.md | | 22 | Database Query | 38 | psql, mysql, sqlite3, pgcli, mycli, litecli | db_query.md | | 23 | Cloud CLI | 39 | aws, gcloud, az (JSON/table/text output compression) | cloud_cli.md | | 24 | Ansible | 40 | ansible-playbook, ansible (ok/skipped counting, error preservation) | ansible.md | | 25 | Helm | 41 | helm install/upgrade/list/template/status/history | helm.md | | 26 | Syslog | 42 | journalctl, dmesg (head/tail with error extraction) | syslog.md | | 27 | SSH/SCP | 43 | non-interactive ssh, scp (remote command output compression) | ssh.md | | 28 | JQ/YQ | 44 | jq, yq (large JSON/YAML output compaction) | jq_yq.md | | 29 | Structured Log | 45 | stern, kubetail (JSON Lines grouping by level) | structured_log.md | | 30 | Pulumi | 46 | pulumi up, preview, destroy, refresh | — | | 31 | CDKTF | 47 | cdktf deploy, diff, destroy, synth | — | | 32 | Nix | 48 | nix build/develop/eval/run, nix-build, nix-shell | — | | 33 | mise | 49 | mise install, use, upgrade (runtime version manager) | — | | 34 | File Listing | 50 | ls, find, tree, exa, eza, rsync | file_listing.md | | 35 | File Content | 51 | cat, head, tail, bat, less, more (content-aware: code, config, log, CSV) | file_content.md | | 36 | Generic | 999 | Any command (fallback: ANSI strip, dedup, truncation) | generic.md |
Configuration
Thresholds are configurable via JSON file or environment variables.
Configuration File
~/.token-saver/config.json:
{
"enabled": true,
"min_input_length": 200,
"min_compression_ratio": 0.10,
"max_diff_hunk_lines": 150,
"max_log_entries": 20,
"max_file_lines": 300,
"generic_truncate_threshold": 500,
"debug": false
}Environment Variables
Every key can be overridden with the TOKEN_SAVER_ prefix:
export TOKEN_SAVER_MAX_LOG_ENTRIES=50
export TOKEN_SAVER_DEBUG=true
# Disable compression entirely (bypass mode)
export TOKEN_SAVER_ENABLED=falsePer-Project Configuration
Drop a .token-saver.json in your repository root to override global settings:
{
"max_diff_hunk_lines": 300,
"generic_truncate_threshold": 1000,
"max_log_entries": 50
}Project settings are merged with global settings. Heimdall Token Saver walks up parent directories (like .gitignore resolution) to find the nearest .token-saver.json. Useful for monorepos or projects with atypical output patterns (large Terraform plans, verbose test suites, etc.).
Complete Parameter List
| Parameter | Default | Description |
|---|---|---|
| enabled | true | Master switch -- set to false to bypass all compression |
| min_input_length | 200 | Minimum threshold (characters) to attempt compression |
| min_compression_ratio | 0.10 | Minimum gain (10%) to apply compression |
| wrap_timeout | 300 | Wrapper timeout in seconds |
| max_diff_hunk_lines | 150 | Max lines per hunk in git diff |
| max_diff_context_lines | 3 | Context lines kept before/after each change in diffs |
| max_log_entries | 20 | Max entries in git log/reflog |
| max_file_lines | 300 | Threshold before file content compression kicks in |
| file_keep_head | 150 | Lines kept from the start of file (fallback strategy) |
| file_keep_tail | 50 | Lines kept from the end of file (fallback strategy) |
| file_code_head_lines | 20 | Import/header lines to preserve in code files |
| file_code_body_lines | 3 | Body lines kept per function/class definition |
| file_log_context_lines | 2 | Context lines around errors in log files |
| file_csv_head_rows | 5 | Data rows kept from start of CSV files |
| file_csv_tail_rows | 3 | Data rows kept from end of CSV files |
| generic_truncate_threshold | 500 | Generic truncation threshold |
| generic_keep_head | 200 | Lines kept from the start (generic) |
| generic_keep_tail | 100 | Lines kept from the end (generic) |
| ls_compact_threshold | 20 | Items before ls compaction |
| find_compact_threshold | 30 | Results before find compaction |
| tree_compact_threshold | 50 | Lines before tree truncation |
| lint_example_count | 2 | Examples shown per lint rule |
| lint_group_threshold | 3 | Occurrences before grouping by rule |
| search_max_per_file | 3 | Max match lines shown per file |
| search_max_files | 20 | Max files shown in search results |
| kubectl_keep_head | 10 | Lines kept from start of kubectl logs |
| kubectl_keep_tail | 20 | Lines kept from end of kubectl logs |
| docker_log_keep_head | 10 | Lines kept from start of docker logs |
| docker_log_keep_tail | 20 | Lines kept from end of docker logs |
| git_branch_threshold | 30 | Branches before compaction |
| git_stash_threshold | 10 | Stash entries before truncation |
| max_traceback_lines | 30 | Max traceback lines before truncation |
| db_prune_days | 90 | Stats retention in days |
| user_processors_dir | ~/.token-saver/processors/ | Directory for custom processors |
| disabled_processors | [] | List of processor names to disable (env: comma-separated) |
| max_chain_depth | 3 | Maximum processor chain depth |
| debug | false | Enable debug logging |
Custom Processors
You can extend Heimdall Token Saver with your own processors for commands not covered by the built-in 36.
- Create a Python file with a class inheriting from
src.processors.base.Processor - Implement
can_handle(),process(),name, and setpriority - Copy the file to
~/.token-saver/processors/
# Example: install the ansible processor
cp examples/custom_processor/ansible_output.py ~/.token-saver/processors/User processors are auto-discovered on every invocation. A broken processor (syntax error, missing import) is skipped with a warning — it never crashes the engine.
See examples/custom_processor/ for a complete example with documentation.
Savings Tracking
Heimdall Token Saver records every compression in a local SQLite database:
~/.token-saver/savings.dbTables
- savings: each individual compression (timestamp, command, processor, sizes, platform)
- sessions: aggregated totals per session (first/last activity, total original/compressed, command count)
Automatic Stats
On every session start, the SessionStart hook displays a summary:
[heimdall] Lifetime: 342 cmds, 307.2k tokens saved (67.3%) | Session: 5 cmds, 11.3k tokens saved (72.1%)If a newer version is available, the notification is appended:
[heimdall] Lifetime: 342 cmds, 307.2k tokens saved (67.3%) | Update available: v1.0.1 -> v1.1.0 -- Run: heimdall updateManual Stats
heimdall stats
heimdall stats --jsonHeimdall Token Saver Statistics
========================================
Session
----------------------------------------
Commands compressed: 12
Original tokens: 61.3k tokens
Compressed tokens: 15.5k tokens
Saved: 45.8k tokens (74.7%)
Lifetime
----------------------------------------
Sessions: 47
Commands compressed: 342
Original tokens: 461.0k tokens
Compressed tokens: 147.3k tokens
Saved: 307.2k tokens (67.3%)
Top Processors
----------------------------------------
git 142 cmds, 121.8k tokens saved
test 89 cmds, 78.0k tokens saved
build 45 cmds, 49.7k tokens savedMaintenance
- Auto-pruning of records older than 90 days (configurable)
- Automatic recovery on database corruption
- Thread-safe (reentrant lock on all operations)
- WAL mode for concurrent write performance
Security
- No shell injection: commands are passed through
shlex.quote()when rewriting - Fail-open: if the hook fails (Python error, missing file), the original command executes normally
- No sensitive data: only sizes are stored, not output content
- Secret redaction: the
envprocessor automatically redacts values of variables matching*KEY*,*SECRET*,*TOKEN*,*PASSWORD*,*CREDENTIAL*patterns, preventing accidental leakage into AI context windows - Signal forwarding: the wrapper propagates SIGINT/SIGTERM to the child process
- Exclusions: commands with complex pipes, redirections, sudo, editors, ssh are never intercepted
- Safe trailing pipes: simple trailing pipes (
| head,| tail,| wc,| grep,| sort) are allowed - Chained commands:
&∧chains are supported — each segment is validated individually - Self-protection: commands containing
token-saverorwrap.pyare not intercepted (prevents recursion)
Project Structure
token-saver/
├── .claude-plugin/ # Plugin metadata
│ ├── plugin.json # Plugin manifest
│ └── marketplace.json # Marketplace catalog for distribution
├── hooks/ # Native hook declarations
│ └── hooks.json # Claude Code reads this automatically
├── skills/ # Agent skills
│ └── token-saver-config/
│ └── SKILL.md
├── commands/ # Slash commands
│ └── token-saver-stats.md
├── scripts/ # Python hook scripts
│ ├── __init__.py # Package init (prevents namespace conflicts)
│ ├── hook_pretool.py # PreToolUse hook (Claude Code)
│ ├── wrap.py # CLI wrapper (Claude Code)
│ └── hook_session.py # SessionStart hook wrapper
├── antigravity/ # Antigravity CLI specific files
│ ├── antigravity-plugin.json # Antigravity plugin metadata
│ ├── hooks.json # Antigravity hook definitions
│ └── hook_aftertool.py # AfterTool hook (Antigravity CLI)
├── bin/ # CLI executables
│ ├── token-saver # Unix CLI wrapper
│ └── token-saver.cmd # Windows CLI wrapper
├── src/ # Shared source code
│ ├── __init__.py # Version (__version__)
│ ├── chain_utils.py # Chained command splitting (&&, ;)
│ ├── cli.py # CLI entry point (version/stats/update)
│ ├── config.py # Configuration system
│ ├── engine.py # Compression engine (orchestrator)
│ ├── hook_session.py # SessionStart hook (stats + update notif)
│ ├── platforms.py # Platform detection + I/O abstraction
│ ├── stats.py # Stats display
│ ├── tracker.py # SQLite tracking
│ ├── version_check.py # GitHub update check
│ └── processors/ # 36 auto-discovered processors
│ ├── __init__.py
│ ├── base.py # Abstract Processor class
│ ├── utils.py # Shared utilities (diff compression)
│ ├── package_list.py # pip list/freeze, npm ls, conda list
│ ├── git.py # git status/diff/log/show/blame/push/pull
│ ├── test_output.py # pytest/jest/cargo/go/dotnet/swift/mix test
│ ├── build_output.py # npm/cargo/make/webpack/tsc/turbo/nx/docker build
│ ├── lint_output.py # eslint/ruff/pylint/clippy/mypy/shellcheck/hadolint
│ ├── network.py # curl/wget/httpie
│ ├── docker.py # docker ps/images/logs/inspect/stats/compose
│ ├── kubectl.py # kubectl get/describe/logs/apply/delete/create
│ ├── terraform.py # terraform plan/apply/init/output/state
│ ├── env.py # env/printenv (with secret redaction)
│ ├── search.py # grep/rg/ag/fd/fdfind
│ ├── system_info.py # du/wc/df
│ ├── gh.py # gh pr/issue/run list/view/diff/checks
│ ├── db_query.py # psql/mysql/sqlite3/pgcli/mycli/litecli
│ ├── cloud_cli.py # aws/gcloud/az
│ ├── ansible.py # ansible-playbook/ansible
│ ├── helm.py # helm install/upgrade/list/template/status
│ ├── syslog.py # journalctl/dmesg
│ ├── file_listing.py # ls/find/tree/exa/eza/rsync
│ ├── file_content.py # cat/bat (content-aware compression)
│ └── generic.py # Universal fallback
├── docs/
│ └── processors/ # Per-processor documentation
│ ├── ansible.md
│ ├── build_output.md
│ ├── cloud_cli.md
│ ├── db_query.md
│ ├── docker.md
│ ├── env.md
│ ├── file_content.md
│ ├── file_listing.md
│ ├── generic.md
│ ├── gh.md
│ ├── git.md
│ ├── helm.md
│ ├── kubectl.md
│ ├── lint_output.md
│ ├── network.md
│ ├── package_list.md
│ ├── search.md
│ ├── syslog.md
│ ├── system_info.md
│ ├── terraform.md
│ └── test_output.md
├── installers/ # Modular installer package
│ ├── common.py # Shared constants + utilities
│ ├── claude.py # Claude Code installer (native plugin registration)
│ └── antigravity.py # Antigravity CLI installer
├── install.py # Installer entry point
├── CLAUDE.md # Plugin instructions
├── tests/
│ ├── test_engine.py # Engine + registry tests (46)
│ ├── test_processors.py # Per-processor tests (432)
│ ├── test_hooks.py # Hook pattern + integration tests (174)
│ ├── test_precision.py # Precision preservation tests (49)
│ ├── test_core.py # Shared compression core tests (11)
│ ├── test_tracker.py # SQLite + concurrency tests (26)
│ ├── test_config.py # Configuration tests (19)
│ ├── test_version_check.py # Version check + fail-open tests (18)
│ ├── test_cli.py # CLI subcommand tests (23)
│ ├── test_user_processors.py # Custom processor loading tests (7)
│ └── test_installers.py # Installer utility tests (48)
├── audit_compression.py # Deep audit tool for compression analysis
├── pyproject.toml # Python project config + Ruff rules
├── CONTRIBUTING.md # Developer guide
├── LICENSE # Apache 2.0
└── README.mdTests
python3 -m pytest tests/ -v853 tests covering:
- test_engine.py (46 tests): compression thresholds, processor priority, ANSI cleanup, generic fallback, hook pattern coverage for 85+ commands
- test_processors.py (432 tests): each processor with nominal and edge cases, chained command routing, all subcommands (blame, inspect, stats, compose, apply/delete, init/output/state, fd, exa, httpie, dotnet/swift/mix test, shellcheck/hadolint/biome, traceback truncation, ansible, helm, syslog, parameterized tests, coverage, docker compose logs, tsc typecheck, .env redaction, minified files, search directory grouping, git lockfiles/stat grouping)
- test_hooks.py (174 tests): matching patterns for all supported commands, exclusions (pipes, sudo, editors, redirections, remote rsync), subprocess integration, global options (git, docker, kubectl), chained commands (shared shell state,
&&short-circuit,;continue), safe trailing pipes - test_precision.py (49 tests): verification that every critical piece of data survives compression (filenames, hashes, error messages, stack traces, line numbers, rule IDs, diff changes, warning types, secret redaction, unhealthy pods, terraform changes, unmet dependencies)
- test_core.py (11 tests): shared compression core (decision, pass-through-on-error, audit logging) and the platform hook end-to-end
- test_tracker.py (26 tests): CRUD, concurrency (4 threads), corruption recovery, session tracking, stats CLI
- test_config.py (19 tests): defaults, env overrides, invalid values
- test_version_check.py (18 tests): version parsing, comparison, fail-open on errors
- test_cli.py (23 tests): version/stats/help/explain subcommands, bin script execution
- test_user_processors.py (7 tests): custom processor discovery and loading from
~/.token-saver/processors/ - test_installers.py (48 tests): version stamping, legacy migration, CLI install/uninstall
Debugging
To diagnose issues:
# Test compression on a command without replacing the output
python3 scripts/wrap.py --dry-run 'git status'
# Enable debug logging
export TOKEN_SAVER_DEBUG=true
# Check stats
heimdall stats
# Check version
heimdall versionKnown Limitations
- Does not compress commands with complex pipelines, redirections (
> file), or||chains - Simple trailing pipes are supported (
| head,| tail,| wc,| grep,| sort,| uniq,| cut) - Chained commands (
&&,;) are supported — each segment is validated individually sudo,ssh,vimcommands are never intercepted; remotersync(with host:path) is excluded but localrsyncis compressible- Long diff compression truncates per-hunk, not per-file: a diff with many small hunks is not reduced
- The generic processor only deduplicates consecutive identical lines, not similar lines
- Antigravity CLI: the deny/reason mechanism may have side effects if other plugins use the same hook
