بنقرة واحدة
code-review
Use when reviewing code for quality, correctness, security, and performance. Activate after completing a coding task or when the user asks for a code review.
القائمة
Use when reviewing code for quality, correctness, security, and performance. Activate after completing a coding task or when the user asks for a code review.
Guidelines for writing blog posts, social media content, and marketing materials
Browser automation CLI for AI agents. Use when the user needs to interact with websites, including navigating pages, filling forms, clicking buttons, taking screenshots, extracting data, testing web apps, or automating any browser task. Triggers include requests to "open a website", "fill out a form", "click a button", "take a screenshot", "scrape data from a page", "test this web app", "login to a site", or any task requiring web interaction.
Guidelines and templates for writing SEO-optimized blog posts
Templates and guidelines for creating social media content across platforms
| name | code-review |
| description | Use when reviewing code for quality, correctness, security, and performance. Activate after completing a coding task or when the user asks for a code review. |
Perform a structured code review on completed code. Follow the checklist below and provide feedback in the specified format.
When reporting review findings, use this structure:
## Code Review Summary
[1-2 sentence overview of the code quality]
## Issues Found
### [Critical/Major/Minor]: [Short Description]
- **File:** path/to/file.py
- **Line:** 42
- **Issue:** Description of the problem
- **Suggestion:** How to fix it
- **Example:**
```python
# Before
data = eval(user_input)
# After
data = json.loads(user_input)
## Severity Levels
- **Critical**: Security vulnerabilities, data loss risk, crashes. Must fix.
- **Major**: Bugs, missing error handling, performance issues. Should fix.
- **Minor**: Style issues, naming, minor improvements. Nice to fix.