Agent Skillswarpdotdev/oz-for-oss › update-pr-review

update-pr-review

GitHub

根据 PR 评论中的人类反馈,自动聚合并分析重复信号,用于优化本地 review-pr-local 和 review-spec-local 技能文档,实现代码审查能力的自我迭代。

.agents/skills/update-pr-review/SKILL.md warpdotdev/oz-for-oss

Trigger Scenarios

需要整合人类对 Agent PR 评论的反馈 提取重复的审查意见以改进本地技能

Install

npx skills add warpdotdev/oz-for-oss --skill update-pr-review -g -y
More Options

Non-standard path

npx skills add https://github.com/warpdotdev/oz-for-oss/tree/main/.agents/skills/update-pr-review -g -y

Use without installing

npx skills use warpdotdev/oz-for-oss@update-pr-review

指定 Agent (Claude Code)

npx skills add warpdotdev/oz-for-oss --skill update-pr-review -a claude-code -g -y

安装 repo 全部 skill

npx skills add warpdotdev/oz-for-oss --all -g -y

预览 repo 内 skill

npx skills add warpdotdev/oz-for-oss --list

SKILL.md

Frontmatter
{
    "name": "update-pr-review",
    "description": "Update the repo-local review-pr-local and review-spec-local companion skills using human feedback left on pull request conversations. Use when aggregating replies to agent-authored PR review comments, incorporating broader human review comments, extracting repeated reviewer feedback, and refining .agents\/skills\/review-pr-local\/SKILL.md and .agents\/skills\/review-spec-local\/SKILL.md with evidence-backed adjustments."
}

Update PR Review

Use this skill to improve the repo-local review companions .agents/skills/review-pr-local/SKILL.md and .agents/skills/review-spec-local/SKILL.md from real reviewer feedback. The shared review-pr skill and the repo-local core .agents/skills/review-spec/SKILL.md are the cross-repo contracts and are read-only from this loop.

The repository uses two separate review skills: review-pr for code pull requests and review-spec for spec-only pull requests (PRs where every changed file lives under specs/). Feedback from each category of PR should be routed to the corresponding repo-local companion.

Write surface

This self-improvement loop may only write to:

  • .agents/skills/review-pr-local/ (and SKILL.md inside it)
  • .agents/skills/review-spec-local/ (and SKILL.md inside it)

It must NOT touch:

  • the shared review-pr skill
  • .agents/skills/review-spec/SKILL.md (the core contract)
  • any file under .github/issue-triage/ (that taxonomy is owned by the update-triage loop)
  • any other core skill

The self-improvement runner enforces this via a git diff check against allowed prefixes before pushing. A violation aborts the run.

Inputs

  • Optional repository override if you are not running from the target checkout.
  • Optional time window override when you need something other than the default seven-day lookback.
  • Optional agent-login override if the review comments were not authored by the default bot identities.

Workflow

  1. Verify GitHub CLI auth:
gh auth status
  1. Aggregate the feedback for pull requests updated over the last week with the bundled script:
python3 .agents/skills/update-pr-review/scripts/aggregate_review_feedback.py

By default this targets the current repo, looks back 7 days, and analyzes review comments authored by the bot identities used by the PR review workflow (warp-dev-github-integration[bot]). It also collects broader human review comments from those PRs so the skill can learn from reviewer norms even when they were not replying directly to the bot. The script writes structured JSON to a temporary file and prints the temp-file path. Treat that file as scratch state for this skill, not as a user-facing deliverable or final output. If you need a repository other than the current checkout, pass --repo owner/name. If you need a different author identity, pass --agent-login <login> one or more times.

Each pull request in the output includes a review_type field that is either "spec" (all changed files under specs/) or "code" (any non-spec file changed). Use this field to route feedback to the correct skill.

  1. Read the generated JSON and look for repeated reviewer signals, especially:
  • replies that say the agent's feedback was wrong, invalid, not applicable, or based on a bad assumption
  • signals that the agent had the right instinct but the wrong severity, scope, line targeting, or proposed fix
  • feedback that the comment was not actionable enough, including requests for clearer concrete changes
  • recurring cases where humans override the bot because repository or product context changes the right call
  • review patterns from human-only threads that show what experienced reviewers in this repo consistently care about
  • explicit reviewer guidance about what belongs inline, what belongs in the summary, and when the bot should stay uncertain
  1. Partition the feedback by review_type:
  • Feedback from "code" PRs applies to .agents/skills/review-pr-local/SKILL.md.
  • Feedback from "spec" PRs applies to .agents/skills/review-spec-local/SKILL.md.
  • Update each companion skill independently with the smallest rule change that explains the feedback for that category.
  • If feedback for one category is empty, skip that companion.
  1. Keep the core review contract stable — never edit the shared review-pr skill or .agents/skills/review-spec/SKILL.md. Only the -local companions evolve from feedback.

Evidence Rules

  • Prefer patterns backed by multiple threads or a strong explicit maintainer statement.
  • Do not weaken correctness, security, or data-loss checks because of a single disagreement.
  • Separate feedback about review quality from feedback about repository-specific preferences.
  • Avoid encoding one-off reviewer preferences as universal rules.
  • If the feedback points to missing repository context, add that context only if it improves review precision.
  • Do not mix code-review feedback into the spec skill, or spec-review feedback into the code skill.

Intermediary State

The script builds structured JSON that captures:

  • pull request metadata for the recent PR window, including review_type classification
  • agent-authored review comments that received human replies
  • human-authored review comments from the same PRs, even when they were not replying to the bot
  • thread metadata like file path, line, resolution, and outdated state
  • normalized agent-comment fields such as severity label and whether a suggestion block was present
  • the full set of human replies for each agent comment
  • top-level PR issue comments for broader review context

Use that temporary data as evidence when refining the skills, then remove it before finishing if you wrote it to disk explicitly.

Final Checks

  • Re-read the updated review-pr-local and/or review-spec-local companion skills and confirm any new rules are explicit.
  • Keep each companion concise; do not turn them into long style guides.
  • Commit any changes on a local branch named oz-agent/update-pr-review. Do NOT push the branch; the Python entrypoint will run a write-surface guard and push only when the guard passes.
  • If the updates warrant a PR, it will be opened from the pushed branch. Tag @captainsafia as a reviewer on that PR.
  • Validate any temporary JSON with jq before relying on it.

Version History

  • 345a0f5 Current 2026-07-24 17:41

Same Skill Collection

.agents/skills/bootstrap-issue-config/SKILL.md
.agents/skills/create-product-spec/SKILL.md
.agents/skills/create-tech-spec/SKILL.md
.agents/skills/dedupe-issue-local/SKILL.md
.agents/skills/dedupe-issue/SKILL.md
.agents/skills/evaluate-auto-implement-eligibility-local/SKILL.md
.agents/skills/implement-issue/SKILL.md
.agents/skills/review-pr-local/SKILL.md
.agents/skills/review-spec-local/SKILL.md
.agents/skills/review-spec/SKILL.md
.agents/skills/security-review-pr/SKILL.md
.agents/skills/security-review-spec/SKILL.md
.agents/skills/triage-issue-local/SKILL.md
.agents/skills/triage-issue/SKILL.md
.agents/skills/update-dedupe/SKILL.md
.agents/skills/update-triage/SKILL.md
.agents/skills/verify-pr/SKILL.md

Metadata

Files
0
Version
90a5989
Hash
3a1ba76f
Indexed
2026-07-24 17:41

inicio - Wiki
Copyright © 2011-2026 iteam. Current version is 2.155.2. UTC+08:00, 2026-08-18 03:14
浙ICP备14020137号-1 $mapa de visitantes$