Add FAQ: How do I configure Claude Code? (@AGENTS.md import)#197
Open
yurukusa wants to merge 1 commit into
Open
Add FAQ: How do I configure Claude Code? (@AGENTS.md import)#197yurukusa wants to merge 1 commit into
yurukusa wants to merge 1 commit into
Conversation
Claude Code is a widely used coding agent, but the FAQ had no entry for it. Unlike the tools already listed, Claude Code reads CLAUDE.md rather than AGENTS.md natively, so users repeatedly ask how to make the two work together. This adds a per-tool FAQ entry mirroring the existing "How do I configure Aider?" / "How do I configure Gemini CLI?" entries: import AGENTS.md from CLAUDE.md with a one-line `@AGENTS.md` directive, which keeps a single shared source of truth. This is the method documented in Anthropic's Claude Code memory docs (the @path import syntax). Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
|
@yurukusa is attempting to deploy a commit to the openai Team on Vercel. A member of the Team first needs to authorize it. |
|
I'm am the owner of that account I have all my information and PR release my AI agent |
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.
Adds a per-tool FAQ entry for Claude Code, mirroring the existing "How do I configure Aider?" and "How do I configure Gemini CLI?" entries.
Claude Code is one of the most widely used coding agents, but it had no entry in the FAQ. Unlike the tools already covered, Claude Code reads
CLAUDE.mdrather thanAGENTS.mdnatively — so users frequently ask how to use an existingAGENTS.mdwith it.The answer is the officially documented import: put a one-line
@AGENTS.mddirective at the top ofCLAUDE.md, which keeps a single shared source of truth instead of duplicating the file. This is the@pathimport syntax from Anthropic's Claude Code memory documentation.Reuses the existing
CodeExamplecomponent and matches the structure/formatting of the other per-tool config entries.tsxparses/transforms cleanly (verified with esbuild). No other files touched.