Token导航 LogoToken导航TokenDH.com
开发external-servicegithub未标认证来源可访问许可证需确认审计异常

github-pr-commentsGitHub PR comments 开发

Agent Skill

用于围绕 GitHub 仓库、Issue、Pull Request、分支、提交和代码协作流程提供辅助能力。它适合让 Agent 查询项目状态、整理变更、辅助创建或检查协作事项,并把仓库中的信息转成可执行的下一步。使用时需要区分只读查询和写入操作;涉及创建 PR、修改 Issue、推送分支或访问私有仓库时,应确认 token 权限、目标仓库范围和用户授权。

总安装

170

周安装

12

GitHub Stars

公开资料未说明

下载量

97
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/prulloac/agent-skills --skill github-pr-comments

简介

用于管理和回复 GitHub PR 上的评论。

  • 支持批量处理和建议回复内容。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。
  • 可设置自动回复规则和模板。github-pr-comments 属于开发类 Skill,可作为该场景下的辅助能力补充。
  • 提升代码审查响应速度和质量。
  • 操作前应仔细阅读每条评论上下文。

SKILL.md

GitHub PR Comments

Overview

This skill enables systematic analysis and management of GitHub pull request comments. It categorizes comments by type (Security, Code Changes, Documentation, Clarifications, Bugs & Code Smells, Other), assigns severity levels (Critical, High, Medium, Info), and helps automate responses and fixes based on user preferences.

Workflow

Follow these steps when handling PR comment analysis and management:

Step 1: Retrieve PR Comments

Use available tools in order of precedence:

  1. GitHub MCP Server (if available): Use GitHub MCP tools to fetch PR comments
  2. GitHub CLI (gh): Use gh pr view <pr-number> --json comments or gh api repos/{owner}/{repo}/pulls/{pr-number}/comments
  3. GitHub REST API: Use curl with GitHub API endpoints

Retrieve all comments including:

  • Review comments (inline code comments)
  • General PR comments
  • Comment metadata (author, timestamp, line numbers)

Step 2: Categorize and Assign Severity

For each comment, determine:

Category (one of six types):

  • Security: Vulnerabilities, authentication, data exposure, unsafe practices
  • Code Changes: Logic modifications, refactoring, implementation changes
  • Documentation: Code comments, README, API docs, explanations
  • Clarifications: Questions, requests for explanation
  • Bugs & Code Smells: Identified bugs, quality issues, anti-patterns
  • Other: Praise, meta-discussion, process notes

Severity (one of four levels):

  • Critical: Blocking issues requiring immediate fix before merge
  • High: Important issues that should be addressed
  • Medium: Improvements and suggestions worth considering
  • Info: Minor notes, questions, or acknowledgments

Refer to references/examples.md for detailed categorization guidelines and sample comments.

Step 3: Present Summary Table

Show the user a comprehensive summary using one or more formats:

Format Option A - Severity Distribution:

| Category              | Critical | High | Medium | Info | Total |
|-----------------------|----------|------|--------|------|-------|
| Security              |    1     |  2   |   1    |  0   |   4   |
| Code Changes          |    0     |  1   |   3    |  2   |   6   |
| Documentation         |    0     |  1   |   2    |  1   |   4   |
| Clarifications        |    0     |  0   |   2    |  5   |   7   |
| Bugs & Code Smells    |    1     |  3   |   2    |  0   |   6   |
| Other                 |    0     |  0   |   0    |  3   |   3   |

Format Option B - Grouped by Severity: List comments grouped by severity level (Critical → High → Medium → Info), showing category and brief description for each.

Format Option C - Action Required: Summarize what must be fixed, what should be fixed, and what's optional.

Choose the format(s) that best fit the number and distribution of comments.

Step 4: Ask User How to Proceed

Present clear options for handling comments:

How would you like to proceed with these comments?

1. 🤖 Auto-fix: Which comments should I attempt to fix automatically?
2. ✋ Won't Fix: Which comments should be marked as "won't fix"?
3. 👤 Manual: Which comments will you handle manually?

You can specify by:
- Comment numbers: "Auto-fix comments 1, 3, 5"
- Categories: "Auto-fix all Security and Bugs"
- Severity: "Auto-fix all Critical and High"
- Combinations: "Auto-fix all Critical Security and Bugs"

Wait for user response before proceeding to implementation.

Step 5: Implement Auto-Fix Comments

For each comment marked for auto-fix:

Before making changes:

  1. Post response on GitHub: "🤖 Working on this comment, please be patient."
  2. Use appropriate GitHub tool to add the comment

Implement the fix:

  1. Analyze the requested change
  2. Make necessary code modifications
  3. Test the change if possible
  4. Commit the changes with descriptive message

After successful fix:

  1. Post completion response on GitHub: "✅ Fixed in commit [hash]. [Brief description]"

If unable to auto-fix:

  1. Post explanation: "⚠️ Unable to automatically fix this. [Reason]. Manual intervention needed."

For "won't fix" comments:

  1. Post explanation: "Thanks for the feedback! After consideration, we've decided not to implement this change because [reason]."

Step 6: Provide Summary Report

After processing all auto-fix comments, show the user:

Summary Report
═══════════════════════════════════════════════════════════════

✅ Auto-fixed (X comments):
  • [List of successfully fixed comments with commit hashes]

⚠️  Unable to auto-fix (Y comments):
  • [List with reasons]

✋ Marked as won't fix (Z comments):
  • [List with posted explanations]

👤 Left for manual handling (W comments):
  • [List of comments user will handle]

Important Considerations

Tool Selection:

  • Always try GitHub MCP Server first (most reliable)
  • Fall back to gh CLI if MCP unavailable
  • Use REST API as last resort
  • Check tool availability before starting workflow

Categorization Guidelines:

  • Some comments may fit multiple categories - choose the primary focus
  • When uncertain about severity, err on the side of higher severity
  • Security and Bugs with Critical/High severity should generally be auto-fixed unless complex
  • Clarifications usually need manual responses with context

Auto-Fix Limitations:

  • Don't auto-fix if the change requires architectural decisions
  • Don't auto-fix if unclear about the requested change
  • Don't auto-fix documentation that requires domain knowledge
  • Always inform the user before posting "won't fix" responses

GitHub Posting:

  • Always post status updates to maintain communication
  • Include commit hashes in completion messages for traceability
  • Be professional and constructive in all responses
  • Tag the original commenter if appropriate: @username

Resources

references/

examples.md: Comprehensive examples including:

  • Category definitions with severity indicators
  • 13+ sample PR comments with categorization explanations
  • Multiple summary table format examples
  • User interaction flow examples
  • Agent response templates for GitHub posting

Read this file to understand how to categorize comments and format outputs effectively.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.49%
按下载量换算33

Claude

28.52%
按下载量换算28

Cursor

18.82%
按下载量换算18

Gemini CLI

9.31%
按下载量换算9

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

可疑

权限和风险

external-service

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills