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>
24 lines
811 B
Markdown
24 lines
811 B
Markdown
> [!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
|
|
|
|
<!-- rtk-instructions v2 -->
|
|
# 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`:
|
|
```bash
|
|
# ❌ Wrong
|
|
git add . && git commit -m "msg" && git push
|
|
|
|
# ✅ Correct
|
|
rtk git add . && rtk git commit -m "msg" && rtk git push
|
|
```
|
|
<!-- /rtk-instructions -->
|