type-check

Run cargo check to detect Rust type and compile errors.

1|Updated Dec 21, 2025
One-click install
npx skills add https://github.com/DIO0550/d-market --skill type-check-dio0550
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: type-check
Source: https://github.com/DIO0550/d-market/tree/main/plugins/rust-workflow-plugin/skills/type-check
Command: npx skills add https://github.com/DIO0550/d-market --skill type-check-dio0550

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill ensures Rust codebases are checked for type and compilation errors by invoking cargo check via a deterministic agent, avoiding ad-hoc Bash commands.

Core Features & Use Cases

  • Enforces cargo check usage to detect type errors and compilation failures during development and CI.
  • Generates actionable reports highlighting error messages, locations, and suggested fixes.
  • Integrates with development workflows to verify build health before merges and releases.

Quick Start

Run cargo check on your Rust project using the Task agent to perform type and compile checks.

Frequently Asked Questions about type-check

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

FAQPage Schema
How do I run a Rust type check to catch compile errors in my project?

You can check Rust type errors by running cargo check through the Task agent. This Skill automates that process, scanning your project and generating a structured diagnostic report that highlights error messages, code locations, and suggested fixes.

What is the best way to automate Rust build health checks in CI?

Automating Rust build health checks in CI is done by enforcing cargo check usage. This Skill applies deterministic checks during development and continuous integration, returning structured diagnostic reports to verify build correctness before merges and releases.

Why should I use cargo check instead of ad-hoc Bash commands for type checking?

You should use cargo check instead of ad-hoc Bash commands to ensure deterministic and reliable type checking. This Skill enforces cargo check execution, avoiding manual scripts and providing structured diagnostic reports for accurate error detection in Rust projects.

Does this Rust type checker provide suggested fixes for compilation errors?

Yes, this Rust type checker provides suggested fixes for compilation errors. It generates actionable diagnostic reports that highlight specific error messages, code locations, and recommended corrections to help resolve type and compile issues.

When do I need to run a cargo check for code reviews?

You need to run a cargo check for code reviews to ensure code correctness and build health before merging changes. This Skill applies type and compile checks during reviews, identifying errors early and returning structured diagnostic reports for actionable feedback.

Can I use this Skill to verify build health before releases?

Yes, you can use this Skill to verify build health before releases. It enforces cargo check execution to detect type and compilation errors, integrating directly into your development workflow to ensure Rust code correctness prior to releases.