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

find-reviewable-pr找到可审查的公关

Agent Skill

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

总安装

424

周安装

17

GitHub Stars

23,161

下载量

137
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/dotnet/maui --skill find-reviewable-pr

简介

find-reviewable-pr 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。

  • 可结合来源仓库、安装命令和原始 README 继续核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 当前顶部介绍为空,需参考原始 SKILL.md 获取详细功能说明。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Find Reviewable PR

This skill searches the dotnet/maui and dotnet/docs-maui repositories for open pull requests that are good candidates for review, prioritized by importance.

When to Use

  • "Find a PR to review"
  • "Find PRs that need review"
  • "Show me milestoned PRs"
  • "Find partner PRs to review"
  • "What community PRs are open?"
  • "Find docs-maui PRs to review"

Priority Categories (in order)

  1. Priority (P/0) - Critical priority PRs that need immediate attention (always on top)
  2. Approved (Not Merged) - PRs with human approval that haven't been merged yet
  3. Ready To Review (Project Board) - PRs in "Ready To Review" column of the MAUI SDK Ongoing project board (requires read:project scope)
  4. Milestoned - PRs assigned to current milestone(s), sorted by lowest SR number first (e.g., SR5 before SR6), then Servicing
  5. Agent Reviewed - PRs reviewed by AI agent workflow (detected via labels)
  6. Partner - PRs from Syncfusion and other partners
  7. Community - External contributions needing review
  8. Recent Waiting for Review - PRs created in last 2 weeks that need review (minimum 5)
  9. docs-maui Waiting for Review - Documentation PRs needing review (minimum 5)

Quick Start

# Find P/0 and milestoned PRs (default behavior, excludes changes-requested)
pwsh .github/skills/find-reviewable-pr/scripts/query-reviewable-prs.ps1

# Find all reviewable PRs across all categories
pwsh .github/skills/find-reviewable-pr/scripts/query-reviewable-prs.ps1 -Category all

# Find only milestoned PRs
pwsh .github/skills/find-reviewable-pr/scripts/query-reviewable-prs.ps1 -Category milestoned

# Find only docs-maui PRs waiting for review
pwsh .github/skills/find-reviewable-pr/scripts/query-reviewable-prs.ps1 -Category docs-maui

# Find approved PRs waiting to be merged
pwsh .github/skills/find-reviewable-pr/scripts/query-reviewable-prs.ps1 -Category approved

# Find PRs in "Ready To Review" on the project board
pwsh .github/skills/find-reviewable-pr/scripts/query-reviewable-prs.ps1 -Category ready-to-review

# Find agent-reviewed PRs with merge summaries
pwsh .github/skills/find-reviewable-pr/scripts/query-reviewable-prs.ps1 -Category agent-reviewed

# Find recent PRs waiting for review
pwsh .github/skills/find-reviewable-pr/scripts/query-reviewable-prs.ps1 -Category recent

# Find Android PRs only
pwsh .github/skills/find-reviewable-pr/scripts/query-reviewable-prs.ps1 -Platform android

# Limit results per category
pwsh .github/skills/find-reviewable-pr/scripts/query-reviewable-prs.ps1 -Limit 5

# Adjust docs-maui limit (default is 5, minimum enforced)
pwsh .github/skills/find-reviewable-pr/scripts/query-reviewable-prs.ps1 -DocsLimit 10

Script Parameters

ParameterValuesDefaultDescription
-Categorydefault, milestoned, priority, recent, partner, community, docs-maui, approved, ready-to-review, agent-reviewed, alldefaultFilter by category. default shows only P/0 + milestoned, excluding changes-requested PRs.
-Platformandroid, ios, windows, maccatalyst, allallFilter by platform
-Limit1-100100Max PRs per category (maui repo)
-RecentLimit1-1005Max recent PRs waiting for review from maui repo (minimum 5 enforced)
-DocsLimit1-1005Max PRs for docs-maui waiting for review (minimum 5 enforced)
-ExcludeAuthorsstring[](none)Exclude PRs from specific authors (e.g., -ExcludeAuthors PureWeen,rmarinho)
-IncludeAuthorsstring[](none)Only include PRs from specific authors
-OutputFormatreview, table, jsonreviewOutput format

Workflow for Reviewing PRs

Step 1: Find PRs to Review

CRITICAL: You MUST use the PowerShell script below. Do NOT attempt to query GitHub directly with gh commands or jq if the script fails. The script contains important prioritization logic (SR5 before SR6, P/0 first, etc.) that cannot be replicated with ad-hoc queries.

pwsh .github/skills/find-reviewable-pr/scripts/query-reviewable-prs.ps1

If the script fails (e.g., HTTP 502, network error, authentication issue):

  1. STOP - Do not attempt fallback queries
  2. Report the error to the user
  3. Suggest retry - Ask user to try again in a few minutes (GitHub API may be temporarily unavailable)

Why no fallbacks? Ad-hoc queries bypass the milestone prioritization logic and will return incorrectly ordered results (e.g., later SR milestones before earlier ones).

Step 2: Check for Warnings

IMPORTANT: If the script output contains a warning about missing read:project scope, you MUST include this warning at the TOP of your response to the user:

⚠️ **Note**: Your GitHub token is missing the `read:project` scope. Project board data is not available.
To enable: `gh auth refresh -s read:project`

Step 3: Present Results from ALL Categories

CRITICAL: When presenting PR results, you MUST include PRs from ALL categories returned by the script:

  1. 🔴 Priority (P/0) - Always include if present (always first)
  2. 🟢 Approved (Not Merged) - Always include if present
  3. 📋 Ready To Review (Board) - Always include if present
  4. 📅 Milestoned - Always include if present
  5. 🤖 Agent Reviewed - Always include if present
  6. 🤝 Partner - Always include if present
  7. Community - Always include if present
  8. 🕐 Recent - Always include if present
  9. 📖 docs-maui - Always include if present

DO NOT omit any category. Each category table should include columns for: PR, Title, Author, Assignees, Platform/Repo, Status, Agent Review, Age, Updated.

Complexity Levels

ComplexityCriteria
Easy≤5 files, ≤200 additions
Medium6-15 files, or 200-500 additions
Complex>15 files, or >500 additions

Tips

  • P/0 PRs should always be reviewed first - they're blocking releases
  • Approved PRs are ready to merge - verify CI is green and merge
  • Ready To Review PRs are in the project board pipeline and need timely review
  • Agent Reviewed PRs have been analyzed by the AI agent workflow - check their labels for status
  • Milestoned PRs have deadlines and should be prioritized
  • Partner PRs often have business priority
  • Community PRs may need more guidance and thorough review
  • Recent PRs - quick turnaround keeps contributors engaged

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.87%
按下载量换算46

Claude

31.58%
按下载量换算43

Cursor

17.86%
按下载量换算24

Gemini CLI

10.02%
按下载量换算14

安全审计

Gen Agent Trust Hub

通过

Socket

可疑

Snyk

可疑

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills