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>
23 lines
714 B
Markdown
23 lines
714 B
Markdown
---
|
|
description: Analyze code for performance issues and suggest optimizations
|
|
---
|
|
|
|
# Code Optimization
|
|
|
|
Review the provided code for the following issues in order of priority:
|
|
|
|
1. **Performance bottlenecks** - identify O(n²) operations, inefficient loops
|
|
2. **Memory leaks** - find unreleased resources, circular references
|
|
3. **Algorithm improvements** - suggest better algorithms or data structures
|
|
4. **Caching opportunities** - identify repeated computations
|
|
5. **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
|