By using this site, you agree to the Privacy Policy and Terms of Use.
Accept
Logic & LayersLogic & Layers
  • Tools
  • Earn with AI
  • Productivity
  • Automation
  • Guides
Logic & LayersLogic & Layers
  • Privacy Policy
  • About
Search
  • Tools
  • Earn with AI
  • Productivity
  • Automation
  • Guides
  • About
  • Contact
  • Blog
  • Privacy Policy
  • Complaint
  • Advertise
© 2026 Logic and Layers. Ruby Design Company. All Rights Reserved.
Developers working with the AGENTS.md standard for coding agents
Guides

Claude Code AGENTS.md support: setup in two minutes

Editorial Team
Last updated: September 19, 2026 2:32 pm
Editorial Team
Share
AGENTS.md is now the shared instruction file across major coding agents

Claude Code AGENTS.md support finally landed this week. If your project folder has an AGENTS.md file that Claude Code ignored for months, the symlink tricks can retire, and the fix takes about two minutes.

Contents
What actually changed in Claude Code AGENTS.md supportWhy this matters even if you work aloneThe road to this releaseAGENTS.md vs CLAUDE.md: which one wins?How to set it up in two minutesWhat goes inside the fileThe bigger shift: one file, every agentCommon questions, answered brieflyStart today

What actually changed in Claude Code AGENTS.md support

The official Claude Code changelog says it straight: in a project with no CLAUDE.md, Claude Code now reads AGENTS.md instead. The change shipped in version 2.1.277 on September 18, 2026, and you can adjust the behavior under “Project instructions” in the /config menu.

If you’ve never hit this problem, here’s the deal. AGENTS.md is an open file format for giving AI coding agents instructions. Think of it as a README, but the reader is a robot. Build commands, test routines, style rules, things the agent should never touch. It started as a community convention and grew into a real standard: OpenAI Codex, GitHub Copilot, Cursor, Aider, Windsurf, and others read it natively, and it’s now stewarded under the Linux Foundation’s Agentic AI Foundation.

Claude Code was the stubborn one. It only read its own CLAUDE.md file. The GitHub issue asking for AGENTS.md support collected over 5,200 reactions, one of the loudest feature requests in the entire tracker.

Why this matters even if you work alone

Two scenarios make this worth your time.

First, mixed teams. Your teammate or your CI uses Codex, you use Claude Code. Before, you either kept two instruction files in sync by hand or hoped nobody forgot an update. Now one AGENTS.md serves both tools, so the instructions stay identical automatically.

Second, borrowed repos. You clone a project that already has an AGENTS.md with build steps and warnings. With the new release, Claude Code picks it up on its own. No more discovering the hard way that the agent skipped the migration step the file explicitly warned about.

One developer on Hacker News described asking Claude Code to “follow the instructions in this directory” in a folder with only an AGENTS.md. It found nothing. That failure mode is gone now.

The road to this release

The community asked for this for a long time. Issue #6235 opened back in August 2025 and snowballed into the most-upvoted request in the Claude Code tracker, with hundreds of comments debating formats and precedence rules.

While Anthropic stayed quiet, developers engineered workarounds. The popular one: a CLAUDE.md containing a single line, @AGENTS.md, which tells Claude Code to import the open-standard file. Windows users without symlink permissions leaned on that trick hard. Others symlinked CLAUDE.md to AGENTS.md so both names pointed at the same real file. Claude Code AGENTS.md support makes all of that plumbing optional instead of mandatory.

AGENTS.md vs CLAUDE.md: which one wins?

Quick comparison, since the two files now coexist in the same tool:

AGENTS.md CLAUDE.md
Who reads it Codex, Copilot, Cursor, Aider, Windsurf, and now Claude Code as fallback Claude Code only
Format Open standard under the Linux Foundation Claude-specific, supports @imports and auto memory
Priority in Claude Code Fallback Wins when both exist
Best for Shared rules across every tool your team uses Claude-only notes, imports, personal overrides

Bottom line: keep CLAUDE.md if you have one, since it still takes priority. Otherwise, one AGENTS.md now covers the whole toolbox.

How to set it up in two minutes

Nothing to install. If your Claude Code is updated to 2.1.277 or later, it just works. Here’s the checklist:

Step 1: Update Claude Code. Run claude –version to confirm you’re on 2.1.277 or newer. If not, update your install first.

Step 2: Check what’s in your project. If you already have a CLAUDE.md, keep it. CLAUDE.md still wins when both files exist, so your existing setup keeps working exactly as before.

Step 3: No CLAUDE.md? Drop an AGENTS.md in your project root. Claude Code reads it automatically at session start.

Step 4: Want to change how it loads? Open /config and look under “Project instructions.”

Step 5: Windows or a repo where you can’t add files? The old workaround still works: put a single line, @AGENTS.md, inside CLAUDE.md, and Claude Code imports it.

Step 6: Verify. Start a session and ask “which instruction files did you load?” You should get AGENTS.md back, along with its rule count.

One caveat for enterprise users: the changelog notes the feature is not yet available on Bedrock, Vertex, or Foundry. If your company runs Claude Code through one of those platforms, you’re on the old behavior until further notice.

What goes inside the file

A good AGENTS.md is short and bossy. Agents do better with clear rules than with essays. A solid starter:

## Build
- npm run build
## Test
- npm test
## Rules
- Never edit files in generated/
- Run tests before claiming done
- Follow existing code style, no refactors

Keep it under a page. Long files dilute the rules that matter, and the agent’s context window is not infinite. If a rule only matters for one folder, some tools support nested AGENTS.md files per directory, so put the rule where it applies.

The bigger shift: one file, every agent

Zoom out, because this change is about more than one tool. The industry has been consolidating on shared instruction files instead of per-vendor ones. When Anthropic, OpenAI, and Block joined the Linux Foundation effort to standardize agent instructions, the direction got obvious. Claude Code joining the party makes AGENTS.md the closest thing coding agents have to a universal config.

Practical effect for you: write your rules once. When a new agent tool shows up next quarter, odds are decent it already speaks the same file. Your setup cost drops to zero, and your rules stop drifting between tools. Claude Code AGENTS.md support is the loudest signal yet that per-vendor config files are on their way out.

Common questions, answered briefly

Does CLAUDE.md still take priority? Yes. The new support is a fallback. If both files exist, Claude Code reads CLAUDE.md and ignores the rest.

Do I need to delete my CLAUDE.md? No. If it imports AGENTS.md with the @AGENTS.md line, you can keep the same setup running. Plenty of teams will.

Which version shipped Claude Code AGENTS.md support? Version 2.1.277, released September 18, 2026. Anything older ignores the file.

Is my project too small for this? If an agent touches it, rules help. Even a five-line file with build and test commands saves the agent from guessing.

Start today

Update Claude Code, check your projects for AGENTS.md files you’ve been ignoring, and consolidate your duplicate instruction files into one. The symlink tricks can retire.

Want to go deeper on Claude Code? Learn the /goal command that keeps long tasks on track, see how hooks stop AI mistakes before they happen, or browse everyday tasks Claude Code can handle without any programming background. One instruction file, fewer surprises: that’s the whole game.

You Might Also Like

On-device AI: How to use AI on your phone without internet
Build an AI Code Review Bot in 30 Minutes with Vercel Eve
Claude Code Session Messaging + Auto Mode: Complete Beginner Guide
Opt Out of AI Training on Every Social Platform: Complete 2026 Guide
Google Gemini Spark: The 24/7 AI assistant that actually works — complete beginner guide
TAGGED:AGENTS.mdAnthropicClaude Codecoding agentsDeveloper Tools
Share
Previous Article TypeSafe AI, the startup behind the Jev model Jev AI model: the no-text AI that cuts automation costs
Next Article Doctor reviewing CT scan images on a medical display Damo Radar: Alibaba’s open-source AI that spots cancer on CT scans
Leave a Comment

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

banner banner
Create an Amazing Newspaper
Discover thousands of options, easy to customize layouts, one-click to import demo and much more.
Learn More

Latest News

mini-AGI repository card showing a neural network that assembles itself during training
Train your own AI model on one GPU with mini-AGI
Tools
Open-weight AI image generation workflow with transparent layers on a desktop editor
Qwen Image 2.1: free AI images with real transparency
Tools
Illustration of a browser cookie linked to shopping, medical, and debt websites through an ad tracker
ChatGPT ad tracking: how to turn it off in 2 minutes
Tools
Apple CEO John Ternus speaking at the Surprise and Shine event at Apple Park
Apple AI server: what the M8 Ultra report means for you
Tools

Recent Posts

  • Train your own AI model on one GPU with mini-AGI
  • Qwen Image 2.1: free AI images with real transparency
  • ChatGPT ad tracking: how to turn it off in 2 minutes
  • Apple AI server: what the M8 Ultra report means for you
  • Open vs closed AI models: when the free one is enough

Recent Comments

  1. Train your own AI model on one GPU with mini-AGI on Local LLM Hardware Guide 2026: DDR5 Prices Up 500% – What to Buy Instead
  2. Qwen Image 2.1: free AI images with real transparency on GGUF vs GPTQ vs AWQ vs EXL2: pick the right model format
  3. ChatGPT ad tracking: how to turn it off in 2 minutes on Files you should never upload to ChatGPT
  4. Apple AI server: what the M8 Ultra report means for you on Local LLM Hardware Guide 2026: DDR5 Prices Up 500% – What to Buy Instead
  5. Open vs closed AI models: when the free one is enough on Qwen 3.8 Review: Free Claude Opus-level coding AI for beginners

You Might also Like

Raspberry Pi with thermal printer and Cursor AI code on screen
Guides

Build Hardware with Cursor + Raspberry Pi: Zero Coding Required

Editorial Team
Editorial Team
15 Min Read
Debian logo on a laptop keyboard with code on screen
Guides

AI-generated code is now allowed in Debian

Editorial Team
Editorial Team
9 Min Read
Meta campus symbolizing the company's new Hatch AI agent rollout to employees
Guides

Meta Hatch agent: what it is and why it matters

Editorial Team
Editorial Team
8 Min Read
//

We influence 20 million users and is the number one business and technology news network on the planet

Quick Link

  • PRIVACY NOTICE
  • YOUR PRIVACY RIGHTS
  • INTEREST-BASE ADSNew
  • TERMS OF USE
  • OUR SITE MAP

Support

  • ADVERTISE
  • ONLINE BESTHot
  • CUSTOMER
  • SERVICES
  • SUBSCRIBE

Categories

  • Tools
© 2026 Logic and Layers. All Rights Reserved.