Accomplish code-review
Review code for bugs, security issues, performance problems, and best practices. Provide actionable feedback.
install
source · Clone the upstream repo
git clone https://github.com/accomplish-ai/accomplish
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/accomplish-ai/accomplish "$T" && mkdir -p ~/.claude/skills && cp -r "$T/apps/desktop/bundled-skills/code-review" ~/.claude/skills/accomplish-ai-accomplish-code-review && rm -rf "$T"
manifest:
apps/desktop/bundled-skills/code-review/SKILL.mdsource content
Code Review
This skill provides thorough code review with actionable feedback.
Review Checklist
Correctness
- Logic errors
- Edge cases not handled
- Incorrect assumptions
Security
- Input validation
- SQL injection
- XSS vulnerabilities
- Hardcoded secrets
Performance
- Unnecessary loops
- N+1 queries
- Memory leaks
- Inefficient algorithms
Maintainability
- Code clarity
- Naming conventions
- Function length
- Documentation
Best Practices
- DRY (Don't Repeat Yourself)
- SOLID principles
- Error handling
- Testing coverage
Output Format
For each issue found:
- Location: File and line number
- Severity: Critical / Warning / Suggestion
- Issue: What the problem is
- Fix: How to resolve it
Examples
- "Review this function for security issues"
- "Check my PR for bugs"
- "Review the authentication code"