Remove @CONTEXT.md directive from CLAUDE.md (stale reference) and reorder settings.json to put hooks before enabledPlugins for consistency. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
811 B
811 B
Warning
This is the repo meta-config. It tells Claude how to work inside this repository itself — structure, conventions, how to add skills/workflows/providers.
It is NOT the global config deployed to
~/.claude/. That file lives atproviders/claude-code/CLAUDE.md. Do not conflate the two.
@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