Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions crates/tui/assets/plugins/rust-toolkit/plugin.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
[plugin]
name = "rust-toolkit"
description = "Rust development tools: cargo check, clippy, and test runner"
version = "1.0.0"
default_enabled = false

[skills]
paths = ["skills/rust-check/"]

[when]
os = ["linux", "windows", "macos"]
required_binaries = ["cargo"]
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
---
name: rust-check
type: check
when_to_use: Check Rust code compilation and clippy linting
argument_hint: "[file or directory to check]"
allowed_tools: ["read_file", "exec_shell:check-only"]
---

# rust-check — Rust code quality check

Run `cargo check` and `cargo clippy` on the specified Rust project or file.

1. If given a file path, run `cargo check` in the crate containing that file
2. If given a directory, run `cargo check` in that directory
3. If no path is given, check the current project
4. Report any compilation errors or clippy warnings
Loading
Loading