proomt

Search

Search posts, papers, and topics

All posts

Hacker News front page474 min readrelease notesintermediate

Claude Code now reads AGENTS.md if there is no Claude.md

Summary

Claude Code 2026‑09‑18 release adds AGENTS.md fallback when CLAUDE.md is missing and makes the auto‑mode classifier server‑side by default. It also introduces several new env vars, header maps, and dozens of bug‑fixes that improve stability and startup speed.

  • If a project lacks CLAUDE.md, Claude Code now reads AGENTS.md for instructions (configurable under /config).
  • Auto mode now defaults to the server‑side classifier, avoiding extra billing unless opted out via CLAUDE_CODE_AUTO_MODE_SERVER=0.
  • New env var CLAUDE_GATEWAY_PROXY_IS_EGRESS_BOUNDARY=1 forces gateways to send hostnames to a forward proxy instead of resolving locally.
  • Gateway upstreams can now include a static headers: map to inject headers into proxy requests.

Developers building or using Claude Code need to know the new instruction source, default classifier behavior, and configuration flags that affect security and performance.

6/10

Related reading

  1. Quoting Thariq Shihipar

    Claude Code version 2.1.277 now supports AGENTS.md as a fallback for CLAUDE.md for project instructions. This feature is built on an upcoming "Claude Code mods" system, which will allow users to create custom project instruction configurations.

    Simon Willisonsimonwillison.net1 minrelease
  2. Audit your Agent files

    Agent configuration files (CLAUDE.md, AGENTS.md, skill packs) accumulate stale rules, inflating token usage and hurting performance. Regular audits—using Claude’s /doctor, pruning to <200 lines, and encoding hard constraints in hooks—restore lean, effective agents.

    Addy Osmaniaddyosmani.com12 min
  3. Blog: How to Build a DevOps Agent

    This blog walks through the open‑source DevOps Agent Kit, which lets Claude Code or Cursor act as a DevOps assistant by connecting to CloudBees Unify, Jira, and Slack via MCP servers and to GitHub via the CLI. It provides a repeatable setup (Docker, Node, env file) and seven slash commands for pipeline overview, triage, security, release readiness, flag management, CI health scoring, and Jira tic…

    Codeshipcloudbees.com10 min
  4. Why we removed AI solutions from Flare

    Flare dropped its AI‑generated solution feature, saying it no longer matches how developers debug with modern coding agents. The new approach uses an MCP server, a CLI, a "Copy" tool for prompts, and docs tuned for agents, but the post gives no technical details or data.

    Freek Van der Hertenfreek.dev1 min
  5. Changing the game: How Google uses agentic AI to secure hundreds of millions of lines of code

    Google’s AI & Infrastructure team built an agentic pipeline (Mantis) that runs pre‑submit AI‑driven scans on every code check‑in, validates findings with a fast triage agent (AST + call‑graph analysis) achieving >92% precision in <1 min, then auto‑generates fixes via a bug‑fix agent. Localized threat models and a two‑step scan cut false‑positives to ~3% and prevent hundreds of vulnerabilities eac…

    Google Cloud Bloggoogle.com4 min