rtk
Installation
SKILL.md
RTK (Rust Token Killer) - Token-Optimized Commands
Golden Rule
Always prefix shell commands with rtk. RTK filters and compresses command output before it reaches the LLM context, cutting up to 90% of the output on common operations. If RTK has a dedicated filter, it uses it. If not, it passes through unchanged. This means RTK is always safe to use. RTK is also cross-platform, so it works in Windows and with cmd/pwsh.
In order to compress the output, RTK buffers it until the command finishes. If you rely on streaming output or monitor a long-running command (ex dev server) do NOT prefix it with rtk.
Important: Even in command chains with &&, use rtk:
# ❌ Wrong
git add . && git commit -m "msg" && git push