Code review
npx -y skills add skael-dev/skael --skill code-reviewAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 8 stars8 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Perform thorough code reviews focusing on correctness, security, and maintainability.
The file declares its own license as Apache-2.0. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.
SKILL.md
0.9 KB, as published. Nobody here has run it
code-review
When to use
Use this skill when asked to review code changes, pull requests, or files for quality issues.
Process
- Read the changed files completely before commenting
- Check for correctness bugs first
- Check for security issues (injection, auth bypass, data exposure)
- Check for maintainability (naming, structure, complexity)
- Provide specific, actionable feedback with line references
Principles
- Be specific: "line 42: this SQL query is vulnerable to injection" not "watch out for SQL injection"
- Suggest fixes, don't just point out problems
- Acknowledge good patterns when you see them
- Prioritize: blocking issues first, then improvements, then style