Agent skill · Databases

optimizing-performance

Analyzes and optimizes application performance across frontend, backend, and database layers. Use when diagnosing slowness, improving load times, optimizing queries, reducing bundle size, or when asked about performance issues.

CloudAI-Xgithub.com/CloudAI-XGitHub ↗
claude-codecodexcursorMIT
Install
npx skills add CloudAI-X/claude-workflow-v2 --skill optimizing-performance --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 6 KB
Bundled scripts: none
Path: skills/optimizing-performance/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 1,397
Language: Python

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Optimizing Performance ### When to Load - **Trigger**: Diagnosing slowness, profiling, caching strategies, reducing load times, bundle size optimization - **Skip**: Correctness-focused work where performance is not a concern ## Performance Optimization Workflow Copy this checklist and track progress: ``` Performance Optimization Progress: - [ ] Step 1: Measure baseline performance - [ ] Step 2: Identify bottlenecks - [ ] Step 3: Apply targeted optimizations - [ ] Step 4: Measure again and compare - [ ] Step 5: Repeat if targets not met ``` **Critical Rule**: Never optimize without data. Always profile before and after changes. ## Step 1: Measure Baseline ### Profiling Commands ```bash # Node.js profiling node --prof app.js node --prof-process isolate*.log > profile.txt # Python profiling python -m cProfile -o profile.stats app.py python -m pstats profile.stats # Web performance lighthouse https://example.com --output=json ``` ## Step 2: Identify Bottlenecks ### Common Bottleneck Categories | Category | Symptoms | Tools | | -------- | -------------------------------- | ------------------------------- | | CPU | High CPU usage, slow computation | Profiler, flame graphs | | Memory |

What's inside
Steps it walks through
  1. When to Load
  2. Performance Optimization Workflow
  3. Step 1: Measure Baseline
  4. Profiling Commands
  5. Step 2: Identify Bottlenecks
  6. Common Bottleneck Categories
  7. Step 3: Apply Optimizations
  8. Frontend Optimizations
  9. Backend Optimizations
  10. Algorithm Optimizations
  11. Step 4: Measure Again
  12. Performance Targets
  13. Web Vitals
  14. API Performance
Commands it runs
Node.js profiling
node --prof app.js
node --prof-process isolate*.log > profile.txt
Python profiling
python -m cProfile -o profile.stats app.py
python -m pstats profile.stats
Web performance
lighthouse https://example.com --output=json
More from claude-workflow-v2
All skills →
About this skill
What does the optimizing-performance skill do?

Analyzes and optimizes application performance across frontend, backend, and database layers. Use when diagnosing slowness, improving load times, optimizing queries, reducing bundle size, or when asked about performance issues.

How do I install it?

Run `npx skills add CloudAI-X/claude-workflow-v2 --skill optimizing-performance --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From CloudAI-X/claude-workflow-v2, a repository with 1,397 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going