mirror of
https://github.com/luongnv89/claude-howto.git
synced 2026-06-05 22:36:34 +02:00
7f2e77337e
Update all documentation footers from generic "April 2026 / 2.1+" to the specific sync date (April 9, 2026) and documented version (2.3.0). Also add version/date footers to zh/CATALOG.md and zh/01-slash-commands/README.md which were missing them. Generated with [Claude Code](https://claude.ai/code) via [Happy](https://happy.engineering) Co-Authored-By: Claude <noreply@anthropic.com> Co-Authored-By: Happy <yesreply@happy.engineering>
714 B
714 B
description
| description |
|---|
| Analyze code for performance issues and suggest optimizations |
Code Optimization
Review the provided code for the following issues in order of priority:
- Performance bottlenecks - identify O(n²) operations, inefficient loops
- Memory leaks - find unreleased resources, circular references
- Algorithm improvements - suggest better algorithms or data structures
- Caching opportunities - identify repeated computations
- Concurrency issues - find race conditions or threading problems
Format your response with:
- Issue severity (Critical/High/Medium/Low)
- Location in code
- Explanation
- Recommended fix with code example
Last Updated: April 9, 2026