clarify agent instructions (#5655)

This commit is contained in:
Angie Jones
2025-11-10 13:54:42 -06:00
committed by GitHub
parent 26933e250a
commit b68fccdb8c
2 changed files with 3 additions and 2 deletions
+1 -1
View File
@@ -85,7 +85,7 @@ Simplicity: Don't make things optional that don't need to be - the compiler will
Simplicity: Booleans should default to false, not be optional
Errors: Don't add error context that doesn't add useful information (e.g., `.context("Failed to X")` when error already says it failed)
Simplicity: Avoid overly defensive code - trust Rust's type system
Logging: Clean up existing logs, don't add more
Logging: Clean up existing logs, don't add more unless for errors or security events
## Never