Claude Plugins Collection
A curated collection of specialized plugins for Claude Code CLI, designed to enhance development workflows with domain-specific expertise.
Overview
This repository contains plugins that extend Claude Code's capabilities with specialized agents, tools, and workflows for various development domains. Each plugin provides a set of expert agents tailored to specific aspects of software development.
Available plugins
Rust Agents Plugin (rust-code)

A comprehensive collection of specialized Rust development agents covering the entire Rust development lifecycle.
Location: ./rust-code
Key features:
- 11 specialized agents (opus/sonnet) for high-quality responses
- 7 productivity skills:
- rust-team — Multi-agent team orchestration with peer-to-peer communication
- rust-agent-handoff — Inter-agent context sharing
- rust-release — Automated release preparation
- readme-generator — Professional README generation
- mdbook-tech-writer — Technical documentation with mdBook
- sdd — Spec-Driven Development workflow
- fast-yaml — YAML validation, formatting, and conversion
- rust-analyzer LSP integration for real-time code intelligence
- Proactive triggers for automatic agent selection
- Rust Edition 2024 support
Agents included:
| Agent | Model | Specialization |
|---|
| rust-architect | opus | Workspace design, type-driven architecture, strategic decisions |
| rust-developer | sonnet | Idiomatic code, ownership patterns, feature implementation |
| rust-testing-engineer | sonnet | Test coverage with nextest and criterion |
| rust-performance-engineer | sonnet | Performance optimization, profiling, build speed |
| rust-security-maintenance | opus | Security scanning, vulnerability assessment, dependency management |
| rust-code-reviewer | sonnet | Quality assurance, standards compliance, code review |
| rust-cicd-devops | sonnet | GitHub Actions, cross-platform testing, workflows |
| rust-debugger | sonnet | Error diagnosis, runtime debugging, panic analysis |
| rust-critic | opus | Adversarial design critique, assumption stress-testing |
| sdd | sonnet | Spec-Driven Development, requirements, PRDs, task planning |
| rust-teamlead | sonnet | Team orchestrator for multi-agent collaborative development |
Best for: Rust projects requiring expert guidance in architecture, performance, security, testing, DevOps, or multi-agent team workflows.
→ Read full documentation
Installation
Quick start: Install from marketplace
The easiest way to install plugins is via the marketplace:
# Add the marketplace
claude plugin marketplace add bug-ops/claude-plugins
# Install the Rust agents plugin
claude plugin install rust-agents@claude-rust-agents
This method provides automatic updates and centralized plugin management.
Alternative: Install from local directory
For development or testing, install directly from a local path:
# Install from local directory
cd claude-plugins
claude plugin install ./rust-code
# Or specify full path
claude plugin install /path/to/claude-plugins/rust-code
Prerequisites
- Claude Code CLI installed and configured
- Appropriate toolchain for the plugin you're using
- Rust agents: Rust 1.85+ and rust-analyzer for LSP support
Usage
Once installed, agents from the plugins become available in Claude Code:
# Start Claude Code
claude
# View available agents
/agents
# Agents will be automatically suggested based on your task
Example workflow
User: "I want to create a new Rust web service with database integration"
Claude: → rust-architect designs the structure
→ rust-developer implements features
→ rust-testing-engineer sets up tests
→ rust-cicd-devops configures CI/CD
[!TIP]
Agents can delegate work to other agents using the handoff protocol, preserving context between transitions.
Repository structure
claude-plugins/
├── README.md # This file
├── .gitignore
├── .claude-plugin/
│ └── marketplace.json # Marketplace catalog
├── .local/ # Working documents and reports (gitignored)
├── rust-code/ # Rust Agents Plugin (includes team orchestration)
│ ├── README.md
│ ├── .claude-plugin/
│ │ └── plugin.json
│ ├── .lsp.json # rust-analyzer LSP configuration
│ ├── .devcontainer/
│ ├── agents/ # 11 specialist agents incl. rust-teamlead
│ └── skills/ # 7 skills incl. rust-team
└── [future-plugins]/ # Additional plugins
Marketplace