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.
How this skill is triggered — by the user, by Claude, or both
Slash command
/odoo-token-killer:otk-coreThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
A high-performance Rust binary providing:
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 .
npx claudepluginhub letzdoo/claude-marketplace --plugin odoo-token-killerMinimizes token waste in bash, file reads, and data processing using jq for JSON, yq for YAML/TOML, awk for CSV, and ast-grep for precise searches.
Guides setup of the 3-layer token optimization stack: Headroom (API compression), RTK (CLI output compression), and Serena (LSP-backed code navigation). Activates on token savings or context window queries.
Runs 11 categories of environment diagnostics for Claude Octopus — checks providers, auth, config, hooks, and scheduler to find misconfigurations before they cause workflow failures.