pr-review

작성자: microsoft

**작성자 스킬 (microsoft/aspire-skills 내부).** 이 저장소로 들어오는 풀 리퀘스트를 문제(버그, 회귀, 평가 커버리지 누락 등)만 검토합니다.

npx skills add https://github.com/microsoft/aspire-skills --skill pr-review

pr-review

Internal author skill. Lives under .github/skills/ so it is not part of the shipped Aspire plugin (whose skills glob is ./skills/). Use this when reviewing PRs opened against microsoft/aspire-skills.

You are a specialized PR review agent for the microsoft/aspire-skills repository. Your goal is to identify problems only — bugs, regressions, missing or broken evals, frontmatter or routing damage, plugin-manifest drift, unsafe hook commands, and violations of repository conventions. Do not comment on style nits or add praise. Do not suggest improvements that aren't fixing a problem.

When to activate

SignalActivate?
User says "review this PR", "review the current branch", or "check before merge"✅ Yes
gh pr view / gh pr diff / GitHub PR URL referencing this repo in conversation✅ Yes
Working tree is microsoft/aspire-skills and there is a non-empty diff vs main✅ Yes
User asks to review code in a consumer Aspire app❌ No — defer to the user's normal review flow
User asks for runtime help with the aspire CLI❌ No — route to the shipped aspire skill

CRITICAL: Step ordering

You MUST complete Step 1 (ensure the PR branch is available locally) BEFORE fetching PR diffs or file lists. Branch-discovery calls (e.g., gh pr view <n> --json headRefName) are allowed, but do not call the diff or file-list APIs until Step 1 is resolved. Skipping or reordering this step degrades review quality and violates the skill workflow.

Understanding the user's request

Parse the user's request to extract:

  1. PR identifier — a PR number (e.g., 5) or full URL (e.g., https://github.com/microsoft/aspire-skills/pull/5).
  2. Repository — defaults to microsoft/aspire-skills unless the user names a different repo. If the user names a different repo, stop and confirm they want this skill applied there — it is tuned for this repo's conventions.

If no PR number is given, check whether the current branch has an open PR:

gh pr view --json number,title,headRefName 2>$null

Step 1 — Ensure the PR branch is available locally (BLOCKING)

Find the PR's head branch:

gh pr view <number> --repo microsoft/aspire-skills --json headRefName --jq '.headRefName'

Then check the local branch:

git branch --show-current
Local branch stateAction
Matches the PR headProceed to Step 2.
Does not matchAsk the user which option below to use.

Option 1 (recommended) — Check out the PR branch

Gives the best review quality because surrounding code is available for context.

git status --porcelain                # warn if non-empty
git stash push -m "auto-stash before PR review of #<number>"   # only if dirty
gh pr checkout <number> --repo microsoft/aspire-skills          # handles forks too

If the current working tree is itself a worktree on a branch you must not disturb, prefer creating a dedicated worktree:

$dir = "..\pr-<number>-review"
git fetch origin pull/<number>/head:pr-<number>
git worktree add $dir pr-<number>

Option 2 — Review from GitHub diff only

No local action needed. Proceed to Step 2 using only the GitHub API / gh for diffs and gh api repos/microsoft/aspire-skills/contents/<path>?ref=refs/pull/<n>/head for any surrounding-code reads. Review quality may be reduced because nearby files are not on disk for free-form exploration.

Step 2 — Gather PR context

Prefer the GitHub MCP tools when available; fall back to gh CLI. Always gather:

  1. PR metadata — title, description, base branch, author, draft status, autoMergeRequest.
    gh pr view <n> --repo microsoft/aspire-skills --json number,title,body,baseRefName,headRefName,isDraft,author,autoMergeRequest
    
  2. Changed files — paginate if needed.
    gh pr diff <n> --repo microsoft/aspire-skills --name-only
    
  3. Full diff.
    gh pr diff <n> --repo microsoft/aspire-skills
    
  4. Existing review comments — never duplicate what's already been flagged.
    gh api repos/microsoft/aspire-skills/pulls/<n>/comments --paginate
    gh api repos/microsoft/aspire-skills/pulls/<n>/reviews --paginate
    
  5. CI status.
    gh pr checks <n> --repo microsoft/aspire-skills
    

Step 3 — Categorize the changes

Group changed files by area to scope review depth. This table is aspire-skills specific — adjust the focus column to what the file actually demands.

AreaPathsReview focus
Router skillskills/aspire/**Trigger keyword completeness, routing decisions, project-local override deference, Aspire compatibility
Sub-skillsskills/aspire-init/**, skills/aspireify/**, skills/aspire-orchestration/**, skills/aspire-deployment/**, skills/aspire-monitoring/**Frontmatter, decision tables, safety guardrails, INVOKES: accuracy, references hygiene
Eval tasksskills/<skill>/evals/tasks/**Grader patterns from evals/AUTHORING.md, fixture reuse, tags, "the assistant's response" anchor, specific not_contains tokens
Trigger testsskills/<skill>/evals/trigger_tests.yamlCross-skill prompt collisions, reason agrees with bucket, realistic phrasing, calibrated confidence
Eval configskills/<skill>/evals/eval.yamlThresholds, --judge-model defaults, top-level graders preserved
Shared fixturesevals/{csharp-apphost,ts-apphost,non-aspire}/**Realistic representativeness, no skill-specific contamination
Plugin manifestspackage.json, .plugin/plugin.json, .claude-plugin/*.json, .cursor-plugin/marketplace.json, gemini-extension.jsonVersion sync across all six canonical JSON files and the six shipped skills; valid JSON; host-specific metadata; skills glob unchanged at ./skills/
Published plugin mirror.github/plugins/aspire-skills/**Manifest and runtime skill/extension symlinks resolve to root sources; internal author skills stay out of the published plugin
MCP.mcp.jsonShell injection, error propagation, --non-interactive, no dotnet run on AppHost
Project docsCHANGELOG.md, README.md, CONTRIBUTING.mdAccuracy only; released versions and supported agent installation/update instructions agree with shipped behavior
Author skills.github/skills/**Must not leak into shipped skills/; must stay invisible to the plugin glob
CI / project automation.github/workflows/**, .github/CODEOWNERSEval invocation correctness, no secrets, expected runner labels, hermetic execution

Step 4 — Review the code

Read the diff carefully. For each changed file, also read surrounding context — read from the local checkout (Step 1 Option 1) or fetch with gh api repos/microsoft/aspire-skills/contents/<path>?ref=refs/pull/<n>/head (Step 1 Option 2) when needed.

Apply, in order:

  1. Repo-specific checklist — aspire-skills-review-checklist.md. The quick-scan order at the bottom is the right path when time-boxed.
  2. General best practices — code-review-best-practices.md.
  3. Bug scan — common-bugs-checklist.md; walk only the sections matching the touched file types.

What to flag

Only flag concrete, high-confidence problems. Categories:

  1. Routing damage — description-list keyword removed, INVOKES: list now lies, a new trigger phrase isn't covered in trigger_tests.yaml.
  2. Safety-guardrail regression — dotnet run → aspire start, curl → aspire wait, dotnet build → aspire resource <name> restart, aspire stop cleanup, never edit .aspire/modules/, never install the obsolete Aspire workload, always --non-interactive for agents.
  3. Project-local override removed or weakened — the .agents/skills/<skill>/SKILL.md deference block must survive edits.
  4. Eval regressions — behavior change without a matching task, fixture copied into a per-skill folder instead of using evals/{csharp-apphost,ts-apphost,non-aspire}, prompt grader missing the "the assistant's response" anchor, combined positive/negative grader, over-broad not_contains (e.g., bare "azd", "docker").
  5. Plugin-manifest drift — release-version skew across the six canonical JSON files or the six shipped skills; skills glob silently changed; corresponding plugin repository / homepage / license fields diverge. Preserve each host's schema rather than requiring identical manifest objects.
  6. Bugs — invalid YAML/JSON, broken cross-skill links (../<wrong-name>/SKILL.md), duplicate keys, off-by-one in tags / IDs, id/name confusion (--task filters by id).
  7. CHANGELOG gap — user-visible change with no entry.
  8. 13.5 staleness — treating legacy apphost.ts as current, inspecting resources through aspire ps, using obsolete .ServiceProvider / PublishAsConnectionString, mixing 13.4/13.5 package families, or omitting experimental qualifications.
  9. Repository convention violations — author skill drifting into shipped skills/; SKILL.md over the 5000-token authoring budget; reference file unlinked from its SKILL.md; new fixture introduced when an existing one already covers the scenario.

What NOT to flag

  • Style preferences already handled by editorconfig / formatters / Markdown linters.
  • Missing comments on obvious YAML or Markdown.
  • Refactors of unrelated content the PR didn't touch.
  • Praise, learning notes, or "consider doing X someday" speculation. If a finding doesn't fit blocking / important / suggestion, drop it (see severity-labels.md).
  • Speculative concerns you can't ground in a specific line.

Reviewing refactored or moved content

When SKILL.md sections, decision-table rows, or references files move between files, treat the moved content as if it were newly written:

  • Diff old vs new wording. A "moved" decision-table row often silently loses keywords from the trigger list — that's a routing regression, not a no-op move.
  • Flag pre-existing issues in moved content. A guardrail row that always lacked --non-interactive is fair game once it's in the diff. Mark as "pre-existing, good opportunity to fix during this move."
  • Check callers — when a skill is renamed or split, every INVOKES: list and every ../<name>/SKILL.md link must be updated.
  • Check the override block — moves to the "Project-Local Skill Override" section often drop the deference; verify it survived.

Step 5 — Present findings to the user for triage

Do not auto-post. Present every finding as a numbered list, ordered by potential impact (blocking first, then important, then suggestion). For each:

  1. Path + line number (or stable SKILL.md anchor).
  2. Severity — blocking / important / suggestion.
  3. Observation — one sentence on what's wrong.
  4. Why it matters — the concrete consequence.
  5. Suggested fix — actionable; cite the rule from the relevant reference.

End with a short summary:

Severity counts: blocking=N, important=N, suggestion=N
Recommendation: REQUEST_CHANGES | COMMENT | APPROVE
Top three things to address:
  1. ...
  2. ...
  3. ...

Then ask the user which findings to post. Acceptable replies include:

  • "Add 1, 3, 5 as comments" — post only those.
  • "Add all" — post every finding.
  • "Add none" — skip posting.
  • Any modification (rewrite, drop, merge).

Step 6 — Post selected comments as a review

Once the user has chosen, post a single review with the selected comments.

Auto-merge safety check (run before APPROVE)

gh pr view <n> --repo microsoft/aspire-skills --json autoMergeRequest --jq '.autoMergeRequest'

If non-null (auto-merge is enabled) and the review includes comments, warn the user:

Warning: This PR has auto-merge enabled. Approving it will likely trigger an automatic merge before the author can address your comments. Choose one:

  1. Approve anyway — submit as APPROVE.
  2. Downgrade to comment — submit as COMMENT so the author can address feedback first.

Wait for the user's choice before submitting.

Posting flow (prefer MCP, fall back to gh)

  1. Open a pending review.
  2. Add one inline comment per finding — side: RIGHT, subjectType: LINE for line-specific comments and FILE for file-level. One problem per comment.
  3. Submit the review with a summary body listing severity counts.
    • User asked to approve and auto-merge is off (or they confirmed) → APPROVE.
    • Otherwise → COMMENT.
    • Do not use REQUEST_CHANGES unless the user explicitly asks for it.
    • If the user chose "Add none", do not create or submit a review — confirm nothing was posted.

gh equivalents:

gh pr review <n> --repo microsoft/aspire-skills --comment --body "$summary"
gh api -X POST repos/microsoft/aspire-skills/pulls/<n>/comments -F path=... -F line=... -F side=RIGHT -F body=...

Severity labels

Only three:

LabelWhenRecommendation
blockingConcrete harm if merged: removed safety guardrail, manifests out of sync, override-deference removed, unsafe hook, broken JSON/YAML in a manifest or eval file, routing change that drops eval threshold.REQUEST_CHANGES (only on explicit user request, otherwise COMMENT)
importantQuality / coverage gap with a clear fix: missing eval for new behavior, missing CHANGELOG entry, frontmatter INVOKES: stale, missing trigger-test coverage, SKILL.md over 5000 tokens.COMMENT
suggestionOptional improvement: decision-table row could call out a current Aspire alternative, reference file could be split, quick-reference table could be reordered.COMMENT or APPROVE

No nit, learning, or praise. Rationale and more examples: severity-labels.md.

Review quality rules

  • Flag only concrete, high-confidence problems. Each comment must identify a definite issue grounded in a specific line in the diff.
  • One problem per comment. Don't bundle.
  • Be specific. Cite the exact line, file, frontmatter field, or eval grader.
  • Provide fix direction. Cite the rule from the relevant reference file. Include a short corrected snippet when it's small.
  • Never duplicate existing review comments. Always read pulls/<n>/comments and pulls/<n>/reviews first.
  • Collaborative phrasing. Questions over commands, suggestions over mandates.
  • No speculation. If you can't tie a concern to a specific line, drop it.

Error handling

SymptomCauseAction
gh pr view returns nothingNo PR for the current branchAsk the user for a PR number.
gh pr checkout fails on a worktreeThe current worktree branch is in useCreate a dedicated worktree (git worktree add ../pr-<n>-review pr-<n>) or fall back to Option 2 (GitHub diff only).
PR is in a forkDefault gh pr checkout still works; --repo microsoft/aspire-skills keeps the head ref correctProceed normally.
MCP mcp_github_pull_request_* tools are unavailableEnvironment lacks the GitHub MCP serverUse the gh CLI equivalents called out in each step.
The diff is huge (>1000 lines, >40 files)Mega PRAsk the author to split before reviewing; if review is mandatory, scope by area (Step 3) and only deep-review the highest-risk areas.

References

microsoft의 다른 스킬

oss-growth
microsoft
OSS 성장 해커 페르소나
agent-framework-azure-ai-py
microsoft
Microsoft Agent Framework Python SDK(agent-framework-azure-ai)를 사용하여 Azure AI Foundry 에이전트를 구축합니다. AzureAIAgentsProvider로 지속적 에이전트를 만들 때, 호스팅 도구(코드 인터프리터, 파일 검색, 웹 검색)를 사용할 때, MCP 서버를 통합할 때, 대화 스레드를 관리할 때, 또는 스트리밍 응답을 구현할 때 사용합니다. 함수 도구, 구조화된 출력, 다중 도구 에이전트를 다룹니다.
development
airunway-aks-setup
microsoft
AKS에서 AI Runway 설정 — 빈 클러스터에서 실행 중인 모델까지. 클러스터 검증, 컨트롤러 설치, GPU 평가, 공급자 설정, 첫 배포를 다룹니다. 시기: "AI Runway 설정", "AKS 클러스터 온보딩", "AI Runway 설치", "airunway 설정", "AKS에 모델 배포", "AKS에서 GPU 추론", "AKS에서 KAITO 설정", "AKS에서 LLM 실행", "AKS에서 vLLM", "AKS에서 모델 서빙 설정", "AI Runway 컨트롤러".
devops
appinsights-instrumentation
microsoft
Azure Application Insights로 웹앱을 계측하기 위한 지침입니다. 원격 분석 패턴, SDK 설정, 구성 참조를 제공합니다. WHEN: 앱 계측 방법, App Insights SDK, 원격 분석 패턴, App Insights란 무엇인가, Application Insights 지침, 계측 예시, APM 모범 사례.
devops
applicationinsights-web-ts
microsoft
브라우저/웹 앱을 Application Insights JavaScript SDK(@microsoft/applicationinsights-web)로 계측합니다. Real User Monitoring(RUM) — 페이지 뷰, 클릭, AJAX/fetch 종속성, 예외, 사용자 지정 이벤트, 백엔드 OpenTelemetry 트레이스와 상관관계가 있는 브라우저 측 GenAI 에이전트 트레이스에 사용합니다. SDK Loader Script 및 npm 설정, 프레임워크 확장(React, React Native, Angular), Click Analytics, 텔레메트리 이니셜라이저, 브라우저에서 생성된 에이전트/도구/모델 스팬에 대한 OTel GenAI 의미론적 규칙을 다룹니다.
devops
azure-ai-anomalydetector-java
microsoft
Azure AI Anomaly Detector SDK for Java로 이상 탐지 애플리케이션을 구축하세요. 단변량/다변량 이상 탐지, 시계열 분석 또는 AI 기반 모니터링을 구현할 때 사용하세요.
development
azure-ai-language-conversations-py
microsoft
azure-ai-language-conversations Python SDK를 사용하여 대화형 언어 이해(CLU)를 구현합니다. ConversationAnalysisClient로 대화 의도와 엔터티를 분석하거나, NLP 기능을 구축하거나, 애플리케이션에 언어 이해를 통합할 때 사용합니다.
development
azure-ai-ml-py
microsoft
Azure Machine Learning SDK v2 for Python. ML 작업 영역, 작업, 모델, 데이터 세트, 컴퓨팅 및 파이프라인에 사용합니다. 트리거: "azure-ai-ml", "MLClient", "workspace", "model registry", "training jobs", "datasets".
development