ai-output-validation
Validates, parses, and sanitizes AI-generated outputs before they reach end users or downstream systems. Structured output enforcement, schema validation, and…
Measure first, optimize second. Data-driven performance improvements with before/after benchmarks and production validation.
$ npx -y skills add DevelopersGlobal/ai-agent-skills --skill performance-optimization --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/performance-optimizationContext preview
The summary Claude sees to decide when to auto-load this skill.
Measure first, optimize second. Data-driven performance improvements with before/after benchmarks and production validation.
name: performance-optimization description: Measure first, optimize second. Data-driven performance improvements with before/after benchmarks and production validation. category: review applies-to: [claude, gemini, cursor, copilot, any] version: 1.0.0
Premature optimization is the root of all evil. But ignoring performance until it's a crisis is equally harmful. This skill enforces data-driven optimization: profile first, optimize the bottleneck, measure the improvement.
1. Reproduce the performance issue reliably. 2. Measure current performance: latency p50/p95/p99, throughput, memory, CPU. 3. Profile to find the actual bottleneck — not where you think it is. 4. Write the performance test you'll use to validate improvement.
**Verify:** You have concrete baseline numbers, not gut feelings.
5. Use profiling tools: flame graphs, CPU profiles, memory profiles. 6. Find the top 3 hotspots by actual execution time (not lines of code). 7. The bottleneck is rarely where you expect it to be. Trust the data.
**Verify:** Bottleneck identified by profiling data, not assumption.
8. Fix only the profiled bottleneck — nothing else. 9. Common optimizations by type:
**Verify:** Change targets the profiled bottleneck, not speculative improvements.
10. Run the same performance test from Step 1. 11. Compare before vs. after metrics. 12. If improvement < 20%: the optimization may not be worth the complexity.
**Verify:** Improvement measured with the same test harness as baseline.
| Excuse | Rebuttal | |--------|----------| | "I know where the bottleneck is" | You're probably wrong. Profile first. | | "This is clearly slow" | "Clearly slow" rarely matches profiler output. Measure. | | "We'll optimize later" | If it's slow enough to mention, it's slow enough to measure now. |
AI agent skills for production grade applications
Validates, parses, and sanitizes AI-generated outputs before they reach end users or downstream systems. Structured output enforcement, schema validation, and…
Design stable, versioned, self-documenting APIs. Easy to use correctly, hard to use incorrectly. Apply Hyrum's Law from day one.
Automated quality gates from commit to production. Every merge to main is potentially shippable. No manual steps in the deployment path.
Get layered, context-aware explanations of unfamiliar code. Understand what it does, why it was written that way, and how to work with it safely.
Structured code review focusing on correctness, security, and maintainability. Correctness before style. Every reviewer comment must be actionable.
Load minimum necessary context into agent context windows. Prevents token bloat, reduces cost, and improves focus. Only load what the current task needs.