agentsclimarketplace

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.

Install
npx -y skills add saitarrun/sdlc-ai-workflow --skill skill-performance-optimization

Assembled 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

  1. Establish Baselines — Measure current performance (latency, throughput, memory, CPU)
  2. Profile — Identify where time/resources are spent (flame graphs, traces, logs)
  3. Find Bottlenecks — Rank by impact (80/20 rule: fix the top bottlenecks first)
  4. Optimize — Apply targeted fixes (algorithm, caching, parallelization, resource allocation)
  5. Verify — Re-measure to confirm improvements
  6. 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

  1. Algorithmic: Better algorithm selection
  2. Caching: Reduce computation, add layer caching
  3. Async: Non-blocking operations, parallelization
  4. Resource Allocation: CPU, memory, connections tuning
  5. Infrastructure: Scaling, CDN, geographic distribution
  6. 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.

Keep looking

Skills are one crate of 326,984. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.