rust-release

rust-release is a skill for Claude Code, Codex from woliveiras/geremmyas. It costs 41 tokens per session (1,237 once invoked), scanned A, original, MIT.

A workflow for preparing and distributing Rust software, including libraries called crates and compiled command-line programs or services.

In plain words
What is it for?
It helps publish crates, automate releases, detect breaking API changes, create version updates and changelogs, and build binaries for different systems.
Why use it?
It organizes versioning, compatibility checks, release notes, builds, and publishing so releases are less error-prone.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit It helps publish crates, automate releases, detect breaking API changes, create version updates and changelogs, and build binaries for different systems.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/woliveiras/geremmyas/rust-release
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add woliveiras/geremmyas --skill rust-release
Clone the repo
git clone --depth 1 https://github.com/woliveiras/geremmyas

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for rust-release

README.md
[![agentmods](https://agentmods.dev/badge/skills/woliveiras/geremmyas/rust-release/github.svg)](https://agentmods.dev/skills/woliveiras/geremmyas/rust-release)
Your own site
<a href="https://agentmods.dev/skills/woliveiras/geremmyas/rust-release"><img src="https://agentmods.dev/badge/skills/woliveiras/geremmyas/rust-release/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for rust-release

Your own site · 80×15
<a href="https://agentmods.dev/skills/woliveiras/geremmyas/rust-release"><img src="https://agentmods.dev/badge/skills/woliveiras/geremmyas/rust-release.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 41 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,237 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00041 $0.01237
Opus 5 $0.00020 $0.00619
Sonnet 5 $0.00008 $0.00247
Haiku 4.5 $0.00004 $0.00124

Measured 9d ago against content hash 4ffb14bb8d81, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

rust-release scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

content/skills/rust-release/SKILL.md · 175 lines

How it starts

The opening of the file, as written. The whole thing — 175 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Rust Release Engineering

Workflow for versioning, publishing, and distributing Rust crates and binaries. Local release preparation and dry-runs are autonomous. Tagging, pushing, publishing, uploading, or production deployment requires explicit user authorization for that operation.

When to Use

  • Publishing a library crate to crates.io
  • Setting up automated release pipelines
  • Distributing compiled binaries (CLI tools, services)
  • Managing changelogs and SemVer bumps
  • Cross-compiling for multiple targets

Library Crate Release

Tools

Tool Purpose
release-plz Automated PR with version bump, changelog, and publish
cargo-release Manual release with validation, tagging, and push
cargo-semver-checks Detect accidental breaking changes

Process

  1. Ensure Cargo.toml has complete metadata: description, license, repository, keywords, categories, rust-version.
  2. Run cargo semver-checks to detect unintentional breaking changes.
  3. Update version following SemVer:
    • MAJOR: breaking public API changes
    • MINOR: new public functionality, backward-compatible
    • PATCH: bug fixes only
  4. Update CHANGELOG.md (or let release-plz generate it).
  5. Run full CI (fmt, clippy, test, doc).
  6. Tag the release: vX.Y.Z.
  7. Publish: cargo publish --dry-run then cargo publish.

release-plz Automation

# .github/workflows/release.yml
name: release

on:
  push:
    branches: [main]

jobs:
  release-plz:
    runs-on: ubuntu-latest
    permissions:
      contents: write
      pull-requests: write
    steps:
      - uses: actions/checkout@v4
        with:
          fetch-depth: 0
      - uses: dtolnay/rust-toolchain@stable
      - uses: MarcoIeni/[email protected]
        env:
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
          CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}

cargo yank

  • Removes a version from the index for new resolves
  • Does NOT delete the published artifact
  • Use for broken versions, not for "un-publishing"

Read the full file on GitHub · 175 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 175 lines · 41 tokens per session scan A 4ffb14bb8d81

Subscribe to this mod's changes

rust-release is a skill published in the GitHub repository woliveiras/geremmyas (10 stars, last pushed 1mo ago), licensed MIT. It adds 41 tokens to every session and 1,237 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories