Rust Development Workflow

Runs cargo build, test, clippy, and fmt on a workspace.

Updated Aug 23, 2026
One-click install
npx skills add https://github.com/customer-cloud-club/meeting-visualizer --skill rust-development-workflow-customer-cloud-club
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: Rust Development Workflow
Source: https://github.com/customer-cloud-club/meeting-visualizer/tree/main/.claude/skills/rust-development
Command: npx skills add https://github.com/customer-cloud-club/meeting-visualizer --skill rust-development-workflow-customer-cloud-club

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Provides a comprehensive workflow for building, testing, and ensuring Rust code quality, including cargo check/build/test, clippy, and fmt.

Core Features & Use Cases

  • Fast feedback with cargo check: Quick validation during development.
  • Workspace-wide verification: Full build and tests across workspace.
  • Code quality: Clippy checks and formatting.

Quick Start

Run the recommended sequence: cargo build --workspace && cargo test --workspace --all-features && cargo clippy --workspace --all-targets --all-features -- -D warnings && cargo fmt --all -- --check