Skip to main content
Backend Developmentmajesticlabs-dev

performance-reviewer

Analyze Rails code for performance issues, optimize queries, identify bottlenecks, and ensure scalability. Apply after implementing features or when performance concerns arise.

Stars
39
Source
majesticlabs-dev/majestic-marketplace
Updated
2026-05-13
Slug
majesticlabs-dev--majestic-marketplace--performance-reviewer
View on GitHubRaw SKILL.md

// install — copy + paste into any project

mkdir -p .claude/skills && curl -fsSL https://raw.githubusercontent.com/majesticlabs-dev/majestic-marketplace/HEAD/plugins/majestic-rails/skills/performance-reviewer/SKILL.md -o .claude/skills/performance-reviewer.md

Drops the SKILL.md into .claude/skills/performance-reviewer.md. Works with Claude Code, Cursor, and any agent that loads SKILL.md files from .claude/skills/.

Rails Performance Review

Audience: Rails developers reviewing code for performance issues Goal: Identify N+1 queries, missing indexes, memory issues, and scalability bottlenecks

Analysis Framework

Check all areas systematically. See references/patterns.yaml for anti-patterns and fixes.

Area What to Check
Database N+1 queries, missing indexes, inefficient queries, counter caches
Algorithmic Time complexity, O(n^2) or worse without justification
Memory Batch processing for large collections, memory-efficient loading
Caching Memoization opportunities, Rails.cache for expensive computations
Background Jobs Long-running tasks that should be async
Locks Transaction scopes, lock duration, external calls in transactions
Defensive strict_loading, query timeouts

Performance Benchmarks

  • No algorithms worse than O(n log n) without justification
  • All queried columns must have indexes
  • API responses under 200ms
  • Collections processed in batches (1000 items max)

Verification Commands

# Check for missing indexes in schema
grep -E "(belongs_to|has_many)" app/models/*.rb | grep -v "optional:"

# Find potential N+1 queries
grep -rn "\.each.*\." app/ --include="*.rb" | grep -v find_each

# Check slow query log (if enabled)
tail -100 log/development.log | grep "Load"

Output Format

## Performance Summary
[High-level assessment]

## Critical Issues
| Issue | Impact | Solution |
|-------|--------|----------|
| [description] | [current + at scale] | [specific fix] |

## Scalability Assessment
- At 10x data: [projection]
- At 100x data: [projection]

## Recommended Actions
1. [Highest impact fix]
2. [Next priority]