Skip to content
Merged
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 toolkit with cargo check integration"
version = "0.1.0"
author = "CodeWhale Team"

[skills]
path = "skills"

[when]
os = ["windows", "linux", "macos"]
binaries = ["cargo"]
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
---
name: rust-check
description: Run cargo check on the current Rust project to find compile errors
---

Use this skill when you need to check for Rust compile errors.

**How to use:**
1. Run `cargo check` in the project root
2. Analyze the output for errors and warnings
3. Fix any issues found

**Example:**
```bash
cargo check --all-targets
```

This skill is part of the rust-toolkit plugin.
Loading
Loading