commit 95c6e579ba4c20f1b0585841cf4b7087d0aa7142
parent 934d720317a08dcbad92bc9adc9c2e247cdb22ca
Author: alltheseas <64376233+alltheseas@users.noreply.github.com>
Date: Sun, 28 Dec 2025 08:43:29 -0600
Update AGENTS.md
added docstring coverage requirement
Diffstat:
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git a/AGENTS.md b/AGENTS.md
@@ -105,6 +105,7 @@ This document captures the current architecture, coding conventions, and design
8. **Nevernesting** — favor early returns and guard clauses over deeply nested conditionals; simplify control flow by exiting early instead of wrapping logic in multiple layers of `if` statements.
9. **Do not fudge CI tests**, in order to get a commit or PR to pass. Instead identify the underlying root cause of CI failure, and address that.
10. Before proposing changes, please **review and analyze if a change or upgrade to nostrdb** is beneficial to the change at hand.
+11. Ensure docstring coverage for any code added, or modified.