What problem does it solve? Dependabot PRs that bump Rust dependencies can silently introduce supply-chain risks such as malicious build scripts, new unsafe code, or yanked releases, and manually diffing every crate update is slow and error-prone. ## Core Features & Use Cases - Security-focused tarball diffing: Downloads both published crates.io tarballs, verifies SHA-256 checksums against crates.io metadata, and diffs the full source between versions. - Multi-dependency coordination: Splits large Dependabot PRs into per-dependency review units, delegates each to a sub-agent, and posts a roll-up merge recommendation. - Structured review comments: Posts evidence-backed PR comments covering checksums, release age, yanked status, risky code changes, and a clear OK to merge / not OK to merge verdict. - Use Case: A Dependabot PR bumps three crates in Cargo.lock; the Skill reviews each crate's tarball diff for new build.rs logic, unsafe code, or network access, then posts per-crate comments and a final merge recommendation. ## Quick Start Review the open Dependabot PRs in this repository that update Cargo dependencies and post a security review comment on each one.