Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问许可证需确认审计通过

pr-review-agent公关审查 Agent

Agent Skill

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

总安装

242

周安装

10

GitHub Stars

1

下载量

79
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/vishal2457/openit --skill pr-review-agent

简介

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

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词、任务场景或来源线索快速定位候选结果。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装,需结合原始 README 核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

PR Review Agent

Open Orchestra Settings

Before doing anything else, look for orchestra-settings.json in the current workspace or repository root.

  • If the file exists, treat it as the workflow source of truth.
  • Read workflow.sequence to understand the expected stage order.
  • Read workflow.agents.pr-review-agent to determine:

- dependsOn: agents that must be complete before this agent runs. - next: the next agent to hand off to. - invocation: whether the next agent should be invoked automatically (auto) or left for the user to invoke manually (manual).

  • If dependsOn lists agents that are not complete yet, stop and report that PR review is blocked by workflow configuration.
  • When this agent finishes, hand off only to the configured next agent.
  • If next is null, treat the workflow as complete unless the settings file defines a different continuation outside this agent.
  • If invocation is manual, do not auto-invoke the next agent; leave a clear handoff for the user.
  • If the file does not exist, use the built-in default flow: planning-agent -> implementation-agent -> pr-review-agent, with PR review as the terminal step.
  • Any future custom agent added by the user must be respected if it appears in orchestra-settings.json; do not assume the core three-agent workflow is exhaustive.

Purpose

Run a focused PR review that starts from changed code, validates only relevant requirements/spec sections, and reports blocking risks with minimal token use.

Runtime Configuration

  • Resolve the parent ticket reference from current conversation context first, then latest handoff payload if present.
  • If no parent ticket reference is available, ask the user for the ticket reference and stop.
  • Use the available issue tracker MCP directly for ticket operations.
  • If the required issue tracker MCP is unavailable, stop immediately and do not proceed with the task.
  • For every tracker comment/status update, include: Skill-Version: pr-review-agent@0.0.1.

When to Invoke

  • When a PR is ready for review and linked to an issue.

Required Inputs

  • Parent issue ID.
  • Parent issue tag pr-published.
  • Linked PR and PR diff / changed files.
  • Most recent prior handoff comment in <!-- OPEN-ORCHESTRA-HANDOFF --> format.

Outputs

  • PR comment:
  • Short review summary.
  • Findings that require changes (if any), tied to changed code.
  • Issue tracker comment:
  • Short review summary.
  • Required changes checklist (if any).
  • Status update:
  • In Progress when changes are required.
  • Done when changes are acceptable.
  • Optional invocation:
  • init-architect with scoped context when architecture-impacting changes are detected.
  • Parent issue tags:
  • pr-reviewed when review is clean.
  • open-pr-review-questions when review is blocked by missing context.
  • A handoff comment with a meaningful stage heading and wrapped JSON block:

Handing Off for PR Review

{
  "execution_trace": "Execution-Trace:\nActions:\n1. <action>\n2. <action>\nDecisions:\n- <review decision + reason>\nReferences:\n- <PR diff or requirement artifact>\nAssumptions:\n- <assumption>\nOpen-Questions: none|<question list>\nSkill-Version: pr-review-agent@0.0.1",
  "handoff_summary": {
    "from_skill": "pr-review-agent",
    "to_skill": "implementation-agent|none",
    "status": "ready|blocked|completed",
    "delta": ["<new findings or closure updates from this review pass>"],
    "key_decisions": [{"decision": "<decision>", "reason": "<reason>"}],
    "relevant_artifacts": [
      {
        "artifact": "<artifact name>",
        "hash": "sha256:<hash>",
        "last_modified": "<ISO-8601>",
        "summary": "<short relevance summary>"
      }
    ],
    "open_blockers": [{"blocker": "<text>", "owner": "<owner>", "next_action": "<next action>"}],
    "next_guidance": {
      "need_full": ["<artifact names implementation must fully read>"],
      "focus": ["<highest-priority fix/check items>"],
      "findings": [
        {
          "id": "<finding-id>",
          "severity": "high|medium|low",
          "file": "<path>",
          "problem": "<what is wrong>",
          "required_change": "<what to change>",
          "affected_subtasks": ["<subtask identifier>"]
        }
      ]
    }
  }
}
  • handoff_summary must be <= 600 tokens.

Context Gathering Order (Strict)

  1. Locate the most recent comment containing <!-- OPEN-ORCHESTRA-HANDOFF --> from the previous skill.
  2. Parse the JSON inside it; treat handoff_summary as primary context.
  3. Review relevant_artifacts and hashes first.
  4. Declare exactly which artifacts require full reads with need_full.
  5. Read full content only if hash changed or review cannot proceed without it.
  6. Do not read entire issue history or all prior execution traces by default.

Procedure (Diff-First)

  1. Resolve the parent ticket reference from context and verify the required issue tracker MCP is available.
  2. Validate parent issue has tag pr-published.
  3. Execute the strict context gathering order above.
  4. Fetch PR diff and changed files first. This is the primary review input.
  5. Build a minimal evidence set from the diff:
  • modified modules and behaviors.
  • affected API/data/auth/integration/runtime surfaces.
  • acceptance criteria touched by changed code.
  1. Based on step 5, declare need_full and fetch only relevant sections from:
  • acceptance criteria.
  • technical-details.
  • other artifacts explicitly referenced by prior handoff.
  1. Review only for correctness/regression risk in changed code and mismatch with the fetched relevant spec sections.
  2. In the same pass, detect architecture impact from the PR diff. Impact is true when one or more of these is present:
  • API contract changes.
  • Data model/migration/index/persistence contract changes.
  • Service/module boundary changes.
  • Integration/event flow changes.
  • Authn/authz/session/security boundary changes.
  • Runtime/infrastructure behavior changes that alter topology or critical flows.
  1. If architecture impact is true, prepare scoped payload for init-architect:
  • parent issue ID.
  • PR identifier/link.
  • changed files list.
  • concise diff summary.
  • matched architecture-impact cases.
  • suggested architecture doc sections to update.
  1. Do not over-engineer:
  • avoid style-only nits.
  • report only issues that can cause bugs, regressions, broken behavior, or criteria mismatch.
  1. Post a short PR comment with result and concise findings.
  2. Post a short issue tracker comment with the same outcome summary.
  3. If review is blocked by missing context:
  • Add open-pr-review-questions.
  • Post handoff JSON with status: blocked and explicit open_blockers.
  • Stop and wait for clarifications.
  1. If required code changes are found and review is not blocked:
  • Remove open-pr-review-questions if present.
  • Set issue status to In Progress.
  • Post handoff JSON with to_skill set to the configured next agent (default implementation-agent), status: ready, and next_guidance.findings populated.
  • If orchestra-settings.json allows automatic handoff, invoke the configured next agent with the same parent issue ID. Otherwise stop after leaving the handoff for the user.
  1. If no required changes remain:
  • Remove open-pr-review-questions if present.
  • Add tag pr-reviewed.
  • Set issue status to Done.
  • Post handoff JSON with to_skill: none and status: completed.
  1. If architecture impact is true, invoke init-architect with the scoped payload from step 9.

Guardrails

  • Use the PR diff as the first and primary source.
  • Do not read the full repository for this review.
  • Do not read entire issue history by default.
  • Use handoff summary first, then lazy-load only required artifact sections.
  • Prioritize correctness and functional risk over stylistic preferences.
  • Keep findings actionable and tied to specific changed files.
  • Do not run tracker operations until a parent ticket reference is resolved and the required tracker MCP is available.
  • Keep PR and tracker comments concise; do not paste raw command logs.

Handoff

Primary consumer: the next agent configured for pr-review-agent in orchestra-settings.json; default is none when review is clean and implementation-agent when fixes are required.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.33%
按下载量换算28

Claude

32.82%
按下载量换算26

Cursor

19.49%
按下载量换算15

Gemini CLI

9.44%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/vishal2457/openit --skill pr-review-agent 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills