Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问clear审计提醒

pr-merge公关合并

Agent Skill

pr-merge 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

372

周安装

16

GitHub Stars

21

下载量

131
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:pr-merge(公关合并)
来源仓库:https://github.com/matteocervelli/llms
仓库路径:skills/pr-merge
安装命令:
npx skills add https://github.com/matteocervelli/llms --skill pr-merge
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/matteocervelli/llms --skill pr-merge

简介

pr-merge 用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词、任务场景或来源线索快速定位候选结果。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装,需结合原始 README 确认具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • pr-merge 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

PR Merge

Overview

This skill enables safe and comprehensive pull request merging workflows using GitHub MCP tools. It automates the complete pre-merge validation process, checks CI/CD status, verifies reviews, and executes merges with the appropriate merge strategy.

When to Use This Skill

Use this skill when the user requests:

  • "Merge PR #123"
  • "Can we merge this pull request?"
  • "Check if PR is ready to merge"
  • "Complete the PR workflow"
  • "Merge this feature branch"
  • "Is PR #456 ready to be merged?"

Pre-Merge Validation Workflow

Before merging any PR, execute the complete validation workflow to ensure safety and quality.

Step 1: Fetch PR Details

Use mcp__github-mcp__get_pull_request to retrieve:

  • PR title and description
  • Base and head branches
  • Draft status
  • Current state (open/closed)

Required parameters:

  • owner: Repository owner
  • repo: Repository name
  • pullNumber: PR number

Step 2: Check CI/CD Status

Use mcp__github-mcp__get_pull_request_status to verify:

  • All required checks are passing
  • No failed CI/CD workflows
  • Branch protection rules are satisfied

Block merge if:

  • Any required checks are failing
  • Checks are still pending (inform user to wait)
  • Branch protection rules are not met

Step 3: Verify Reviews

Use mcp__github-mcp__get_pull_request_reviews to confirm:

  • Sufficient approved reviews exist
  • No requested changes are outstanding
  • Review requirements are met per branch protection

Block merge if:

  • Required reviews are missing
  • Any reviewer has requested changes
  • Review dismissals need to be addressed

Step 4: Check for Conflicts

Use mcp__github-mcp__get_pull_request_diff to identify:

  • Merge conflicts with base branch
  • File-level conflicts that need resolution

Block merge if:

  • Merge conflicts are present (instruct user to resolve)
  • Base branch needs to be updated first

Step 5: Review Changes (Optional)

For additional safety, use mcp__github-mcp__get_pull_request_files to:

  • Review changed files
  • Identify potential issues
  • Confirm changes align with PR description

Merge Execution

Once all validations pass, execute the merge using mcp__github-mcp__merge_pull_request.

Selecting Merge Method

Choose the appropriate merge method based on project conventions and commit history:

Squash Merge (squash):

  • Use for: Feature branches with messy commit history
  • Benefits: Clean, single commit in main branch
  • When: Multiple small commits, WIP commits, or iterative development
  • Example: PR with 15 commits like "fix typo", "address review", "fix tests"

Merge Commit (merge):

  • Use for: Preserving complete commit history
  • Benefits: Full audit trail, maintains original commits
  • When: Well-structured commits with meaningful messages
  • Example: PR with clean, atomic commits following conventional commit style

Rebase Merge (rebase):

  • Use for: Linear history without merge commits
  • Benefits: Clean, linear git history
  • When: Small PRs with few commits
  • Example: Single-commit PRs or small bug fixes

Default recommendation: Use squash unless project conventions dictate otherwise.

Merge Parameters

Required:

  • owner: Repository owner
  • repo: Repository name
  • pullNumber: PR number

Optional:

  • merge_method: "merge", "squash", or "rebase" (default: merge)
  • commit_title: Custom commit title for squash/merge
  • commit_message: Additional commit message details

Example Merge Execution

Use mcp__github-mcp__merge_pull_request with:
- owner: "user"
- repo: "project"
- pullNumber: 123
- merge_method: "squash"
- commit_title: "feat: add user authentication system"

Post-Merge Actions

After successful merge, inform the user:

  1. Confirm merge completion
  2. Show resulting commit SHA
  3. Note which branch was merged
  4. Suggest deleting the head branch if appropriate

Do not automatically delete branches - let the user decide or check repository settings.

Safety Guidelines

Always follow these safety rules:

  1. Never force merge - All checks must pass
  2. Never bypass reviews - Required approvals must exist
  3. Never merge with conflicts - Conflicts must be resolved first
  4. Never merge draft PRs - Must be marked as ready for review
  5. Always inform the user - Provide clear feedback on validation status

Validation Failure Responses

When pre-merge validation fails, provide clear, actionable feedback:

CI/CD Failures:

  • List which checks are failing
  • Suggest using mcp__github-mcp__get_job_logs with failed_only=true to diagnose
  • Recommend reviewing workflow files

Review Issues:

  • List missing required reviews
  • Identify reviewers who requested changes
  • Suggest addressing review comments first

Merge Conflicts:

  • Identify conflicting files
  • Recommend updating base branch with mcp__github-mcp__update_pull_request_branch
  • Suggest resolving conflicts locally if needed

Branch Protection:

  • List unmet protection rules
  • Explain which requirements are blocking
  • Suggest how to satisfy requirements

Advanced Features

Request Automated Review

Before merging, optionally use mcp__github-mcp__request_copilot_review to:

  • Get AI-powered code review
  • Identify potential issues
  • Supplement human reviews

Update Branch Before Merge

If the base branch has advanced, use mcp__github-mcp__update_pull_request_branch to:

  • Sync PR branch with latest base
  • Trigger CI/CD re-runs
  • Ensure up-to-date merge

Check Multiple PRs

For workflow automation, can validate multiple PRs in sequence:

  1. Use mcp__github-mcp__list_pull_requests to find open PRs
  2. Filter for PRs ready to merge
  3. Execute validation workflow for each
  4. Present merge candidates to user

Complete Workflow Example

User request: "Merge PR #42"

Execution sequence:

  1. Fetch PR details → Confirm it's open, not draft
  2. Check CI/CD status → All checks passing ✓
  3. Verify reviews → 2 approvals, no requested changes ✓
  4. Check conflicts → No conflicts ✓
  5. Select merge method → Choose squash (clean commit history)
  6. Execute merge → merge_pull_request with squash method
  7. Confirm success → "PR #42 successfully merged with squash merge"

Error Handling

Handle common errors gracefully:

  • 404 Not Found: PR doesn't exist, verify PR number
  • 405 Method Not Allowed: PR already merged or closed
  • 409 Conflict: Merge conflict exists, need resolution
  • 422 Validation Failed: Branch protection rules not met

Provide clear error messages and next steps for resolution.

Resources

This skill uses GitHub MCP tools exclusively and does not require additional scripts, references, or assets. All functionality is provided through the MCP integration.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenCode

30.61%
按下载量换算40

Antigravity

21.84%
按下载量换算29

Claude Code

19.49%
按下载量换算26

Codex

12.14%
按下载量换算16

Gemini CLI

8.19%
按下载量换算11

github-copilot

3.71%
按下载量换算5

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills