code-review
SolidReview diffs and change sets for bugs, regressions, risks, and missing tests.
AI & Automation 125 stars
11 forks Updated today MIT
Install
Quality Score: 82/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# Code Review
Use this skill to review local changes or an existing GitHub pull request for
correctness, regressions, maintainability, security, and missing tests.
## Review Order
1. Establish scope with `git status --short`, `git diff --stat`, and
`git diff --name-only`.
2. Read the changed files, not just the diff, before judging behavior.
3. Run targeted validation when it exists: tests, typecheck, lint, build, or
repo-specific checks.
4. Present findings ordered by severity, then open questions, then a brief
summary.
## Primary Workflows
### Local Branch Review
Use local git state when the change is in the current checkout:
```bash
git status --short
git diff --stat
git diff --name-only
git diff --staged
git diff <base-branch>...HEAD
git log --oneline <base-branch>..HEAD
```
Replace `<base-branch>` with the repository's actual review base branch.
### GitHub PR Review
Use `gh` when the review target is an open pull request:
```bash
gh pr view 123
gh pr diff 123
gh pr checkout 123
gh pr view 123 --comments
```
After checking out the PR branch, review it the same way as a local branch and
run the relevant repo checks before leaving comments.
## What to Look For
Prioritize issues that change behavior or raise delivery risk:
- incorrect logic or broken edge cases
- state, data, or migration regressions
- auth, permission, or secret-handling mistakes
- missing validation, retries, or error handling
- flaky or incomplete tests
- risky coupling, hidden sid...
Details
- Author
- HybridAIOne
- Repository
- HybridAIOne/hybridclaw
- Created
- 5 months ago
- Last Updated
- today
- Language
- TypeScript
- License
- MIT
Integrates with
Similar Skills
Semantically similar based on skill content — not just same category
AI & Automation Listed
review-code
Review code changes for correctness, safety, maintainability, and test coverage.
0 Updated today
rogerchappel Code & Development Listed
code-review
Focused review of staged or recent changes to find edge cases, logic errors, and integration risks before merging. Use when asked to 'do a code review', 'review my changes', 'review this PR', 'check my diff', 'review staged changes', or 'pre-merge review'.
0 Updated 2 days ago
arndvs Code & Development Solid
code-review
Use when the user says "review this", "check my code", or wants feedback on changes. Reviews for correctness, quality, security, and coding standards.
7 Updated today
event4u-app