Showing 28 verified skills. 284 preview entries are hidden until we confirm a real source. Show preview skills · Why?
Get Rust type checking and cargo integration in your AI editor
claude install anthropics/claude-plugins-official/rust-analyzer-lspRust Analyzer integration for real-time type checking, inline hints, cargo command support, and refactoring tools.
This is the actual SKILL.md file that powers this skill. Copy it to install.
---
name: rust-analyzer-lsp
description: |
Rust language server for type checking and cargo integration. Always active
when working in Rust projects. Runs cargo check after edits.
allowed-tools:
- Bash(cargo check *)
- Bash(cargo clippy *)
- Bash(cargo test *)
- Bash(cargo build *)
- Read
- Glob
---
# Rust Analyzer LSP
Type checking, linting, and build verification for Rust projects. Runs
cargo commands after edits to catch errors before they compound.
## Workflow
1. After editing a .rs file, run `cargo check` on the project
2. If warnings exist, run `cargo clippy` for deeper analysis
3. Fix issues and re-check until clean
4. Run relevant tests with `cargo test`
## Commands
```bash
# Quick type check (fastest feedback)
cargo check
# Linting with Clippy
cargo clippy -- -W clippy::all
# Run tests
cargo test
# Build in release mode
cargo build --release
```
## Example usage
- "Check if my Rust code compiles"
- "Run clippy and fix all warnings"
- "What type errors do I have?"
## Requirements
- Rust toolchain (rustup)
- cargo and clippy installed
mkdir -p ~/.claude/skills/rust-analyzer-lsp~/.claude/skills/rust-analyzer-lsp/SKILL.mdResulting file structure:
~/.claude/
skills/
rust-analyzer-lsp/
SKILL.md <-- skill definitionSkills are loaded automatically by Claude Code when you start a new session. The skill name and description in the frontmatter determine when Claude triggers it.
Recommended from shared domain, career, and tool overlap with Rust Analyzer LSP
Query databases, inspect schemas, and explore data from your AI editor
Both used by Software Engineer
Inspect Redis keys, TTLs, and cache hit rates from your AI editor
Both used by Software Engineer
Query Sentry errors and analyze stack traces from your AI editor
Both used by Software Engineer
Manage Stripe payments and subscriptions from your AI assistant
Both used by Software Engineer
Manage Supabase databases, auth, and storage from your editor
Both used by Software Engineer
Control a browser from your AI editor - navigate, screenshot, interact
Both used by Software Engineer
Rust Analyzer LSP