Review PRs, MRs, and Gerrit changes with focus on security, maintainability, and architectural fit. Leverages github, gitlab, or gerrit skills based on repository context. Use when asked to review my code, check this PR, review a pull request, look at a merge request, review a patchset, or provide code review feedback.
Install with Tessl CLI
npx tessl i github:odyssey4me/agent-skills --skill code-review96
Does it follow best practices?
Evaluation — 98%
↑ 1.42xAgent success when using this skill
Validation for skill structure
Orchestrates code review across GitHub PRs, GitLab MRs, and Gerrit changes. Auto-detects the platform from git remote configuration and provides focused review feedback on security, maintainability, and architectural fit.
This is a workflow skill -- it contains no scripts and instead guides the agent through a multi-step review process using the appropriate platform skill.
This skill delegates authentication to the underlying platform skill:
gh auth login (see the github skill)glab auth login (see the gitlab skill)git-review configuration (see the gerrit skill)Ensure the relevant platform skill is authenticated before using code-review.
Review a change by number or URL.
Usage:
Review PR #123
Review this MR: https://gitlab.com/org/repo/-/merge_requests/42
Review Gerrit change 456789The agent follows the Workflow steps: detects the platform from git remotes or the provided URL, fetches the change metadata, CI status, and diff, then provides structured review feedback. Optionally posts review comments.
Save additional context for the current repository's reviews. This persists information that should be considered in future reviews of the same repo.
Usage:
Remember that this repo follows the Google Python Style Guide
Remember: authentication changes must be reviewed by the security team
Remember https://internal-docs.example.com/api-conventions as a reference for API design
Remember that the data layer uses the Repository pattern, not Active RecordKeyword: The word remember at the start of a message triggers saving. The context is stored in ~/.config/agent-skills/code-review.yaml under the current repository's remote URL.
What to save: Coding standards, architectural decisions, external documentation links, team conventions, review policies, or any context that should inform future reviews.
Remove previously saved context for the current repository.
Usage:
Forget the note about the Google Python Style Guide
Forget all saved context for this repoDisplay all saved context for the current repository.
Usage:
Show review context for this repoVerify that the required platform skill is available and authenticated.
# For GitHub repos
skills/github/scripts/github.py check
# For GitLab repos
skills/gitlab/scripts/gitlab.py check
# For Gerrit repos
skills/gerrit/scripts/gerrit.py checkPer-repository context is persisted in ~/.config/agent-skills/code-review.yaml, keyed by the remote fetch URL from git remote get-url origin. This context is loaded at the start of every review (see Step 0 in Workflow).
# ~/.config/agent-skills/code-review.yaml
repositories:
"git@github.com:myorg/myrepo.git":
references:
- "https://internal-docs.example.com/api-conventions"
- "https://google.github.io/styleguide/pyguide.html"
standards:
- "All API endpoints must validate input with Pydantic models"
- "Authentication changes require security team review"
notes:
- "Data layer uses Repository pattern, not Active Record"
- "Legacy modules in src/compat/ are exempt from new style rules"
"https://gitlab.com/myorg/other-repo.git":
references:
- "https://docs.example.com/other-repo/architecture"
standards: []
notes:
- "Migrating from REST to GraphQL -- new endpoints should use GraphQL"When the user provides out-of-repo context during a review, suggest using the remember command to persist it.
Before starting the review, check for saved context:
git remote get-url originRead ~/.config/agent-skills/code-review.yaml and look up the remote URL. If context exists, load it and keep it in mind throughout the review:
If no context file exists or the repo has no entries, proceed without additional context.
Determine the code hosting platform from the repository context:
# Check git remotes
git remote -vgithub.com -> use the github skillgitlab -> use the gitlab skill.gitreview file exists -> use the gerrit skillGitHub:
skills/github/scripts/github.py prs view <number> --repo OWNER/REPO
skills/github/scripts/github.py prs checks <number> --repo OWNER/REPOGitLab:
skills/gitlab/scripts/gitlab.py mrs view <number> --repo GROUP/REPO
skills/gitlab/scripts/gitlab.py pipelines list --repo GROUP/REPOGerrit:
skills/gerrit/scripts/gerrit.py changes view <change-number>Before reviewing, check whether CI/tests have passed:
GitHub:
gh pr diff <number>GitLab:
glab mr diff <number>Gerrit:
git diff HEAD~1Focus review feedback on these areas, in priority order. See references/review-checklist.md for the full checklist.
Do not flag:
Format findings as a structured review:
## Code Review: PR #<number> - <title>
### Summary
<1-2 sentence summary of the change and overall assessment>
### CI Status
<passing/failing/pending -- note any failures>
### Findings
#### Security
- [ ] <finding with file:line reference>
#### Maintainability
- [ ] <finding with file:line reference>
#### Coding Practices
- [ ] <finding with file:line reference>
#### Architecture
- [ ] <finding with file:line reference>
### Verdict
<APPROVE / REQUEST_CHANGES / COMMENT -- with brief rationale>If the user requests it, post the review as comments on the PR/MR using the platform skill:
GitHub:
gh pr review <number> --comment --body "<review>"
# Or approve/request changes:
gh pr review <number> --approve --body "<review>"
gh pr review <number> --request-changes --body "<review>"GitLab:
glab mr note <number> --message "<review>"
# Or approve:
glab mr approve <number>Review PR #42The agent will run git remote -v, detect GitHub, fetch the PR with skills/github/scripts/github.py prs view 42, check CI with skills/github/scripts/github.py prs checks 42, fetch the diff with gh pr diff 42, and provide structured review feedback.
Review https://gitlab.com/myorg/myrepo/-/merge_requests/15Review PR #42 and post your findings as a review commentReview PR #42, focus only on security concernsRemember that this repo uses the Twelve-Factor App methodology
Remember https://wiki.example.com/team/coding-standards as a reference
Remember: all database migrations must be backwards-compatibleShow review context for this repoThis skill coordinates multiple sub-skills and requires reasoning about multi-step workflows. A higher-capability model is recommended for best results.
Ensure you are running from within a git repository with a remote configured:
git remote -vVerify the underlying platform skill is authenticated:
# GitHub
gh auth status
# GitLab
glab auth statusEnsure the PR/MR number is correct and the change exists:
# GitHub
skills/github/scripts/github.py prs view <number>
# GitLab
skills/gitlab/scripts/gitlab.py mrs view <number>d6ceca0
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.