Analyse recent code-review feedback for patterns reviewers keep raising, and propose a lint rule or check for each recurring one.
68
85%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
Low
Low-risk findings worth noting
Low
Low-risk findings.
1 low severity finding. Worth noting, but not necessarily harmful.
The skill exposes the agent to untrusted, user-generated content from public third-party sources, creating a risk of indirect prompt injection. This includes browsing arbitrary URLs, reading social media posts or forum comments, and analyzing content from unknown websites.
The required workflow reads code review comments and PR review summaries from GitHub and GitLab pull requests/merge requests, which are authored by external contributors and reviewers.
api.github.com
domain · 2 sites
The plugin instructs the agent to use `gh api` to fetch review comments and review summaries from GitHub PRs, which are authored by external contributors and reviewers.
SKILL.md
28
GitHub: `gh pr list --state merged --limit 50 --json number`, then for each PR fetch both inline review comments (`gh api repos/{owner}/{repo}/pulls/{number}/comments`) and review-body summaries (`gh api repos/{owner}/{repo}/pulls/{number}/reviews`).
SKILL.md
21
The hosting platform's CLI (`gh` for GitHub, `glab` for GitLab) authenticated
gitlab.com
domain · 2 sites
The plugin instructs the agent to use `glab` to fetch merge request notes from GitLab, which are authored by external contributors and reviewers.
SKILL.md
32
GitLab: `glab mr list --merged`, then read the notes on each.
SKILL.md
21
The hosting platform's CLI (`gh` for GitHub, `glab` for GitLab) authenticated