Agent Plugins Marketplace
All plugins

rust-ai-lean

v0.1.0

Spend fewer tokens on Rust: working rust-analyzer LSP, quiet cargo, outline/crate-src/diag tools, and a doctor that checks it all

Claude Code2 Skills

By enoqvLicense: MIT OR Apache-2.00 GitHub starsUpdated last week

Directory evidence

Runtimes
Claude Code
Parsed components
2 skill or MCP entries
Source updated
Sep 17, 2026
Manifest status
Canonical path parsed

The directory validates manifest shape and source location. It does not execute the plugin or provide a security endorsement. Review the indexing methodology

Install rust-ai-lean for Claude Code

Installs for the current user
claude plugin marketplace add IchenDEV/agent-plugin-mkt
claude plugin marketplace update agent-plugin-marketplace
claude plugin install rust-ai-lean@agent-plugin-marketplace

Paste and run these commands in a terminal with Claude Code. They add and refresh the PluginsMP catalog, then install this plugin.

The installer fetches third-party code from the source repository shown on this page. This directory validates manifest structure and source location, but does not perform a security audit; review the manifest, components, and source before installing.

Get the source manually
git clone https://github.com/enoqv/rust-ai-lean

Clone the source repository, then follow its setup instructions to add the plugin to a compatible client. The plugin root is plugin/.

Plugin files

plugin/
├── .claude-plugin/plugin.json
├── skills/doctor/SKILL.md
└── skills/rust-lean/SKILL.md

Included Skills2

doctorskills/doctor/SKILL.md

Check that rust-ai-lean works end to end in this project (rust-analyzer LSP, CLI, hooks, toolchain) and offer each fix one at a time.

rust-leanskills/rust-lean/SKILL.md

Use when working in a Rust or Cargo project - reading or navigating .rs code, looking up a dependency's API, fixing compile errors, or running cargo build, check, test, or clippy. Keeps token usage low without losing compiler detail.

Plugin manifests1

plugin/.claude-plugin/plugin.json
{
  "name": "rust-ai-lean",
  "version": "0.1.0",
  "description": "Spend fewer tokens on Rust: working rust-analyzer LSP, quiet cargo, outline/crate-src/diag tools, and a doctor that checks it all",
  "author": {
    "name": "enoqv"
  },
  "homepage": "https://github.com/enoqv/rust-ai-lean",
  "license": "MIT OR Apache-2.0",
  "lspServers": {
    "rust-analyzer": {
      "command": "sh",
      "args": [
        "-c",
        "if command -v rustup >/dev/null 2>&1; then ra=$(rustup which --toolchain stable rust-analyzer) || exit 1; else ra=$(command -v rust-analyzer) || exit 1; fi; exec \"$ra\"",
        "ra-launch"
      ],
      "extensionToLanguage": {
        ".rs": "rust"
      },
      "initializationOptions": {
        "cargo": {
          "targetDir": true
        },
        "checkOnSave": false
      }
    }
  }
}

If you maintain this plugin, link to this source-backed listing from your README so users can review its manifest and indexed components.

[rust-ai-lean on Agent Plugins Marketplace](https://pluginsmp.com/plugins/rust-ai-lean)