From odoo-token-killer
Provides Rust CLI proxy for token-filtered command execution with 12 output filters, SQLite token tracking, analytics dashboard, and tee recovery. Auto-triggers via PreToolUse hook.
npx claudepluginhub letzdoo/claude-marketplace --plugin odoo-token-killerThis skill is limited to using the following tools:
A high-performance Rust binary providing:
Compresses outputs from git, ls, pytest, cargo test etc. via Rust CLI proxy and bash hooks to reduce LLM token usage 60-90%.
Guides setup of 3-layer token optimization stack—Headroom (API compression), RTK (CLI output compression), Serena (LSP code navigation)—to reduce Claude Code token use by 50-80%. For context window management.
Optimizes Claude Code token usage with bash/grep/glob preferences over full file reads, Sonnet for dev/debugging, Opus for codebase learning, and minimal output strategies.
Share bugs, ideas, or general feedback.
A high-performance Rust binary providing:
otk <command> - Token-filtered command executionotk gain - Analytics dashboardotk read <file> - Filtered file reading with tee recovery# After cargo install:
otk git status # Compact status
otk git log # One-line per commit
otk test invoke test module # Failures only
otk logs docker compose logs # Errors/warnings only
otk read models/sale.py # Filtered Python source
otk read views/sale_view.xml # XML structure only
otk gain # Token savings dashboard
otk gain --daily --json # Export analytics
otk proxy <any command> # Passthrough with tracking
When OTK filters output, the full raw version is saved to disk:
[full output: ~/.local/share/otk/tee/1234567890_git_log.log]
Read that file to access the complete unfiltered output.
cd ${CLAUDE_PLUGIN_ROOT}/skills/otk-core && cargo build --release
# Binary: target/release/otk (4.2MB)
cd ${CLAUDE_PLUGIN_ROOT}/skills/otk-core && cargo install --path .