regression

Run cargo test, cargo clippy, and mdbook build to detect regressions.

Updated Aug 27, 2026
One-click install
npx skills add https://github.com/pcortellezzi/rs_trader --skill regression
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: regression
Source: https://github.com/pcortellezzi/rs_trader/tree/main/.claude/skills/regression
Command: npx skills add https://github.com/pcortellezzi/rs_trader --skill regression

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill standardizes the process of validating code health by running tests, linting, and documentation builds to detect regressions and ensure compatibility across changes.

Core Features & Use Cases

  • End-to-end quality checks: Executes cargo test, cargo clippy, and mdbook build to catch regressions early.
  • CI-friendly workflow: Integrates into CI pipelines to provide clear pass/fail signals and detailed reports.
  • Documentation assurance: Verifies that docs build without errors to maintain user-facing documentation.

Quick Start

Run the regression check workflow in your Rust project to verify there are no regressions.

Frequently Asked Questions about regression

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I run cargo test, clippy, and documentation checks together to detect Rust regressions?

To detect Rust regressions, run a combined health suite that executes cargo test, cargo clippy, and mdbook build simultaneously, reporting pass or fail signals and highlighting specific failures across code and documentation.

What is automated regression testing for Rust projects?

Automated regression testing for Rust projects is the process of executing tests, linting, and documentation builds to detect code stability issues and ensure compatibility across changes before they reach production.

Can I integrate cargo clippy and mdbook build checks into my CI pipeline?

Yes, you can integrate cargo clippy and mdbook build checks into CI pipelines to verify code stability, providing clear pass or fail signals and detailed reports for documentation integrity and linting failures.

Does Rust regression testing verify that mdbook documentation builds without errors?

Yes, Rust regression testing verifies that mdbook documentation builds without errors by running documentation checks alongside cargo test and cargo clippy to maintain user-facing documentation integrity.

What is the best way to ensure documentation integrity during local Rust development?

The best way to ensure documentation integrity during local Rust development is running mdbook build alongside cargo test and cargo clippy to catch documentation regressions and verify code stability across changes.