Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计提醒

pr-comments公关评论

Agent Skill

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

总安装

480

周安装

20

GitHub Stars

33

下载量

160
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

pr-comments 用于查找、检索和筛选相关信息,支持关键词定位。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中需要快速定位候选结果时使用。
  • 通过 GitHub 安装,使用 npx skills add 命令添加指定仓库的 skill。
  • 安装前需确认权限范围、维护状态,以及是否会触发联网或文件读写。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

PR Comment Triage

Triage and resolve PR review comments from humans and bots in a structured four-phase workflow.

Scope

  • Use for: unresolved review threads on open PRs, both human and bot comments
  • Skip: closed PRs, PRs with no unresolved threads, draft PRs unless explicitly requested

Reference Files

FileRead When
references/github-api.mdDefault: GraphQL queries for fetching, replying, and resolving threads
references/bot-patterns.mdPhase 2: bot detection, severity parsing, deduplication, false positive rules
references/fix-plan-template.mdPhase 3: generating the fix plan document

Workflow

Copy this checklist to track progress:

PR comment triage progress:
- [ ] Phase 1: Fetch unresolved review threads, reviews, and comments
- [ ] Phase 2: Triage and classify all items
- [ ] Phase 3: Write fix plan and get approval
- [ ] Phase 4: Execute fixes and resolve threads

Phase 1: Fetch

Load references/github-api.md for query templates.

  1. Identify the PR — auto-detect from current branch (gh pr view --json number) or accept an explicit PR number argument
  2. Extract owner/repogh repo view --json owner,name
  3. Fetch all review threads — use the GraphQL reviewThreads query with pagination. Collect every thread, then filter to isResolved == false
  4. Fetch PR reviews — use the REST reviews endpoint. Collect all reviews with their state, body, and author. Pay attention to CHANGES_REQUESTED reviews with body text — these contain the reviewer's summary of what needs to change
  5. Fetch issue-level comments — use the REST endpoint for all PR conversation comments. Do not filter by author — bot comments from github-actions[bot] may contain actionable findings (DangerJS warnings, schema compatibility checks)
  6. Early exit — if zero unresolved threads, zero actionable reviews, and zero actionable issue comments, report "No unresolved review items found" and stop

Output: three lists — unresolved threads, reviews with content, and issue-level comments.

Phase 2: Triage

Load references/bot-patterns.md for detection and parsing rules.

For each item across all three sources:

  1. Identify author type — human or bot. For bots, classify by content first, then username. See references/bot-patterns.md for detection rules, severity parsing, and false positive patterns
  2. Skip noise — auto-classify noise items per bot-patterns reference (linear linkbacks, vercel deployments, Devin "no issues" reviews, changeset releases, event-lib triggers)
  3. Parse severity — extract from bot-specific format (emoji, SVG, HTML tables). Human comments: default to Major for CHANGES_REQUESTED, Minor for APPROVED + question
  4. Deduplicate — group inline comments on the same file within a 3-line range. Keep the highest-severity, most-actionable comment. Mark others as ignore-duplicate
  5. Classify each remaining item:

- Category: bug, security, performance, style, correctness, docs, test-coverage - Severity: critical, major, minor, nitpick - Confidence: high (human or multi-bot), medium (single bot, clear issue), low (single bot, likely false positive) - Disposition: fix or ignore (with reason) - Source type: thread (resolvable), conversation (reply-only)

  1. Flag ignore candidates with specific reasoning:

- Pre-existing code not changed in this PR - Bot flagged.md, config, lock, or migration files (no security implications) - Contradicts project CLAUDE.md/AGENTS.md conventions - Outdated thread where code has changed substantially - Noise bot boilerplate or badge injection

Human comments are never auto-ignored. Always classify as fix unless clearly already resolved or the reviewer explicitly marked it as optional ("up to you", "but not blocking").

Phase 3: Plan

Load references/fix-plan-template.md for the output template.

  1. Create plan file — write to .claude/scratchpad/pr-{N}-review-plan.md (create directory if needed)
  2. Issues to Fix — ordered by severity (critical first), each with thread ID, file:line, author, category, finding, fix approach, and commit group label
  3. Conversation Items — issue-level comments and review bodies that need fixes but have no thread ID. These get a reply but no resolve mutation
  4. Ignored — each with thread ID or comment ID, author, reason, and the brief reply to post when resolving
  5. Summary table — disposition-by-severity matrix for quick scanning
  6. Present to user — print a summary showing counts (N to fix, K conversation items, M to ignore) and ask for approval

Stop here. Do not proceed to Phase 4 until the user reviews and approves the plan.

The user may edit the plan — move items between fix/conversation/ignore, change priorities, add notes. Re-read the plan file before executing.

Phase 4: Execute

After user approval, re-read .claude/scratchpad/pr-{N}-review-plan.md in case it was edited.

4a. Resolve ignored threads:

For each ignored item that has a thread ID:

  1. Post a brief reply explaining the decision
  2. Resolve the thread via GraphQL mutation

Use concise, specific reasons:

  • "Duplicate of thread addressing the same finding — resolving."
  • "Contradicts project convention (see CLAUDE.md) — resolving."
  • "Outdated thread — code has been refactored. Resolving."
  • "CI notification — not actionable. Resolving."

For ignored noise without a thread ID (issue-level bot comments), do nothing — no reply needed.

4b. Fix real issues:

Group fixes by commit group label from the plan. For each group:

  • If fixes touch independent files, launch parallel subagents (one per file group)
  • If fixes touch the same file or overlapping lines, execute sequentially
  • Each subagent reads the file, applies the fix, and verifies correctness

Subagent prompt template:

Fix the following PR review issue(s) on branch {BRANCH}:

Issue: {finding}
File: {path}:{line}
Fix approach: {fix_approach}

Read the file, understand the surrounding context, and make the fix.
After fixing, verify the change is correct.
Do NOT touch unrelated code.

4c. Commit and push:

  • Run project lint/test commands if available
  • One commit per logical fix group, message format: fix({scope}): {description}
  • Push the branch

4d. Resolve and reply:

  • Resolved threads: post reply ("Fixed in latest push.") then resolve via GraphQL
  • Conversation items: post reply acknowledging the fix
  • Issue-level comments have no resolve mechanism — the reply is the acknowledgment

4e. Verify:

  • Re-fetch threads from GitHub (fresh API call) to confirm zero unresolved remain
  • Check CI status with gh pr checks
  • Report results to the user

Anti-patterns

  • Resolving threads without posting a reply — reviewers need to see the reasoning
  • Auto-ignoring human comments — always classify for user review
  • Fixing items the plan marked as ignore without approval
  • One commit per individual comment — group related fixes by commit group label
  • Pushing before verifying lint/test pass locally
  • Skipping Phase 3 approval — the fix plan is the quality gate
  • Classifying github-actions[bot] as always noise — it is a shared identity used by DangerJS, schema checkers, and other active tools. Classify by content.
  • Filtering issue-level comments to humans only — bot comments from DangerJS and schema checkers are actionable

Related skills

  • review-pr for reviewing PRs and posting comments (outbound — complementary to this skill)

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.01%
按下载量换算54

Claude

30.5%
按下载量换算49

Cursor

18.58%
按下载量换算30

Gemini CLI

8.11%
按下载量换算13

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills