verification-loop

Automate Rust build, lint, test, and security checks with cargo.

2|Updated Apr 14, 2026
One-click install
npx skills add https://github.com/klu-dev/porting-ecc-to-vscode --skill verification-loop-klu-dev
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: verification-loop
Source: https://github.com/klu-dev/porting-ecc-to-vscode/tree/main/.github/skills/verification-loop
Command: npx skills add https://github.com/klu-dev/porting-ecc-to-vscode --skill verification-loop-klu-dev

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill ensures your code quality by automating the comprehensive verification process, providing peace of mind before your pull request is created.

Core Features & Use Cases

  • Build Verification: Automatically runs cargo check and cargo build to ensure the build is stable.
  • Lint Check: Conducts a cargo clippy analysis to flag code smells and potential bugs.
  • Test Suite: Executes all tests defined in the project.
  • Security Scan: Identifies security issues with cargo audit.
  • Diff Review: Provides a summary of changes for review.

Quick Start

Execute the verification-loop command to automatically verify your code before submission.

Frequently Asked Questions about verification-loop

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

FAQPage Schema
How do I automate Rust code verification for continuous integration?▼

Automate Rust code verification by sequentially running cargo check, cargo build, cargo clippy, and cargo audit to validate build stability, linting, tests, and security before pull request submission.

What does a complete Rust pull request verification process include?▼

A complete Rust pull request verification process includes build verification, lint checks via cargo clippy, executing the test suite, running a security scan with cargo audit, and generating a diff review summary.

Can I run cargo clippy and cargo audit together for code quality checks?▼

Yes, you can run cargo clippy and cargo audit together to identify code smells, potential bugs, and security vulnerabilities automatically, ensuring comprehensive code quality and security before integration.

Do I need a Rust environment to run automated build and security scans?▼

Yes, you need a configured Rust environment with cargo dependencies installed to execute the automated build checks, linting, testing, and security scanning processes effectively.

Why run cargo audit during the build process?▼

Run cargo audit during the build process to automatically identify security vulnerabilities in dependencies, ensuring your Rust code meets security standards before creating a pull request.

What is the best way to check Rust code stability before a pull request?▼

The best way to check Rust code stability is automating cargo check and cargo build commands to ensure the compilation is stable, alongside running tests and lint analysis.