docs: add CLAUDE.md shim importing AGENTS.md (BE-3537)#570
Conversation
Claude Code reads CLAUDE.md, not AGENTS.md, and does not fall back. Add the canonical org-standard shim so Claude Code sessions pick up the existing AGENTS.md instructions via @-import.
|
Warning Review limit reachedYou’ve reached a temporary PR review limit under our Fair Usage Limits Policy. Next review available in: 14 minutes Enable usage-based reviews in Billing to review now. Otherwise, wait until the next included review is available. How can I continue?After more reviews become available, a review can be triggered using the To avoid repeated limits, reduce automatic review volume by pausing incremental auto-reviews earlier, using label-based review opt-in, excluding WIP or generated PR titles, or requesting reviews manually when the PR is ready. If your team needs uninterrupted high-volume reviews, an organization admin can enable usage-based reviews. How do review limits work?CodeRabbit enforces per-developer PR review limits for each organization. Most developers receive the normal plan review availability. For paid Pro and Pro+ PR reviews, CodeRabbit uses adaptive limits for sustained high-volume activity. When a developer's recent PR review activity reaches the 95th percentile or higher among CodeRabbit users, additional reviews become available more gradually as earlier reviews age out of the rolling window. Please refer docs for additional details. ✨ Finishing Touches🧪 Generate unit tests (beta)
✨ Simplify code
Comment |
There was a problem hiding this comment.
🔍 Cursor Review — Consolidated panel
Triggered by @mattmillerai.
✅ No high-signal findings.
Panel: 6/8 reviewers contributed findings.
Reviewers that did not contribute: kimi-k2.5:adversarial (empty), kimi-k2.5:edge-case (empty)
ELI-5
Claude Code only looks for a file called
CLAUDE.mdfor its instructions — it never readsAGENTS.mdand doesn't fall back to it. This repo keeps its agent instructions inAGENTS.md(the cross-agent standard), so Claude Code sessions were getting zero instructions. This PR adds a tinyCLAUDE.mdthat just@-importsAGENTS.md, so Claude Code now picks up the same instructions every other agent already reads.What changed
CLAUDE.mdcontaining exactly the org-standard shim (an HTML comment explaining it's a shim +@AGENTS.md), per the 2026-07-15 "Pillar 1: Agentic Engineering" guide and the org-wide audit (BE-3241).What did NOT change
AGENTS.mdis untouched (the single source of truth stays canonical)..cursorrulesadded/removed (none exists; modern tools readAGENTS.md).AGENTS.mdfiles exist, so no nested shims were needed.Verification
CLAUDE.mdcontent is byte-for-byte the canonical shim (em-dash preserved as UTF-8).end-of-file-fixer✅,trailing-whitespace✅ (ruff/toml/uv hooks skip — no matching files).Closes BE-3537.