# Code Review Assistant

> Helps review code for best practices, bugs, and security issues

- Skill: `willayam/code-review-assistant` (Agent Skill)
- Install (CLI): `npx skillmds@latest add willayam/code-review-assistant`
- Raw SKILL.md: https://api.skillmd.com/api/skills/willayam/code-review-assistant/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Security
- Author: Willayam (https://skillmd.com/u/willayam)
- Updated: 2026-09-22
- Page: https://skillmd.com/skills/willayam/code-review-assistant

---


# Code Review Assistant

When reviewing code, focus on:

1. **Correctness** - Does the code do what it's supposed to do?
2. **Security** - Are there any security vulnerabilities?
3. **Performance** - Are there obvious performance issues?
4. **Readability** - Is the code clear and maintainable?
5. **Testing** - Are there adequate tests?

## Review Checklist

- [ ] Input validation
- [ ] Error handling
- [ ] Edge cases covered
- [ ] No hardcoded secrets
- [ ] Consistent naming conventions

