## Why The WARNING admonition blocks in CLAUDE.md and providers/claude-code/CLAUDE.md added noise without adding clarity — the file paths already communicate which config is which. The "Key rules" block in AGENTS.md duplicated guidance already present in the content index above it. Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
497 B
497 B
@AGENTS.md
RTK (Rust Token Killer) - Token-Optimized Commands
Golden Rule
Always prefix commands with rtk. If RTK has a dedicated filter, it uses it. If not, it passes through unchanged. This means RTK is always safe to use.
Important: Even in command chains with &&, use rtk:
# ❌ Wrong
git add . && git commit -m "msg" && git push
# ✅ Correct
rtk git add . && rtk git commit -m "msg" && rtk git push