maui: Skill for Claude Code

.github/skills/find-reviewable-pr/SKILL.md

find-reviewable-pr is a skill for Claude Code, Codex from dotnet/maui. It costs 42 tokens per session (1,768 once invoked), scanned A, original, MIT.

A search for open pull requests in the dotnet/maui and dotnet/docs-maui repositories, sorted by review importance. A pull request is a proposed change that needs approval before it is merged.

In plain words
What is it for?
Use it to find MAUI code or documentation PRs to review, including critical items, milestone work, partner contributions, community contributions, and PRs waiting for review.
Why use it?
It removes the need to scan repositories and project boards manually for useful review work. The results highlight urgent, approved, scheduled, partner, community, and recently waiting PRs.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

This is dotnet/maui's own configuration. It tells Claude Code and Codex how to work on maui itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything maui configures →

About the project

.NET MAUI is a C# and XAML framework for building native mobile and desktop applications from one shared codebase. Developers use it to create apps for Android, iOS, iPadOS, macOS, and Windows. The catalogue entries provide skills, instructions, and agents for working with .NET MAUI.

dotnet/maui · 23,320 stars · on GitHub · dot.net

Reuse

Borrowing it

Nothing to install: this file belongs to dotnet/maui. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/dotnet/maui/main/.github/skills/find-reviewable-pr/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/dotnet/maui

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for find-reviewable-pr

README.md
[![agentmods](https://agentmods.dev/badge/skills/dotnet/maui/find-reviewable-pr.svg)](https://agentmods.dev/skills/dotnet/maui/find-reviewable-pr)
Your own site
<a href="https://agentmods.dev/skills/dotnet/maui/find-reviewable-pr"><img src="https://agentmods.dev/badge/skills/dotnet/maui/find-reviewable-pr.svg" alt="Measured on agentmods" height="20"></a>
Per session 42 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,768 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • Snyk warn 7 Sept 2026
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00042 $0.01768
Opus 5 $0.00021 $0.00884
Sonnet 5 $0.00008 $0.00354
Haiku 4.5 $0.00004 $0.00177

Measured 8d ago against content hash 73dcc7ca6b1a, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

find-reviewable-pr scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/query-reviewable-prs.ps1), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.github/skills/find-reviewable-pr/SKILL.md · 145 lines

How it starts

The opening of the file, as written. The whole thing — 145 lines — stays where its author put it; the contents beside it link to each section on GitHub.

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

Read the full file on GitHub · 145 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 8d ago First seen · 145 lines · 42 tokens per session scan A 73dcc7ca6b1a

Subscribe to this mod's changes

find-reviewable-pr is a skill published in the GitHub repository dotnet/maui (23,320 stars, last pushed today), licensed MIT. It adds 42 tokens to every session and 1,768 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.