Claude Code is your intelligent coding assistant, designed to streamline your programming tasks with precision and speed. Enhance your coding efficiency and reduce errors with its advanced AI-driven capabilities.
npx skills add sh/agentsClaude Code is your intelligent coding assistant, designed to streamline your programming tasks with precision and speed. Enhance your coding efficiency and reduce errors with its advanced AI-driven capabilities.
Code generation
Debugging assistance
Documentation creation
npx skills add sh/agentsgit clone https://github.com/sh/agentsCopy the install command above and run it in your terminal.
Launch Claude Code, Cursor, or your preferred AI coding agent.
Use the prompt template or examples below to test the skill.
Adapt the skill to your specific use case and workflow.
I'm working on a [PROGRAMMING_LANGUAGE] project for [COMPANY]. I need help with [SPECIFIC_TASK]. Here's the relevant code: [CODE_SNIPPET]. Can you help me [SPECIFIC_REQUEST]?
# Code Review and Optimization for [COMPANY] Project
## Issues Identified
- **Memory Leak**: The `data_processor` function in `module_a.py` is not releasing resources properly. This can lead to increased memory usage over time.
- **Inefficient Loop**: The nested loop in `algorithm.py` can be optimized using list comprehensions or built-in functions.
- **Security Vulnerability**: The `user_input` function in `authentication.py` is vulnerable to SQL injection. Consider using parameterized queries.
## Recommendations
1. **Memory Management**: Implement a context manager or use the `with` statement to ensure resources are released.
2. **Loop Optimization**: Replace the nested loop with a more efficient approach, such as using `map` or `filter` functions.
3. **Security Enhancement**: Use prepared statements or an ORM to handle database queries securely.
## Example Code Fixes
```python
# Before
for i in range(len(list_a)):
for j in range(len(list_b)):
if list_a[i] == list_b[j]:
print(list_a[i])
# After
common_elements = set(list_a) & set(list_b)
for element in common_elements:
print(element)
```AI assistant built for thoughtful, nuanced conversation
Create and collaborate on interactive animations with powerful, user-friendly tools.
AI coding assistant for developers
Orchestrate workloads with multi-cloud support, job scheduling, and integrated service discovery features.
Manage CI/CD processes efficiently with build configuration as code and multi-language support.
Enhance performance monitoring and root cause analysis with real-time distributed tracing.
Take a free 3-minute scan and get personalized AI skill recommendations.
Take free scan