Reviews Rust code for ownership, borrowing, lifetime, error handling, trait design, unsafe usage, and common mistakes. Use when reviewing .rs files, checking borrow checker issues, error handling patterns, or trait implementations. Covers Rust 2024 edition patterns and modern idioms. Use when this capability is needed.
Installer avec Codex ou Claude Copiez ce prompt, collez-le dans Codex, Claude ou un autre assistant, puis laissez-le vérifier la page du skill et l'installer pour vous.
Une commande directe contourne le prompt de vérification. Examinez la source avant de l'exécuter.
Reviews Rust code for ownership, borrowing, lifetime, error handling, trait design, unsafe usage, and common mistakes. Use when reviewing .rs files, checking borrow checker issues, error handling patterns, or trait implementations. Covers Rust 2024 edition patterns and modern idioms. Use when this capability is needed.
metadata
{"author":"existential-birds"}
Rust Code Review
Review Workflow
Follow this sequence to avoid false positives and catch edition-specific issues:
Check Cargo.toml — Note the Rust edition (2018, 2021, 2024) and MSRV if set. Edition 2024 introduces breaking changes to unsafe semantics, RPIT lifetime capture, temporary scoping, and ! type fallback. This determines which patterns apply. Check workspace structure if present.
Check dependencies — Note key crates (thiserror vs anyhow, tokio features, serde features). These inform which patterns are expected.
Scan changed files — Read full functions, not just diffs. Many Rust bugs hide in ownership flow across a function.
Check each category — Work through the checklist below, loading references as needed.
Verify before reporting — Complete Gates (below), including the verification-protocol gate, before submitting findings.
Gates
These steps are sequenced: do not skip ahead with “mental verification.” Each step has an objective Pass you can satisfy from files on disk and your own read path.
Crate context — Before relying on edition-specific checklist rows (Edition 2024, MSRV-sensitive APIs) or dependency assumptions. Pass: You opened the relevant Cargo.toml (package or workspace manifest) and can state edition and rust-version (if set) in one line.
Expanded read — Before reporting a Major or Critical finding. Pass: You read the full function, unsafe block, or impl / trait item that contains the cited line (not only a diff hunk).
Severity match — Before each finding line in the report. Pass: The Severity label matches Severity Calibration for that issue class, or you use Informational and give a one-line rationale.
Verification protocol — Before finalizing the report. Pass:beagle-rust:review-verification-protocol is loaded and every step in it that applies to this review is completed (do not substitute a vague “I checked”).
Output Format
Report findings as:
[FILE:LINE] ISSUE_TITLE
Severity: Critical | Major | Minor | Informational
Description of the issue and why it matters.
For development guidance on performance, pointer types, type state, clippy config, iterators, generics, and documentation, use the beagle-rust:rust-best-practices skill.
Review Checklist
Ownership and Borrowing
No unnecessary .clone() to silence the borrow checker (hiding design issues)
No .clone() inside loops — prefer .cloned() or .copied() on iterators
No cloning to avoid lifetime annotations (take ownership explicitly or restructure)
References have appropriate lifetimes (not overly broad 'static when shorter lifetime works)
Edition 2024: RPIT (-> impl Trait) captures all in-scope lifetimes by default; use + use<'a> for precise capture control
&str preferred over String, &[T] over Vec<T> in function parameters
impl AsRef<T> or Into<T> used for flexible API parameters
No dangling references or use-after-move
Interior mutability (Cell, RefCell, Mutex) used only when shared mutation is genuinely needed
Small types (≤24 bytes) derive Copy and are passed by value
Cow<'_, T> used when ownership is ambiguous
Iterator chains preferred over index-based loops for collection transforms
No premature .collect() — pass iterators directly when the consumer accepts them
.sum() preferred over .fold() for summation (compiler optimizes better)
_or_else variants used when fallbacks involve allocation
: temporaries drop at end of the — code relying on temporaries living through the else branch needs restructuring
Error Handling
Result<T, E> used for recoverable errors, not panic!/unwrap/expect
Error types provide context (thiserror with #[error("...")] or manual Display)
? operator used with proper From implementations or .map_err()
unwrap() / expect() only in tests, examples, or provably-safe contexts
Error variants are specific enough to be actionable by callers
anyhow used in applications, thiserror in libraries (or clear rationale for alternatives)
_or_else variants used when fallbacks involve allocation (ok_or_else, unwrap_or_else)
let-else used for early returns on failure (let Ok(x) = expr else { return ... })
inspect_err used for error logging, map_err for error transformation
Traits and Types
Traits are minimal and cohesive (single responsibility)
derive macros appropriate for the type (Clone, Debug, PartialEq used correctly)
Newtypes used to prevent primitive obsession (e.g., struct UserId(Uuid) not bare Uuid)
From/Into implementations are lossless and infallible; TryFrom for fallible conversions
Sealed traits used when external implementations shouldn't be allowed
Default implementations provided where they make sense
Send + Sync bounds verified for types shared across threads
#[diagnostic::on_unimplemented] used on public traits to provide clear error messages when users forget to implement them
Methods on dyn-intended traits don't use Self by value, generic params, or associated constants (or are gated where Self: Sized)
New traits ship with blanket impls for &T, &mut T, Box<T> so reference and smart-pointer arguments work
Iterable types implement IntoIterator for &Self and &mut Self, not just Self
Deref only used for transparent forwarding, never as "inheritance" — inherent-method ambiguity is a real bug class
Fallible cleanup uses an explicit close()/shutdown() returning Result; Drop is best-effort fallback only
No block_on(...) or new runtime in Drop (deadlock under async runtimes)
Public types have a compile-time fn is_normal<T: Sized + Send + Sync + Unpin>() {} test so auto-trait regressions surface at build time
Re-exported foreign types in public API are flagged — downstream major bumps become this crate's breaking change
Getter methods follow the convention fn name(&self) not fn get_name(&self) (reserve get_* for Option-returning or interesting lookups)
as_* is cheap reference-to-reference, to_* may allocate, into_* consumes — verify the cost matches the prefix
Standard derives (Debug, Clone, Default, PartialEq, Eq, Hash) considered for every public type; Copy only when truly cheap and value-like (removing it later is breaking)
Types shared across threads have correct Send / Sync bounds; unsafe impl Send/Sync carries a comment naming the invariant
Each atomic operation pairs with a named happens-before edge (spawn/join, Release/Acquire on the same atomic, or a fence); Release publishes data, Acquire observes it
No SeqCst by default — only when two or more independent atomics need a single global total order, with a comment naming the requirement
No store(.., Acquire) / load(.., Release) / load(.., AcqRel) (rejected by the type half they occupy)
Relaxed not used to publish or observe non-atomic data (use Release / Acquire)
compare_exchange_weak used inside retry loops; strong compare_exchange reserved for one-shot updates; success ordering at least Acquire when acquiring a critical section
Hand-rolled spinlocks include std::hint::spin_loop() in the busy wait, exponential backoff, and an eventual thread::yield_now(); not used in normal user-space binaries without a documented reason a Mutex is unsuitable
Hand-rolled Arc clones with Relaxed, drops with Release + fence(Acquire) on the last decrement, and includes an overflow guard
Arc<Mutex<...>> cycles broken with Weak; Arc<Mutex<Copy>> reviewed for Arc<AtomicT> replacement
Hand-rolled lock-free primitives have a #[cfg(loom)] test module and a Miri-runnable test (no blanket cfg_attr(miri, ignore))
Naming and Style
Types are PascalCase, functions/methods snake_case, constants SCREAMING_SNAKE_CASE
Modules use snake_case
is_, has_, can_ prefixes for boolean-returning methods
Builder pattern methods take and return self (not &mut self) for chaining
Public items have doc comments (///)
#[must_use] on functions where ignoring the return value is likely a bug