full-stack-skills/rust-skills

rust-crate-discovery

Discover, evaluate, score, and compare Rust crates for adoption — search crates.io, fetch metadata from 4 sources (crates.io API, docs.rs, GitHub API, RustSec advisory DB), apply a weighted 0-100 scoring model across adoption/maintenance/documentation/matur…

Ver código fuente
Documento original del Skill

Contenido del repositorio de origen con títulos, ejemplos, código, tablas, enlaces e imágenes preservados.

Rust Crate Discovery and Evaluation

Authority: crates.io API, docs.rs, GitHub REST API, RustSec Advisory Database.

This skill owns the discovery + evaluation phase before a crate enters your Cargo.toml. It uses a bundled Python tool (scripts/crate_eval.py) to fetch signals from 4 sources and produce a weighted 0-100 score with a letter grade (A/B/C/D/F), red-flag list, and a recommendation. It does not own post-adoption governance (rust-dependencies), manifest mechanics (rust-cargo-build), or semver (rust-semver).

Capability Boundaries

✅ Strengths

  1. Search crates.io by keyword, category, or name — returns ranked candidates
  2. Evaluate a single crate in depth: fetch metadata from crates.io + docs.rs + GitHub + RustSec
  3. Compare 2+ crates side-by-side with subscore breakdown
  4. Score each crate 0-100 across 6 dimensions: adoption (30), maintenance (25), documentation (15), maturity (15), community (10), license (5)
  5. Flag red concerns: stale, advisories, no docs, low adoption with churn, single-maintainer bus factor, no source repo, license missing
  6. Recommend the best fit, surfacing blocking concerns before the user adopts
  7. Output as human-readable report or machine-readable JSON (for agent consumption)

⚠️ Prerequisites

  1. Network access (the tool fetches from crates.io, docs.rs, GitHub, RustSec)
  2. Python 3.9+ (no external pip packages — stdlib only)

❌ Out of Scope

  1. Post-adoption governance (cargo-deny config, license policy, advisory response workflow) → rust-dependencies
  2. Cargo.toml field semantics → rust-cargo-build
  3. Semver and breaking-change classification → rust-semver
  4. Which std type to use instead of a crate → rust-stdlib

Data Privacy

This skill makes outbound HTTP requests to crates.io, docs.rs, GitHub, and RustSec. The User-Agent identifies the tool. No user data is collected or transmitted beyond the crate name in the URL path (which is public registry data). For private/proprietary crate names, prefer manual review.


The Evaluation Tool — scripts/crate_eval.py

A stdlib-only Python script. Three subcommands:

bash
# Search candidates
python3 scripts/crate_eval.py search "orm"
python3 scripts/crate_eval.py search "http client" --limit 5
python3 scripts/crate_eval.py search "logging" --category "development-tools::debugging"

# Evaluate one crate in depth
python3 scripts/crate_eval.py eval rbatis
python3 scripts/crate_eval.py eval rbatis --json          # machine-readable
python3 scripts/crate_eval.py eval rbatis -v              # show raw signals
python3 scripts/crate_eval.py eval rbatis --skip-github   # faster, less signal

# Compare multiple candidates
python3 scripts/crate_eval.py compare rbatis diesel sea-orm sqlx

Workflow

  1. Searchsearch "<domain keyword>" to surface candidates. Inspect the top 5-10 by downloads and recency.
  2. Shortlist — pick 2-4 names with non-trivial adoption (≥1k downloads) and recent activity.
  3. Comparecompare <names...> to get the side-by-side scorecard.
  4. Investigate red flags — for the top pick, read the red-flag list. Block on security advisories; investigate stale or single-maintainer concerns.
  5. Verify fit — the score measures health, not fitness. Read the crate's docs, check its API shape (rust-api-design lens), confirm it covers your use case.
  6. Hand off — once adopted, set up cargo-deny (rust-dependencies) and pin version policy (rust-semver).

Reading the output

=== rbatis === A (92/100) — RECOMMENDED — strong fit, low risk
  version 4.9.6  |  657,356 downloads (19,938 recent)  |  license: Apache-2.0
  Subscores:
    adoption        █████████████░░░░░░░░░░░░  27/30
    maintenance     ████████████░░░░░░░░░░░░░  25/25
    ...
  Red flags:
    ! license not declared
  • Grade + score — at-a-glance health
  • Subscores — which dimensions are strong/weak
  • Notes (+) — positive signals
  • Red flags (!) — concerns to investigate before adopting
  • Recommendation — verdict (RECOMMENDED / LIKELY SUITABLE / ACCEPTABLE / CAUTION / BLOCK / RISKY)

Scoring Model

DimensionMaxWhat it measuresKey signals
Adoption30Is anyone using this?all-time downloads, recent (90-day) downloads
Maintenance25Is it actively maintained?last crates.io update, version count, GitHub last commit
Documentation15Can users learn it?docs.rs build, description, docs URL, repo link
Maturity15Is the API stable?age, stable version ≥1.0, has repo
Community10Is there a contributor base?GitHub stars, contributors
License5Is it permissive?permissive (MIT/Apache/BSD) preferred; copyleft penalized
Total100

Grade bands

GradeScoreMeaning
A≥85Excellent — recommended
B70-84Good — likely suitable
C55-69Acceptable — verify fit
D40-54Risky — investigate before use
F<40Avoid — significant concerns

See references/scoring-rubric.md for the full formula and signal weights.


Red Flags Catalog

The tool surfaces specific concerns. Always read these before adopting.

FlagSeverityAction
RustSec advisoryBlockPin to fixed version or pick alternative
No release in >12 monthsHighCheck if abandoned; consider fork or alternative
Last GitHub commit >6 monthsHighActivity may have moved elsewhere
No docs.rs buildMediumAPI docs may be missing; check manually
License not declaredMediumTreat as proprietary; cannot use without clarification
Low adoption with many versionsMediumChurn without traction; investigate quality
Pre-1.0 with 20+ versionsMediumAPI likely unstable across minor bumps
Single maintainer + low adoptionMediumBus factor risk; consider backing up or forking
No source repositoryHighCannot audit; avoid

See references/red-flags.md for the full catalog and decision guidance.


Decision Shortcuts

QuestionAnswer
Which crate for X?search "X", then compare top 3-4
Is this crate safe?eval <name>; check red flags for advisories
Is it maintained?eval <name>; check maintenance subscore + last update
Is the API stable?eval <name>; check maturity subscore + version ≥1.0
What's the license?eval <name>; appears in signals
A vs B vs C?compare A B C; pick highest score without blocking red flags
Score says A but it doesn't fit my use caseTrust the fit check over the score — score measures health, not fitness

When the score is misleading

  • Niche crates — a domain-specific crate may have low downloads but be the only option. Score will understate; rely on manual review.
  • New crates — recent releases have low adoption signals; check maintainer track record instead.
  • Forks — a fork may have few downloads but be the maintained successor. Check the parent crate's status.
  • Internal/private crates — not on crates.io; this tool won't help. Use manual review.

Resources

Upstream Sources

del mismo repositorio

Más Skills

Todos los Skills
full-stack-skills
Comunidad

rust-api-design

Design Rust library APIs that follow the Rust API Guidelines — naming (C-CASE, C-CONV, C-GETTER), interop traits (C-COMMON-TRAITS, C-CONVERT, C-ITER, C-SERDE), predictability (C-INTUITIVE, C-CONST), flexibility (C-GENERIC, C-NEWTYPE, C-EXT), type safety (C-BOOL, C-NONZERO, C-WRAPPER, C-STR), dependability (C-PANIC, C-UNWRAP), debuggability (C-DEBUG), and future-proofing (C-SEALED, C-STRUCT-FIELD, C-NON-EXHAUSTIVE). Use when users design a public crate API, choose between generics/concrete/newtype, decide trait bounds, hide implementation, avoid breakage, or ask "what is idiomatic Rust API design"; hand semver and publish workflow to rust-semver, lint config to rust-style-clippy, and in-crate layout to rust-module-layout.

instalaciones
1
GitHub Stars
5
Actualizado
19 sept
full-stack-skills
Comunidad

rust-by-example

Show Rust patterns through short compilable examples — type conversions (From/Into/TryFrom/as/Deref), flow control (if let/while let/match/loop), functions and closures (Fn/FnMut/FnOnce, captures), modules (mod/use/pub/super/self), generics and traits (bounds/associated types/trait objects), error handling (?/Result/thiserror/anyhow), attributes (derive/cfg/inline/allow), unsafe (raw pointers/unions/ABI), procedural macros (derive/attribute/function-like), and inline asm. Use when users ask "how do I write X in Rust", need a concrete pattern with copy-pasteable code, or are migrating from Java/Python/Go/C++ and want the Rust equivalent; hand architecture decisions to rust-api-design/rust-workspace, std API selection to rust-stdlib, and async runtime to rust-concurrency.

instalaciones
1
GitHub Stars
5
Actualizado
19 sept
full-stack-skills
Comunidad

rust-cargo-build

Configure, operate, diagnose, and automate Cargo for Rust packages and workspaces. Cover manifests and targets, commands, dependency resolution and features, profiles, build scripts, configuration and environment variables, caches and build diagnostics, cross-compilation, registries, packaging, publishing, metadata, CI reproducibility, and stable-versus-nightly feature gates. Use for Cargo.toml, Cargo.lock, .cargo/config.toml, cargo build/check/run/tree/metadata/package/publish, resolver or feature problems, build output and performance, private registries, and beginner Cargo workflows. Route crate selection and supply-chain audits to rust-dependencies, workspace topology to rust-workspace, test design to rust-testing, documentation design to rust-documentation, lint policy to rust-style-clippy, and API compatibility decisions to rust-semver.

instalaciones
1
GitHub Stars
5
Actualizado
19 sept
full-stack-skills
Comunidad

rust-cli

Design, implement, test, and release production Rust command-line applications, including command contracts, subcommands, configuration precedence, stdin/stdout/stderr, exit codes, file safety, daemon IPC, terminal handling, packaging, and process-level tests. Use when users ask for a Rust CLI, command parser, clap integration, Unix-style pipelines, daemon clients, PTY/TUI behavior, shell completion, or CLI release engineering.

instalaciones
1
GitHub Stars
5
Actualizado
19 sept