DOC: Add CLAUDE.md shim that delegates to AGENTS.md#5979
Open
thewtex wants to merge 1 commit intoInsightSoftwareConsortium:mainfrom
Open
DOC: Add CLAUDE.md shim that delegates to AGENTS.md#5979thewtex wants to merge 1 commit intoInsightSoftwareConsortium:mainfrom
CLAUDE.md shim that delegates to AGENTS.md#5979thewtex wants to merge 1 commit intoInsightSoftwareConsortium:mainfrom
Conversation
Claude Code expects a `CLAUDE.md` entrypoint, but this repo already standardizes on a single root‐level `AGENTS.md` for all agent instructions. Note that the new `CLAUDE.md` is intentionally minimal and just forwards Claude to `AGENTS.md` (via an explicit reference) so that: - `AGENTS.md` remains the canonical, editor‑agnostic source of truth - Claude Code and other CLAUDE.md‑aware tools still "just work" - We avoid fragile symlink hacks and keep behavior consistent across platforms and CLIs
Contributor
Greptile SummaryThis PR adds a minimal
Confidence Score: 5/5
Important Files Changed
Flowchart%%{init: {'theme': 'neutral'}}%%
flowchart TD
A([Claude Code starts]) --> B{Is there a CLAUDE.md\nat repo root?}
B -- Yes --> C[Load CLAUDE.md]
C --> D["Encounter @AGENTS.md\ndirective"]
D --> E[Load & merge AGENTS.md\ninto active context]
E --> F([Full ITK agent context\navailable to Claude])
B -- No --> G([No project context\nloaded])
Reviews (1): Last reviewed commit: "DOC: Add `CLAUDE.md` shim that delegates..." | Re-trigger Greptile |
dzenanz
approved these changes
Mar 24, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Claude Code expects a
CLAUDE.mdentrypoint, but this repo alreadystandardizes on a single root‐level
AGENTS.mdfor all agentinstructions. Note that the new
CLAUDE.mdis intentionally minimal andjust forwards Claude to
AGENTS.md(via an explicit reference) so that:AGENTS.mdremains the canonical, editor‑agnostic source of truth