Performance
Skill DongDuong2001/pudo-code-system/skills/debug/performance
Modular, scalable, automated development intelligence.
npx -y skills add DongDuong2001/pudo-code-system --skill performanceAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 5 stars5 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
Diagnosing and resolving performance bottlenecks and latency issues
SKILL.md
0.9 KB, as published. Nobody here has run it
Performance Debugging Skill
This skill focuses on identifying, analyzing, and resolving performance-related issues such as slow response times, CPU spikes, and UI lag.
When to use this skill
- When the application is responding slower than SLAs allow.
- When CPU usage is unexpectedly high.
- When identifying database query bottlenecks (N+1 queries, missing indexes).
Guidelines
- Measure First: Do not guess. Use profilers, APMs (Datadog, New Relic), and logging to find the bottleneck.
- Isolate the Scope: Determine if the issue is in the frontend, network, backend, or database layer.
- Algorithmic Complexity: Check for accidental O(n^2) or worse loops.
- Caching: Consider if a caching layer (Redis, Memcached) can bypass the heavy computation.