From 53a53ba992e90d2217d71686860140d37886650f Mon Sep 17 00:00:00 2001 From: He-Pin Date: Sat, 20 Jun 2026 02:15:23 +0800 Subject: [PATCH] docs: add AGENTS.md entry point Motivation: Codex and other agents look for AGENTS.md as the local instruction entry point, but this repository currently keeps the actual agent guidance in CLAUDE.md. Modification: Add a root AGENTS.md that points agents to CLAUDE.md and makes CLAUDE.md authoritative if the two files ever conflict. Result: Agent workflows can discover the repository guidance without duplicating the CLAUDE.md contents. Tests: - git diff --check References: None - agent instruction entry point --- AGENTS.md | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 AGENTS.md diff --git a/AGENTS.md b/AGENTS.md new file mode 100644 index 00000000..9b1eba36 --- /dev/null +++ b/AGENTS.md @@ -0,0 +1,7 @@ +# Agent Instructions + +This repository keeps agent-facing development guidance in [CLAUDE.md](CLAUDE.md). + +Before making changes, read and follow `CLAUDE.md`. If this file conflicts with +`CLAUDE.md`, follow `CLAUDE.md` and update this file to keep the entry point in +sync.