rtk
Installation
SKILL.md
RTK - Token-Optimized Command Wrapper
RTK filters and compresses command outputs before they reach context. Use it to reduce token consumption by 60-90% on common dev operations.
Quick Reference
Core principle: Prefix supported commands with rtk for compressed output.
Most Common Usage
# Git operations (80-92% savings)
rtk git status
rtk git diff
rtk git log -n 10
rtk git add .
rtk git commit -m "msg"
rtk git push