You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -196,3 +196,13 @@ Basic development tools (git, cargo, editors) should not be listed.
196
196
AI agents **must** verify their own identity (agent name and model version) before composing the `Assisted-by` trailer — do not assume or hard-code a model name from a previous session.
197
197
198
198
AI agents **MUST NOT** add `Signed-off-by` tags. Only humans can certify the Developer Certificate of Origin.
199
+
200
+
## Rust PR Review Instructions
201
+
CI overview:
202
+
* CI will build the project and run `cargo test` and `cargo clippy`.
203
+
* Feature combinations are checked with `cargo hack`.
204
+
* Do not comment on compile errors, compiler warnings, or clippy warnings.
205
+
206
+
Pay special attention to...
207
+
* code that uses async selection APIs such as `select`, `selectN`, `select_array`, `select_slice`, or is marked with a drop safety comment. These functions drop the futures that don't finish. Check that values are not lost when this happens.
208
+
* code that could possibly panic or is marked with a panic safety comment.
0 commit comments