跳到主要内容
知仓学习社ZHICANG

pr-merge-champion

Optimize pull requests for quick approval and merging by ensuring clean diffs, comprehensive self-reviews, and structured documentation.

不碰外部(只输出文字)无严重或高危命中sickn33/agentic-awesome-skills

它会碰到什么

扫了多少1 个文本文件,5 KB
它会碰到什么不碰外部(只输出文字)
命中总数0 处
命中统计严重 0 · 高 0 · 中 0 · 低 0

这一栏是扫描器报的事实,不是结论。命中多不等于有毒(安全工具、规则库、示例脚本本来就会包含危险写法),命中少也不等于干净。它和你手上的凭据、文件、网络有什么关系,需要你自己看。

技能内容

PR Merge Champion

Overview

A systematic playbook for preparing, reviewing, and documenting pull requests to ensure they are high-quality, free of common oversights, and optimized for instant maintainer approval and merging.

When to Use This Skill

  • Use when preparing to open a new pull request on GitHub or any Git hosting platform.
  • Use when self-auditing a feature or bug-fix branch for code cleanliness and consistency.
  • Use when trying to minimize review cycles and speed up the integration of your changes.

How It Works

Step 1: Pre-Flight Clean Up & Rebase

Before presenting your code to reviewers, clean up any workspace noise and ensure your branch is up to date:

  1. Rebase your feature branch on top of the latest target branch (e.g., main or master) to resolve conflicts early.
  2. Clean up untracked, temp, or swap files from your repository.
  3. Run local linters, formatters, and compilers to ensure no stylistic or syntax errors exist.

Step 2: Critical Self-Review

Review your own diff line-by-line as if you were the reviewer. Look out for:

  1. Leftover debugging statements (e.g., console.log, print, breakpoints, or custom debug flags).
  2. Unnecessary changes, white-space only diffs, or commented-out code blocks.
  3. Incomplete TODO comments that should be resolved or turned into tracked issues.
  4. Correctness of error handling and edge cases.

Step 3: Local Verification & Test Suite

Verify that all changes work as expected:

  1. Run the project's automated test suite locally to verify no regressions are introduced.
  2. Check test coverage for any new code blocks you added.
  3. Manually test the critical paths and edge cases of your feature or bug fix.

Step 4: Crafting the Pull Request Description

Write a high-signal, structured PR description. A great description tells the story of the changes:

  1. Summary: A concise explanation of the changes.
  2. Context / Why: Why this change is necessary and what problem it solves.
  3. Verification: Explicit details on how you tested it (test commands, screenshots, or step-by-step reproduction).
  4. Checklist: Conform to the repository's contributing guidelines and checklist requirements.

Examples

Example 1: Creating a Clean PR Description

# Pull Request: Implement Rate Limiting on Authentication Endpoint

## Summary
Introduces an IP-based rate limiter on the `/api/v1/auth/login` endpoint using Redis to prevent brute-force attacks.

## Why
We identified a high volume of login attempts targeting single accounts. This rate limiting window slows down attackers while keeping the system responsive for genuine users.

## Verification
- Ran unit tests: `npm run test tests/auth.test.js` (all green)
- Manually verified using Postman: sending 15 requests in under 60 seconds returns `429 Too Many Requests`.

## Checklist
- [x] Code follows the style guide
- [x] Unit tests added/updated
- [x] Documentation updated

Example 2: Self-Review Clean Up Commands

Before committing, run these commands to inspect the diff for accidental additions:

# Check the names of files changed to ensure no unwanted files are staged
git status --porcelain

# Review the actual diff for any leftover print statements or debuggers
git diff | grep -E "(console\.log|debugger|print\(|var_dump|binding\.pry)"

Best Practices

  • Keep PRs Small and Focused: A PR with fewer than 200 lines of changes gets reviewed and merged significantly faster than a large one.
  • Perform a Self-Review first: Finding your own bugs and formatting issues first builds trust with the maintainers.
  • Respect Repository Guidelines: Check the project's CONTRIBUTING.md and pull request templates, and adhere to them strictly.
  • Do Not Bundle Unrelated Changes: Avoid sneaking refactoring or unrelated bug fixes into a feature PR. Create separate PRs instead.
  • Do Not Ignore CI Failures: Always fix failing tests, linters, or security scans on your branch before requesting a review.

Limitations

  • This skill does not replace project-specific CI/CD validation, automated testing, or domain-expert reviews.
  • It assumes a standard Git and GitHub-like environment, though the core principles apply to GitLab, Bitbucket, and other platforms.

Common Pitfalls

  • Problem: A PR is left open for a long time due to minor formatting or style comments.

Solution: Always run the repository's local formatter (e.g., Prettier, ESLint, Black) before committing.

  • Problem: Merge conflicts occur immediately after opening the PR.

Solution: Pull the latest main branch and rebase or merge it into your branch daily.

Related Skills

  • @pr-writer - For Sentry-specific PR writing guidelines.
  • @clean-code - To ensure code quality before submitting.

想直接用这个技能?

本站把开放许可(MIT / Apache 等)的技能按仓库打包整理到网盘,点一下转存到你自己的网盘,不用一个个从 GitHub 拉。许可未声明的技能只给原始仓库链接,不打包。

同名技能的其他版本

有 3 个不同仓库或目录里都有叫 pr-merge-champion 的技能。它们内容并不相同,别混用: