performance-budget-checker

Detect performance anti-patterns in code and suggest fixes.

Updated Aug 27, 2026
One-click install
npx skills add https://github.com/MacroMan5/claude-code-workflow-plugins --skill performance-budget-checker
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: performance-budget-checker
Source: https://github.com/MacroMan5/claude-code-workflow-plugins/tree/main/.claude/skills/performance-budget-checker
Command: npx skills add https://github.com/MacroMan5/claude-code-workflow-plugins --skill performance-budget-checker

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Detects performance anti-patterns like N+1 queries, nested loops, large file operations, and inefficient algorithms. Suggests fast fixes before issues reach production.

Core Features & Use Cases

  • Anti-pattern detection: Quick checks for common performance killers.
  • Fix suggestions: Concrete improvements to optimize performance.
  • Use Case: Before production, scan code for performance issues and apply recommended changes.

Quick Start

Provide a code snippet with a potential performance issue and ask for optimization tips.

Frequently Asked Questions about performance-budget-checker

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I detect N+1 queries and other performance anti-patterns in my code?

Performance anti-pattern detection identifies N+1 queries, nested loops, inefficient file I/O, and data deserialization issues across databases and ORM frameworks. Submit code snippets to scan for these patterns and receive concrete optimization suggestions before production.

What performance issues can this tool catch during code review?

The tool detects performance killers including N+1 database queries, nested loops, large file operations, inefficient algorithms, and bandwidth-heavy data processing. It applies across database access, ORM patterns, file I/O, and deserialization tasks to catch issues early.

Can I use this for CI checks and pre-production analysis?

Yes, performance anti-pattern detection works throughout your development pipeline—during code reviews, CI checks, and pre-production analysis. It scans for optimization opportunities and suggests fixes like query optimization, pagination, streaming, and caching to meet performance budgets.

What quick fixes does this provide for latency and bandwidth issues?

Suggested fixes include query optimization, pagination, streaming for large data, and caching strategies. These address root causes like N+1 queries, nested loops, and inefficient data processing to reduce latency and bandwidth consumption.

Does this work with different database and ORM frameworks?

Performance anti-pattern detection applies across multiple databases and ORM query patterns. It identifies optimization opportunities regardless of your specific framework, focusing on universal performance killers like N+1 queries and nested loops.