Files
holocron/CLAUDE.md

824 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 at providers/claude-code/CLAUDE.md. Do not conflate the two.

@AGENTS.md

@CONTEXT.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