agentsclimarketplace

Code review

Skill openagentskills/betterskills/skills/engineering/code-review

Reviews code changes for correctness, security, maintainability, and test coverage using a severity-tagged checklist. Use when reviewing pull requests, diffs, patches, or when the user asks for a code review.From its SKILL.md

Install
npx -y skills add openagentskills/betterskills --skill code-review

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 0 stars0 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.

SKILL.md

1.6 KB, 334 tokens by cl100k_base, as published. Nobody here has run it

Code Review

Quick start

  1. Understand the change goal (read PR description or ask).
  2. Read the diff in logical chunks (not only file order).
  3. Apply the checklist below.
  4. Report findings by severity with file/line references when possible.

Review checklist

  • Correctness — Logic handles happy path and edge cases
  • Security — No injection, auth bypass, secret leakage, unsafe deserialization
  • API/contracts — Public surfaces backward-compatible unless versioned
  • Performance — No obvious N+1, unbounded memory, or hot-path regressions
  • Maintainability — Clear names, focused functions, matches project style
  • Tests — Behavior covered; tests assert outcomes not implementation details
  • Docs — User-facing changes documented

Output format

## Summary
[1–2 sentences: overall recommendation]

## Findings

### Critical (must fix)
- `path:line` — Problem. Suggested fix.

### Suggestions
- `path:line` — Improvement.

### Nitpicks (optional)
- Minor style or clarity notes.

## Verdict
[Approve / Request changes / Comment only]

Severity guide

LevelWhen
CriticalBugs, security issues, data loss risk
SuggestionBetter design, clearer code, missing tests
NitpickStyle not enforced by linter

Additional resources

What ships with it: 2 files

932 B alongside SKILL.md

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.