Skip to content

Commit 9e5a6ae

Browse files
committed
meta: add minimal AGENTS.md
Adds a minimal AGENTS.md and removes the file from various ignore lists. The initial file merely points to existing documentation and guidelines. Signed-off-by: Beth Griggs <bethanyngriggs@gmail.com>
1 parent 21f0f27 commit 9e5a6ae

4 files changed

Lines changed: 8 additions & 3 deletions

File tree

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,6 @@ install_manifest.txt
163163

164164
# === Rules for AI assistants ===
165165
CLAUDE.md
166-
AGENTS.md
167166

168167
# === Global Rules ===
169168
# Keep last to avoid being excluded

AGENTS.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Repository instructions
2+
3+
* Follow [CONTRIBUTING.md](CONTRIBUTING.md) when making changes.
4+
* For security-sensitive changes or reports, follow [SECURITY.md](SECURITY.md).
5+
* Follow the [AI use policy and guidelines](doc/contributing/ai-guidelines.md)
6+
for AI-assisted contributions and communications.

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1480,7 +1480,7 @@ else
14801480
LINT_MD_NEWER = -newer tools/.mdlintstamp
14811481
endif
14821482

1483-
LINT_MD_TARGETS = doc src lib benchmark test tools/doc tools/icu $(filter-out CLAUDE.md AGENTS.md,$(wildcard *.md))
1483+
LINT_MD_TARGETS = doc src lib benchmark test tools/doc tools/icu $(filter-out CLAUDE.md,$(wildcard *.md))
14841484
LINT_MD_FILES = $(shell $(FIND) $(LINT_MD_TARGETS) -type f \
14851485
! -path '*node_modules*' ! -path 'test/fixtures/*' -name '*.md' \
14861486
$(LINT_MD_NEWER))

eslint.config.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -398,7 +398,7 @@ export default [
398398
// #region markdown config
399399
{
400400
files: ['**/*.md'],
401-
ignores: ['CLAUDE.md', 'AGENTS.md'],
401+
ignores: ['CLAUDE.md'],
402402
plugins: {
403403
markdown,
404404
},

0 commit comments

Comments
 (0)