.gemini/style-guide.md
This style guide provides instructions for Gemini Code Assist when reviewing pull requests for the ZeroClaw project.
ZeroClaw is a Rust-based security-focused project that handles encryption, secrets management, and secure configuration. Code reviews should prioritize security, memory safety, and Rust best practices.
unsafe blocks for careful review - they should be minimal and well-justified.clone() calls that could be replaced with borrowingResult types? operator for clean error propagationpanic!, unwrap(), or expect() in production codeCryptography: Review all crypto code for:
Secrets Management:
Input Validation: All external input must be validated
When reviewing PRs, pay special attention to:
src/security/ - highest security scrutiny