Agent skill
rust-performance-analyzer
Analyzes Rust code for performance bottlenecks, memory inefficiencies, and optimization opportunities. Use when discussing performance, slow code, memory usage, profiling, benchmarks, or optimization.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/development/rust-performance-analyzer
SKILL.md
Rust Performance Analyzer
Expert skill for analyzing and optimizing Rust application performance.
When to Use
Activate this skill when the user:
- Mentions "slow", "performance", "optimize", "bottleneck"
- Asks about memory usage or allocation patterns
- Wants to profile or benchmark code
- Reports laggy UI or frame drops
- Discusses cache efficiency or data layout
Analysis Process
1. Identify Hot Paths
Look for:
- Frequent allocations (
Vec::new(),String::new()in loops) - Unnecessary cloning (
.clone()where borrow would work) - Hash map lookups in tight loops
- Box/Arc indirection overhead
2. Memory Layout Analysis
Check:
- Struct field ordering (largest first for alignment)
- Use of
#[repr(C)]where needed - Option<T> niche optimization usage
- Cache line friendliness
3. Concurrency Patterns
Evaluate:
- Lock contention (
Mutex,RwLockusage) - parking_lot vs std sync primitives
- Atomic operations appropriateness
- Send/Sync bounds efficiency
4. FLUI-Specific Patterns
Focus on:
- Signal update frequency
- Rebuild triggering patterns
- Layout phase efficiency
- Paint layer caching
Optimization Techniques
Allocation Reduction
// Bad: Allocates on every call
fn process(items: &[Item]) -> Vec<ProcessedItem> {
items.iter().map(|i| process_one(i)).collect()
}
// Good: Reuse buffer
fn process_into(items: &[Item], buffer: &mut Vec<ProcessedItem>) {
buffer.clear();
buffer.extend(items.iter().map(|i| process_one(i)));
}
Clone Elimination
// Bad: Unnecessary clone
let data = self.data.clone();
process(&data);
// Good: Borrow directly
process(&self.data);
Interior Mutability
// Use RefCell/Cell for single-threaded
// Use parking_lot::{Mutex, RwLock} for multi-threaded
// Use atomics for simple counters/flags
Profiling Commands
# Build with debug symbols
cargo build --release
# CPU profiling (requires cargo-flamegraph)
cargo flamegraph --example <name>
# Memory profiling
RUSTFLAGS="-Z sanitizer=address" cargo +nightly run --example <name>
# Benchmarking
cargo bench
Output Format
Provide:
- Identified Issues: List of performance problems found
- Impact Assessment: Severity (High/Medium/Low)
- Optimization Suggestions: Specific code changes
- Metrics: Before/after estimates where possible
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?