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

triage-pr-reviews分类公关评论

Agent Skill

triage-pr-reviews 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

269

周安装

11

GitHub Stars

13

下载量

86
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/k1low/gh-pr-reviews --skill triage-pr-reviews

简介

用于处理 GitHub 仓库、Issue、Pull Request 等协作信息。

  • 适合围绕代码变更、仓库状态和协作事项进行整理与分析。
  • 可通过 npx 命令从指定仓库安装并使用该技能。
  • 使用前需确认 token 权限和操作边界,避免越权访问或修改。
  • triage-pr-reviews 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Triage PR Review Comments

Phase 1: Fetch and Analyze

  1. Run gh pr-reviews [arg] --json to get unresolved review comments as JSON. If no argument is given, use the current branch's PR. Note: this command uses Copilot for classification and may take a while depending on the number of comments — use a longer timeout. Each JSON object contains:

- comment_id (int): REST API comment ID — usable for replying via gh api - thread_id (string, only for type: "thread"): inline review thread ID - type: "thread" (inline review) or "comment" (PR-level) - author, body, url: comment metadata - commit_id, path, line, diff_hunk (only for type: "thread"): file location and diff context - category: one of suggestion, nitpick, issue, question, approval, informational - resolved (bool), reason (string): resolution status and rationale - replies (array, optional, only for type: "thread" with multiple comments): follow-up comments in the thread, each with author, body, created_at, url

  1. Check if PR metadata (number, title, url) is already available from conversation context. If not (e.g., when a PR number/URL is explicitly passed as argument), run gh pr view [arg] --json number,title,url to get it.
  2. For type: "thread" comments, use path, line, and diff_hunk from the JSON response to identify the exact file location. For type: "comment" (PR-level), there is no file location.
  3. Check code context for each comment. Leverage any existing conversation context first. Only fetch additional context via gh pr diff or file reads when necessary.
  4. Evaluate each comment against the code context. When a thread has replies, read the full conversation to understand whether the concern has already been discussed or partially addressed. Classify as Agree, Partially Agree, or Disagree with a rationale and suggested action.

Phase 2: Summary Overview

Show a brief summary of all comments before starting the interactive walkthrough:

## Unresolved Review Comments — PR #<number> (<title>)

| # | Category | Author | Assessment | File |
|---|----------|--------|------------|------|
| 1 | <category> | @<author> | Agree/Partially Agree/Disagree | `<path>:<line>` |
| 2 | <category> | @<author> | Agree/Partially Agree/Disagree | `PR-level` |

Total: <count> comments — Agree: n, Partially Agree: n, Disagree: n

Walking through each comment below...

Phase 3: Interactive Walkthrough (one-by-one)

For each comment, in order:

  1. Present the comment in this format:
---
### [<current>/<total>] [<category>] by @<author>
> <comment body>

**File**: `<path>` (line <line>)   ← omit for PR-level comments
**Assessment**: <Agree | Partially Agree | Disagree>
**Rationale**: <1-3 sentences>
**Suggested action**: <recommended action>
  1. Ask the user what to do. Present the following action choices and wait for the user's response before proceeding. The user may pick one of the predefined actions or provide free-text instructions:

- For type: "thread" (inline review thread), offer: 1. Fix in code — Make the code change only 2. Fix & reply & resolve — Make the code change, post a reply, and resolve the thread 3. Fix & reply — Make the code change and post a reply without resolving 4. Reply & resolve — Post a reply comment on GitHub and resolve the thread 5. Reply only — Post a reply comment on GitHub without resolving 6. Skip — Move on without taking action - For type: "comment" (PR-level comment), offer: 1. Fix in code — Make the code change only 2. Fix & comment — Make the code change and post a PR-level comment 3. Comment only — Post a PR-level comment on GitHub 4. Skip — Move on without taking action - The user may select by number, name, or provide custom instructions (e.g., "fix but also refactor the surrounding function", "reply with a question asking for clarification", etc.)

  1. Execute the chosen action — code fixes and commits are applied immediately during the walkthrough. GitHub API actions (reply, comment, resolve) are deferred to Phase 4 (ideally after pushing). During this phase, confirm the reply/comment content with the user and queue it for later execution. When an action includes a code fix, record the commit hash so it can be referenced in the queued reply/comment.

- Fix in code: Make the code change, draft a commit message following the repository's commit message conventions (check git log for style), confirm it with the user, and commit. - Fix & reply & resolve (type: "thread" only): Make the code change, draft a commit message following the repository's commit message conventions (check git log for style), confirm it with the user, and commit. Ask the user what to reply (or suggest a draft reply) and confirm the content. Queue the reply and resolve for Phase 4. - Fix & reply (type: "thread"): Make the code change, draft a commit message following the repository's commit message conventions (check git log for style), confirm it with the user, and commit. Ask the user what to reply (or suggest a draft reply) and confirm the content. Queue the reply for Phase 4. - Fix & comment (type: "comment"): Make the code change, draft a commit message following the repository's commit message conventions (check git log for style), confirm it with the user, and commit. Ask the user what to comment (or suggest a draft) and confirm the content. Queue the comment for Phase 4. - Reply & resolve (type: "thread" only): Ask the user what to reply (or suggest a draft reply) and confirm the content. Queue the reply and resolve for Phase 4. - Reply only (type: "thread"): Ask the user what to reply (or suggest a draft reply) and confirm the content. Queue the reply for Phase 4. - Comment only (type: "comment"): Ask the user what to comment (or suggest a draft) and confirm the content. Queue the comment for Phase 4. - Skip: Do nothing, proceed to the next comment. - Other (free-text): Follow the user's custom instructions for this comment. Code fixes are committed immediately; any GitHub API actions are queued for Phase 4.

  1. After completing the action (or skipping), move to the next comment and repeat.

Phase 4: Push & Execute Queued Actions

After all comments have been walked through:

  1. Show the triage summary:
## Triage Summary

| # | Category | Author | Assessment | Action |
|---|----------|--------|------------|--------|
| 1 | <category> | @<author> | <assessment> | Fixed (committed) & reply & resolve (queued) / Fixed (committed) / Skipped / ... |
| 2 | ... | ... | ... | ... |

Pending GitHub actions: <n> replies, <n> comments, <n> resolves
  1. Ask: "Push?" — If the user agrees, push to the remote. If the user declines, skip this step.
  2. Execute queued replies/comments/resolves — Show the list of pending GitHub API actions. For actions that include a code fix, include the commit hash in the reply/comment (e.g., "Fixed in abc1234.").

- If push succeeded: Ask "Execute queued replies/comments/resolves?" and execute if the user agrees. - If push was declined: Warn that executing replies/resolves before pushing means reviewers cannot see the fixes yet. Require explicit confirmation: "Execute queued replies/comments/resolves without pushing?" Only execute if the user confirms after this warning. - Endpoints: - For thread replies: gh api to POST /repos/{owner}/{repo}/pulls/{pull_number}/comments/{comment_id}/replies - For PR-level comments: gh api to POST /repos/{owner}/{repo}/issues/{pull_number}/comments - For thread resolves: gh api graphql using thread_id (not comment_id) - If the user declines, show the pending actions list so they can execute manually later.

  1. Show the final result:
## Triage Complete

| # | Category | Author | Assessment | Action Taken |
|---|----------|--------|------------|--------------|
| 1 | <category> | @<author> | <assessment> | Fixed & replied & resolved / Fixed / Skipped / ... |
| 2 | ... | ... | ... | ... |

- Fixed: n
- Replied/Commented: n
- Resolved: n
- Skipped: n

GitHub API Reference

  • Reply to an inline review comment (thread): gh api repos/{owner}/{repo}/pulls/{pull_number}/comments/{comment_id}/replies -f body="<reply>"
  • Post a PR-level comment (issue comment): gh api repos/{owner}/{repo}/issues/{pull_number}/comments -f body="<reply>"
  • Resolve a review thread: gh api graphql -f query='mutation {resolveReviewThread(input: {threadId: "<thread_id>"}) {thread {id}}}'

Rules

  • When the user selects a "Fix" action, this is an implicit request to commit. Draft a commit message, confirm it with the user, and commit. Do NOT push unless explicitly confirmed in Phase 4.
  • When fixing code, make minimal changes that address the review comment.
  • When suggesting reply drafts, keep them concise and professional.
  • When drafting a PR-level comment for type: "comment", always include a link to the original comment (url from JSON) at the beginning of the reply body (e.g., > Re: <url>\n\n<reply body>). PR-level comments have no threading, so without a link readers cannot tell which comment the reply addresses.
  • If code context is unclear, search the codebase to verify before making a judgment.
  • Prefer gh commands for GitHub data.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.15%
按下载量换算29

Claude

28.21%
按下载量换算24

Cursor

18.85%
按下载量换算16

Gemini CLI

8.89%
按下载量换算8

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills