feat: add Rust language support to codebase-readiness#31
Merged
dgalarza merged 1 commit intodgalarza:mainfrom Mar 20, 2026
Merged
feat: add Rust language support to codebase-readiness#31dgalarza merged 1 commit intodgalarza:mainfrom
dgalarza merged 1 commit intodgalarza:mainfrom
Conversation
e20aa9a to
93c6831
Compare
93c6831 to
ada50bb
Compare
Add first-class Rust support to the codebase-readiness assessment plugin: - Create rust.md language reference with all 8 dimension sections covering ownership/borrow checker signals, cargo test detection, clippy/rustfmt tooling, and Rust-specific architecture patterns - Update recon.sh to detect Cargo.toml, count .rs source files, find clippy.toml/rustfmt.toml linter configs, and detect Rust integration tests - Add rust to SKILL.md supported languages list and README examples - Bump plugin version to 1.6.0
ada50bb to
03bc7d5
Compare
Owner
|
Thanks for adding! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
rust.mdlanguage reference covering all 8 assessment dimensions with Rust-specific signalsrecon.shto detectCargo.toml, count.rssource files, detect Rust integration tests intests/, and findclippy.toml/rustfmt.tomllinter configsDetails
Rust was already referenced in SKILL.md's weight tables as a statically-typed language but had no language reference file and wasn't detected by the reconnaissance script. This PR closes that gap.
The
rust.mdreference follows the exact section structure ofgo.md(both statically-typed with similar philosophies) and covers:unsafeblocks,unwrap()/expect()frequency,transmute/raw pointers,clippy::unwrap_usedlint detection, newtypes,#[must_use],From/Intoimpls,thiserror/snafu/anyhow/color-eyreerror handling#[cfg(test)]in-file tests,tests/integration tests, doc tests (///and//!),instasnapshot testing,proptest/criterion/mockall/rstestcargo clippy,cargo check,cargo-watch/bacon,cargo-audit,cargo-deny,cargo-nextestrustfmt.toml,clippy.toml,rust-toolchain.toml,deny.toml,#[deny(warnings)]anti-pattern detection,missing_docsenforcement, observability crate detection#[cfg(feature)],cargo-audit/cargo-deny, migration tools, MSRV policy, edition detection, toolchain pinningAll evidence commands use
grep -rE(ERE) for macOS/Linux portability and follow the unanchoredgrep -v target | grep -v .gitconvention used by all other language files.Test plan
quick_validate.pypasses:Skill is valid!rust.mdsection headers matchgo.mdexactly (zero diff)plugin.jsonandmarketplace.json\|alternation patterns (macOS-safe)bash scripts/recon.shin a Rust project to confirm detection