diff --git a/AGENTS.md b/AGENTS.md
index 9f6ae50..da8971f 100644
--- a/AGENTS.md
+++ b/AGENTS.md
@@ -59,7 +59,7 @@ Use these commands to perform common development tasks:
## Code Style and Conventions
* Follow standard C# naming conventions (PascalCase for classes/methods/properties, camelCase for local variables).
-* Use nullable reference types (`#nullable enable`).
+* Nullable reference types are enabled at the project level (`enable` in .csproj files). Do not use file-level `#nullable enable` directives.
* Warnings are treated as errors (`true`).
* Avoid public fields; prefer properties.