Agent skill · Security

review-pr-lite

Review a pull request for code quality and security issues without using subagents. Use when the user wants a lighter-weight PR review in a single skill.

dyoshikawa1,265★ · +16/wk · 1 repos on radarProfile →
claude-codeMIT
Install
npx skills add dyoshikawa/rulesync --skill review-pr-lite --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 3 KB
Bundled scripts: none
Path: .rulesync/skills/review-pr-lite/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 1,285 · +20 this week
Language: TypeScript
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

target_pr = the user's request If target_pr is not provided, use the PR of the current branch. ## Important: Do Not Switch the Local Branch - Do NOT check out, switch, or otherwise move the local branch (e.g., `git checkout`, `git switch`, `gh pr checkout`). - To inspect the PR's changes, use `git` and `gh` commands that read remote state without moving the working tree. For example: - `gh pr view $target_pr` to read PR metadata and description. - `gh pr diff $target_pr` to read the diff. - `gh pr view $target_pr --json files` or `gh api` to list changed files. - `git fetch origin pull/<PR_NUMBER>/head:refs/remotes/origin/pr-<PR_NUMBER>` and `git diff origin/main...origin/pr-<PR_NUMBER>` if a local read-only ref is needed. ## Step 1: Gather PR Context Run the following in parallel: - Get the PR description and metadata via `gh pr view $target_pr` (do not check out the PR locally). - Get the PR diff via `gh pr diff $target_pr`. - If needed, inspect changed files individually for deeper context using `gh` / `git` commands (e.g., `gh api`, `git show`) — without switching the local branch. ## Step 2: Review the Changes Review the PR directly in this skill without calling any subagents.

What's inside
Steps it walks through
  1. Important: Do Not Switch the Local Branch
  2. Step 1: Gather PR Context
  3. Step 2: Review the Changes
  4. Step 3: Report Findings
  5. Reporting Rules
  6. Step 4: Check GitHub Actions Workflows
More from rulesync
All skills →
About this skill
What does the review-pr-lite skill do?

Review a pull request for code quality and security issues without using subagents. Use when the user wants a lighter-weight PR review in a single skill.

How do I install it?

Run `npx skills add dyoshikawa/rulesync --skill review-pr-lite --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From dyoshikawa/rulesync, a repository with 1,285 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going