commit 76591e7247696123e10ab811a50d08606755e7eb
parent 4956f7bb7286585c9a034d3470fa2a0c523b7c99
Author: alltheseas <64376233+alltheseas@users.noreply.github.com>
Date: Tue, 21 Oct 2025 14:09:39 -0500
AGENTS.md: added requirement for human readable and reviewable code
AGENTS.md: added requirement for human readable and reviewable code
Diffstat:
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/AGENTS.md b/AGENTS.md
@@ -97,8 +97,9 @@ This document captures the current architecture, coding conventions, and design
1. Please make all commits logically distinct.
2. Please make all commits standalone (i.e. so that they can be readily removed tens of commits later without impact the rest of the code).
-3. Please set up code for performance profiling utilizing puffin (e.g. `cargo run --release --features puffin`).
-4. Related to Puffin & performance profiling, for code suspected of impacting performance, carefully consider adding performance profiling attributes such as e.g. profiling::function in order to see functions performance in the profiler.
+3. Related to logically distinct code, and standalone commits care must be taken for all code to be human readable, and reviewable by human developers.
+4. Please set up code for performance profiling utilizing puffin (e.g. `cargo run --release --features puffin`).
+5. Related to Puffin & performance profiling, for code suspected of impacting performance, carefully consider adding performance profiling attributes such as e.g. profiling::function in order to see functions performance in the profiler.