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

learn-from-pr向公关学习

Agent Skill

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

总安装

494

周安装

21

GitHub Stars

23,172

下载量

173
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/dotnet/maui --skill learn-from-pr

简介

learn-from-pr 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词快速定位候选结果时使用。

  • 适用于研究检索类任务,可结合来源仓库和原始 README 核验具体用法。
  • 通过 npx skills add 命令从 GitHub 安装,需确认权限范围和维护状态。
  • 使用前建议检查是否会触发联网、命令执行或文件读写操作。
  • 当前维护状态和稳定性需结合仓库活跃度进一步确认。

SKILL.md

Learn From PR

Extracts lessons learned from a completed PR to improve repository documentation and agent capabilities.

Inputs

InputRequiredSource
PR number or Issue numberYesUser provides (e.g., "PR #33352" or "issue 33352")

Outputs

  1. Learning Analysis - Structured markdown with:

- What happened (problem, attempts, solution) - Fix location analysis (attempted vs actual) - Failure modes identified - Prioritized recommendations

  1. Actionable Recommendations - Each with:

- Category, Priority, Location, Specific Change, Why It Helps

Completion Criteria

The skill is complete when you have:

  • Gathered PR diff and metadata
  • Analyzed fix location (attempted vs actual)
  • Identified failure modes
  • Generated at least one concrete recommendation
  • Presented findings to user

When to Use

  • After agent failed to find the right fix
  • After agent succeeded but took many attempts
  • After agent succeeded quickly (to understand what worked)
  • When asked "what can we learn from PR #XXXXX?"

When NOT to Use

  • Before PR is finalized (use pr-finalize first)
  • For trivial PRs (typo fixes, simple changes)
  • When no agent was involved (nothing to analyze)

Workflow

Step 1: Gather Data

# Required: Get PR info
gh pr view XXXXX --json title,body,files
gh pr diff XXXXX

Analyze the PR to extract learning:

  1. PR discussion - Comments reveal what was tried
  2. Commit history - Multiple commits may show iteration
  3. Code complexity - Non-obvious fixes suggest learning opportunities
  4. Similar past issues - Search for related bugs

Focus on: "What would have helped an agent find this fix faster?"

Step 2: Fix Location Analysis

Critical question: Did agent attempts target the same files as the final fix?

# Where did final fix go?
gh pr view XXXXX --json files --jq '.files[].path' | grep -v test
ScenarioImplication
Same filesAgent found right location
Different filesMajor learning opportunity - document why

If different files: Answer these questions:

  • Why did agent think that was the right file?
  • What search would have found the correct file?

Step 3: Analyze Outcome

Determine which scenario applies and look for the relevant patterns:

Scenario A: Agent Failed

PatternIndicator
Wrong file entirelyAll attempts in File A, fix in File B
Tunnel visionOnly looked at file mentioned in error
Trusted issue titleIssue said "crash in X" so only looked at X
Pattern not generalizedFixed one instance, missed others
Didn't search codebaseNever found similar code patterns
Missing platform knowledgeDidn't know iOS/Android/Windows specifics
Wrong abstraction layerFixed handler when problem was in core
Misread error messageError pointed to symptom, not cause
Incomplete contextDidn't read enough surrounding code
Over-engineeredComplex fix when simple one existed

Scenario B: Agent Succeeded Slowly (many attempts)

PatternIndicator
Correct file, wrong approachFound right file but tried wrong fixes first
Needed multiple iterationsEach attempt got closer but wasn't quite right
Discovery was slowEventually found it but search was inefficient
Missing domain knowledgeHad to learn something that could be documented

Key question: What would have gotten agent to the solution faster?

Scenario C: Agent Succeeded Quickly

PatternIndicator
Good search strategyFound right file immediately
Understood the patternRecognized similar issues from past
Documentation helpedExisting docs pointed to solution
Simple, minimal fixDidn't over-engineer

Key question: What made this work? Should we reinforce this pattern?

Step 4: Find Improvement Locations

# Discover where agent guidance lives
find .github/instructions -name "*.instructions.md" 2>/dev/null
find .github/skills -name "SKILL.md" 2>/dev/null
ls docs/design/ 2>/dev/null
ls .github/copilot-instructions.md 2>/dev/null
LocationWhen to Add Here
.github/instructions/*.instructions.mdDomain-specific AI guidance (testing patterns, platform rules)
.github/skills/*/SKILL.mdSkill needs new step, checklist, or improved workflow
/docs/design/*.mdDetailed architectural documentation
.github/copilot-instructions.mdGeneral AI workflow guidance
Code commentsNon-obvious code behavior

Step 5: Generate Recommendations

For each recommendation, provide:

  1. Category: Instruction file / Skill / Architecture doc / Inline comment / Linting issue
  2. Priority: High (prevents class of bugs) / Medium (helps discovery) / Low (nice to have)
  3. Location: Exact file path
  4. Specific Change: Exact text to add
  5. Why It Helps: Which failure mode it prevents

Prioritization factors:

  • How common is this pattern?
  • Would future agents definitely hit this again?
  • How hard is it to implement?

Pattern-to-Improvement Mapping (Failures/Slow Success):

PatternLikely Improvement
Wrong file entirelyCheck /docs/design/ for component relationships
Tunnel visionInstruction file: "Always search for pattern across codebase"
Missing platform knowledgePlatform-specific instruction file
Wrong abstraction layerReference /docs/design/HandlerResolution.md
Misread error messageCode comment explaining the real cause
Over-engineeredSkill enhancement: "Try simplest fix first"

Pattern-to-Improvement Mapping (Quick Success - reinforce):

PatternImprovement
Good search strategyDocument the search pattern that worked in skills
Documentation helpedNote which docs were valuable, ensure they stay updated
Recognized patternAdd to instruction files as known pattern

Step 6: Present Findings

Present your analysis covering:

  • What happened and what made it hard
  • Where agent looked vs actual fix location
  • Which patterns applied and evidence
  • Prioritized recommendations with full details (category, priority, location, exact change, why it helps)

Error Handling

SituationAction
PR not foundAsk user to verify PR number
No agent involvement evidentAsk user if they still want analysis
Can't determine failure modeState "insufficient data" and what's missing

Constraints

  • Analysis only - Don't apply changes (use learn-from-pr agent for that)
  • Actionable recommendations - Every recommendation must have specific file path and text
  • Don't duplicate - Check existing docs before recommending new ones
  • Focus on high-value learning - Skip trivial observations
  • Respect PR scope - Don't recommend improvements unrelated to the PR's learnings

Examples

Example: Wrong File Entirely

PR #33352 - TraitCollectionDidChange crash on MacCatalyst

What happened:

  • Issue title: "ObjectDisposedException in ShellSectionRootRenderer"
  • Agent made 11 attempts, ALL in ShellSectionRootRenderer.cs
  • Actual fix was in PageViewController.cs

Failure Mode: Trusted issue title instead of searching for pattern.

Recommendation:

  • Category: Instruction File
  • Location: .github/instructions/ios-debugging.instructions.md
  • Change: "When fixing iOS crashes, search for the PATTERN across all files, not just the file named in the error"
  • Why: Prevents tunnel vision on named file

Example: Slow Success

PR #34567 - CollectionView scroll position not preserved

What happened:

  • Agent took 5 attempts to find fix
  • First 3 attempts were in wrong layer (handler vs core)
  • Eventually found it after reading more context
  • Final fix was simple once the right layer was identified

Pattern: Wrong abstraction layer - fixed handler when problem was in core.

Recommendation:

  • Category: Architecture Doc
  • Location: .github/architecture/handler-vs-core.md
  • Change: Document layer responsibilities - handlers map properties, core handles behavior
  • Why: Helps agent identify correct layer faster

Example: Quick Success

PR #35678 - Button disabled state not updating

What happened:

  • Agent found fix in 1 attempt
  • Searched for "IsEnabled" pattern across codebase immediately
  • Found similar past fix in another control and applied same approach
  • Simple, minimal change

Pattern: Good search strategy - recognized pattern from similar code.

Recommendation:

  • Category: Skill Enhancement
  • Location: .github/skills/try-fix/SKILL.md
  • Change: Add to search strategy: "Search for same property pattern in other controls"
  • Why: Reinforces successful discovery technique

Integration

  • pr-finalize → Use first to verify PR is ready
  • learn-from-pr skill → Analysis only (this skill)
  • learn-from-pr agent → Analysis + apply changes

For automated application of recommendations, use the learn-from-pr agent instead.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.58%
按下载量换算62

Claude

28.67%
按下载量换算50

Cursor

18.74%
按下载量换算32

Gemini CLI

9.82%
按下载量换算17

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills