rust-release — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited rust-release (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Cut a versioned release of a Rust workspace crate.
$ARGUMENTS = new version (e.g. 0.3.6) and optionally the workspace path.
bash ~/.claude/commands/rust-release/scripts/bump-version.sh --currentbash ~/.claude/commands/cargo-check/scripts/check.shEdit Cargo.toml in the workspace root: change version = "X.Y.Z" to the new version. Also update any workspace member Cargo.toml files that inherit the version.
bash ~/.claude/commands/rust-release/scripts/bump-version.sh NEW_VERSIONAdd a new ## [NEW_VERSION] - YYYY-MM-DD section at the top. Summarize commits since last tag:
git log --oneline $(git describe --tags --abbrev=0)..HEADGroup as: Added, Changed, Fixed, Removed. Be concise.
git add Cargo.toml Cargo.lock CHANGELOG.md
git commit -m "chore: release vNEW_VERSION"
git tag vNEW_VERSION
git push origin main --tagsgit tag | tail -5
cargo metadata --no-deps | python3 -c "import json,sys; m=json.load(sys.stdin); print(m['packages'][0]['version'])"~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.