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

pr-retro公关复古

Agent Skill

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

总安装

9,510

周安装

381

GitHub Stars

318

下载量

3,078
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/boshu2/agentops --skill pr-retro

简介

pr-retro 用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词、任务场景或来源线索快速定位候选结果。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装,需结合原始 README 核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写操作。
  • pr-retro 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

PR Retro Skill

Learn from PR outcomes by analyzing accept/reject patterns.

Overview

After a PR is merged or rejected, analyze what worked and what didn't to improve future contributions.

Output: .agents/learnings/YYYY-MM-DD-pr-{repo}-{outcome}.md

When to Use:

  • After a PR is merged (capture success patterns)
  • After a PR is rejected (understand why)
  • After receiving significant review feedback
  • Periodically to review contribution patterns

Workflow

1.  PR Discovery    -> Find the PR to analyze
2.  Outcome Analysis -> Merged/rejected/changes requested
3.  Feedback Extraction -> What did reviewers say?
4.  Pattern Identification -> What worked/didn't
5.  Lesson Extraction -> Reusable learnings
6.  Output -> Write retro document

Phase 1: PR Discovery

# If PR number provided
gh pr view <number> --json state,reviews,comments,mergedAt,closedAt

# Find recent PRs by you
gh pr list --state all --author @me --limit 10

# Find PRs to a specific repo
gh pr list -R <owner/repo> --state all --author @me --limit 10

Phase 2: Outcome Analysis

OutcomeMeaningFocus
MergedSuccessWhat worked?
Closed (not merged)RejectedWhy?
Open (stale)Ignored/abandonedWhat went wrong?
Changes requestedNeeds workWhat feedback?
# Get PR outcome
gh pr view <number> --json state,mergedAt,closedAt,reviews

Phase 3: Feedback Extraction

# Get all review comments
gh pr view <number> --json reviews --jq '.reviews[] | "\(.author.login): \(.body)"'

# Get all comments
gh api repos/<owner>/<repo>/pulls/<number>/comments --jq '.[].body'

# Get requested changes
gh pr view <number> --json reviews --jq '.reviews[] | select(.state == "CHANGES_REQUESTED")'

Feedback Categories

CategoryExamples
StyleNaming, formatting, conventions
TechnicalAlgorithm, architecture, patterns
ScopeToo big, scope creep, unrelated changes
TestingMissing tests, coverage, edge cases
DocumentationMissing docs, unclear comments
ProcessWrong branch, missing sign-off

Phase 4: Pattern Identification

Success Patterns (If Merged)

What WorkedEvidence
Small, focused PR< 5 files
Followed conventionsNo style comments
Good testsNo "add tests" requests
Clear descriptionQuick approval

Failure Patterns (If Rejected)

What FailedEvidence
Too large"Please split this PR"
Scope creep"This is out of scope"
Missing tests"Please add tests"
Wrong approach"Consider using X instead"

Phase 5: Lesson Extraction

Lesson Template

## Lesson: [Title]

**Context**: [When does this apply?]
**Learning**: [What did we learn?]
**Action**: [What to do differently?]

**Evidence**:
- PR #N: [quote or summary]

Common Lessons

LessonAction
PR too largeSplit PRs under 200 lines
Missing contextAdd "## Context" section
Style mismatchRun linter before PR
Missing testsAdd tests for new code
Slow reviewPing after 1 week

Phase 6: Output

Write to .agents/learnings/YYYY-MM-DD-pr-{repo}-{outcome}.md

# PR Retro: {repo} #{number}

**Date**: YYYY-MM-DD
**PR**: {url}
**Outcome**: Merged / Rejected / Stale

## Summary

{What was the PR about? What happened?}

## Timeline

| Date | Event |
|------|-------|
| {date} | PR opened |
| {date} | First review |
| {date} | {outcome} |

## Feedback Analysis

### Positive Feedback
- {quote}

### Requested Changes
- {quote}

### Rejection Reasons (if applicable)
- {quote}

## Lessons Learned

### Lesson 1: {title}
**Context**: {when this applies}
**Learning**: {what we learned}
**Action**: {what to do differently}

## Updates to Process

{Any changes to make to pr-prep, pr-plan, or other skills}

## Next Steps

{Future actions based on this retro}

Anti-Patterns

DON'TDO INSTEAD
Skip retros on merged PRsLearn from success too
Blame maintainersFocus on what YOU can change
Generic lessonsSpecific, actionable learnings
Skip rejected PRsMost valuable learning source

Examples

Learn From Rejected PR

User says: "Run a retro on why this PR was rejected."

What happens:

  1. Analyze reviewer feedback and timeline.
  2. Identify preventable process and scope issues.
  3. Capture reusable lessons for future PRs.

Learn From Successful Merge

User says: "Extract what worked from this merged PR."

What happens:

  1. Identify patterns that sped review/approval.
  2. Distill actionable playbook updates.
  3. Save lessons for future contribution flows.

Troubleshooting

ProblemCauseSolution
Retro is genericFeedback not tied to evidenceCite specific comments/decisions and outcomes
No clear lesson extractedAnalysis stayed descriptiveConvert observations into behavior changes
Maintainer signal is mixedContradictory review commentsSeparate hard blockers from preference feedback
Process changes not adoptedLessons not operationalizedAdd explicit updates to prep/plan/validate workflow

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.62%
按下载量换算1,158

Claude

30.59%
按下载量换算942

Cursor

17.34%
按下载量换算534

Gemini CLI

9.49%
按下载量换算292

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills