home / skills / julianobarbosa / claude-code-skills / reviewing-code-skill
This skill provides code reviews to improve quality, detect bugs, and enforce best practices across Python projects.
npx playbooks add skill julianobarbosa/claude-code-skills --skill reviewing-code-skillReview the files below or copy the command above to add this skill to your agents.
---
name: reviewing-code
description: Get code review from Codex AI for implementation quality, bug detection, and best practices. Use when asked to review code, check for bugs, find security issues, or get feedback on implementation patterns.
allowed-tools: Read, Grep, Glob, mcp__codex__spawn_agent
---
# Code Review with Codex
Use `mcp__codex__spawn_agent` for code review.
## When to Use
- Review code quality and patterns
- Find potential bugs or edge cases
- Validate against best practices
- Check for security issues
## Usage
```json
{
"prompt": "Review this code for [quality/bugs/security]: [code or file]"
}
```
## Prompt Examples
- "Review for code quality and Go best practices: [code]"
- "Analyze for security vulnerabilities: [code]"
- "Review for performance issues: [code]"
- "Does this follow idiomatic patterns? [code]"
This skill provides code review from Codex AI focused on implementation quality, bug detection, and best practices. It evaluates Python code for correctness, security, performance, and style, and returns actionable suggestions. Use it to get concise, prioritized feedback you can apply directly to your codebase.
Send a prompt containing the code or file and specify the review focus (quality, bugs, security, performance, or idiomatic style). The agent inspects control flow, edge cases, API usage, error handling, and common vulnerability patterns. It highlights issues, explains why they matter, and suggests concrete fixes or alternatives.
What input format works best?
Provide the relevant code snippet or file and a short instruction specifying the review focus. Small, focused examples get faster, more precise feedback.
Can it find security vulnerabilities reliably?
It catches many common issues and risky patterns, but should complement static analysis and human review for comprehensive security assurance.