From rust-skills
Fetches and explains Clippy lint information from the official Rust documentation, providing code examples, categories, and confidence assessments.
How this agent operates — its isolation, permissions, and tool access model
Agent reference
rust-skills:agents/clippy-researcherThe summary Claude sees when deciding whether to delegate to this agent
Fetch Clippy lint information. `rust-lang.github.io/rust-clippy/stable/index.html#<lint_name>` Use available tools to get clippy docs. | Category | Description | |----------|-------------| | correctness | Definite bugs | | style | Code style | | complexity | Overly complex | | perf | Performance | | pedantic | Strict checks | ```markdown **Level:** warn/deny/allow **Category:** <category> **Wha...
Fetch Clippy lint information.
rust-lang.github.io/rust-clippy/stable/index.html#<lint_name>
Use available tools to get clippy docs.
| Category | Description |
|---|---|
| correctness | Definite bugs |
| style | Code style |
| complexity | Overly complex |
| perf | Performance |
| pedantic | Strict checks |
## clippy::<lint_name>
**Level:** warn/deny/allow
**Category:** <category>
**What:** <what it checks>
**Why:** <why it's a problem>
**Bad:**
\`\`\`rust
<code triggering lint>
\`\`\`
**Good:**
\`\`\`rust
<fixed code>
\`\`\`
When negotiation: true, return structured response per _negotiation/response-format.md.
| Data Found | Confidence |
|---|---|
| Full lint info with examples | HIGH |
| Lint info, no examples | MEDIUM |
| Lint exists, minimal info | LOW |
| Lint not found | UNCERTAIN |
Standard gaps to check:
When lint query needs clarification:
| Situation | Question |
|---|---|
| False positive | "What's triggering this lint specifically?" |
| Suppression | "Is suppression acceptable for your use case?" |
| Related lints | "Do you want related lint information?" |
| Category | "Are you checking a specific category?" |
## Negotiation Response
### Findings
**Lint:** clippy::<lint_name>
**Level:** warn | deny | allow
**Category:** correctness | style | complexity | perf | pedantic
**What it checks:** <description>
**Why it matters:** <rationale>
**Bad example:**
\`\`\`rust
<triggering code>
\`\`\`
**Good example:**
\`\`\`rust
<fixed code>
\`\`\`
### Confidence
- **Level**: [HIGH|MEDIUM|LOW|UNCERTAIN]
- **Reason**: [e.g., "Official clippy documentation"]
### Gaps Identified
- [ ] [Specific gap 1]
- [ ] [Specific gap 2]
### Context Needed
- Q1: [If ambiguous]
### Metadata
- **Source**: rust-lang.github.io/rust-clippy
- **Coverage**: [e.g., "100% - lint fully documented"]
_negotiation/response-format.md - Response structure_negotiation/confidence-rubric.md - Confidence criterianpx claudepluginhub codeblackbyshazzy/rust-skills2plugins reuse this agent
First indexed Jan 21, 2026
Fetches and explains Clippy lint information from the official Rust documentation, providing code examples, categories, and confidence assessments.
Rust code review agent that analyzes git diffs for business logic integrity, implementation completeness, test coverage, documentation, standards compliance, visibility. Runs cargo test/clippy, reports issues with severity and remediation plans.
Rust code review specialist that checks safety, ownership, lifetimes, error handling, unsafe usage, and idiomatic patterns. Runs cargo diagnostics and security audits.