Skill performance optimization
Skill saitarrun/sdlc-ai-workflow/skills/skill-performance-optimization
A comprehensive Claude Code plugin that automates the complete Software Development Lifecycle with 20 role-specific agents, 12 knowledge skills, and 8 commands, all guided by principles.
npx -y skills add saitarrun/sdlc-ai-workflow --skill skill-performance-optimizationAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 2 stars2 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Profile systems, identify bottlenecks, optimize code and infrastructure for speed, throughput, and resource efficiency.
SKILL.md
1.9 KB, 388 tokens by cl100k_base, as published. Nobody here has run it
Skill: Performance Optimization
Systematic approach to identifying and eliminating performance bottlenecks through profiling, benchmarking, and data-driven optimization.
Process
- Establish Baselines — Measure current performance (latency, throughput, memory, CPU)
- Profile — Identify where time/resources are spent (flame graphs, traces, logs)
- Find Bottlenecks — Rank by impact (80/20 rule: fix the top bottlenecks first)
- Optimize — Apply targeted fixes (algorithm, caching, parallelization, resource allocation)
- Verify — Re-measure to confirm improvements
- Prevent Regressions — Add performance tests, monitoring, budgets
Key Metrics
- Latency: p50, p95, p99 response time
- Throughput: Requests per second, transactions per minute
- Resource Usage: CPU %, memory consumption, disk I/O
- Cost: Infrastructure cost per unit work
Common Bottlenecks
- Inefficient algorithms (O(n²) instead of O(n log n))
- Missing indexes on database queries
- Synchronous operations that should be async
- Excessive logging or serialization
- Memory leaks or inefficient data structures
- Network calls without batching/caching
- Single-threaded workloads that could parallelize
Optimization Strategies
- Algorithmic: Better algorithm selection
- Caching: Reduce computation, add layer caching
- Async: Non-blocking operations, parallelization
- Resource Allocation: CPU, memory, connections tuning
- Infrastructure: Scaling, CDN, geographic distribution
- Monitoring: Real-time alerting on perf regressions
Status: Ready for profiling, optimization, and performance tuning Best for: Latency reduction, throughput improvement, resource efficiency
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.