Token导航 LogoToken导航TokenDH.com
开发执行命令github未标认证来源可访问许可证需确认审计异常

pr-review公关审查

Agent Skill

pr-review 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,182

周安装

78

GitHub Stars

234

下载量

715
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/openshift/oc --skill 'PR Review'

简介

pr-review 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 适用于 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理的场景。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装,需结合原始 README 核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写操作。
  • 该技能归类为开发,适合 Pull Request 审查相关的协作支持。

SKILL.md

PR Review

Perform a comprehensive review of pull requests for the oc repository, which is a CLI tool based on kubectl that provides kubectl commands plus OpenShift-specific functionality.

When to Apply

Use this skill when:

  • Reviewing a pull request
  • User asks to review code changes
  • User requests /pr-review or similar commands

Review Process

Follow these steps in order:

1. Dependencies Verification

Ensure Go dependencies are consistent by running:

  • go mod tidy -diff

- This command ensures that go.mod and go.sum are consistent and match the source code in the module.

2. Build Verification

Run the build to ensure code compiles:

make oc
  • If build fails, report errors and stop the review
  • If build succeeds, proceed to testing
  • Note: Use make oc instead of make build to avoid building for all architectures (faster)

3. Code Verification

Run verification checks to catch style and potential issues:

make verify

This runs multiple verification targets including:

  • verify-gofmt - Go formatting checks
  • verify-golint - Linting checks
  • verify-govet - Go vet checks
  • verify-cli-conventions - CLI-specific conventions
  • verify-generated-completions - Generated code verification
  • Report any verification errors or warnings
  • Note any patterns that need addressing

4. Test Execution

Run the test suite to verify functionality:

make test
  • Report any test failures with details
  • If critical tests fail, flag for immediate attention
  • Proceed even if some tests fail (document them)
  • Known Issue: Test failure in github.com/openshift/oc/pkg/cli (kubeconfig error) can be ignored

5. Code Review & Go Style Application

After running the above checks, review the changed code and apply Go best practices. Start by:

  • Load changes against the base branch by using git diff. The base branch is main by default, but it can be overwritten by [base-git-branch] argument when this skill is invoked using pr-review command directly.
  • Understand the scope of the changes.

Then proceed to review. Follow these steps:

  • Effective Go Principles: Apply the Effective Go skill automatically

- Use gofmt for formatting - Follow Go naming conventions (MixedCaps/mixedCaps, no underscores) - Ensure proper error handling (no ignored errors) - Check for idiomatic Go patterns

  • oc-Specific Considerations:

- Ensure kubectl compatibility is maintained - Verify OpenShift-specific commands follow existing patterns - Check that CLI output follows consistent formatting - Validate flag definitions match kubectl conventions where applicable

  • Breaking Changes:

- Ensure that the command line API is backwards-compatible - Check for CLI flag removals or renames - Check for changes in command line arguments

  • Code Quality:

- Look for potential race conditions - Check for resource leaks (unclosed files, connections, goroutine leaks) - Goroutine leak patterns to watch: - Goroutines without context cancellation handling - Missing select with ctx.Done() case - Unbounded channel operations without timeouts - go func() without proper lifecycle management - Use errgroup or sync.WaitGroup for coordinated goroutines - Verify proper context propagation - Ensure appropriate logging levels

  • Documentation:

- All exported functions/types should have doc comments - CLI command help text should be clear and complete - Complex logic should have explanatory comments

6. Apply Fixes

Based on the review:

  • Fix any linting issues automatically where safe
  • Apply gofmt and goimports formatting
  • Suggest or implement idiomatic Go improvements
  • Document any issues that require manual review

7. Summary

Provide a structured summary:

  • ✅ Build status
  • ✅ Test results (pass/fail counts)
  • ✅ Linting status
  • 📝 Code quality observations
  • 🔧 Changes applied (if any)
  • ⚠️ Issues requiring attention

Key Checks for oc

Since oc is built on kubectl:

  • Verify upstream kubectl compatibility
  • Check for proper use of kubectl libraries
  • Ensure OpenShift-specific features are clearly separated
  • Validate that CLI behavior matches kubectl conventions

References

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.28%
按下载量换算259

Claude

29.16%
按下载量换算208

Cursor

17.18%
按下载量换算123

Gemini CLI

9.51%
按下载量换算68

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

可疑

权限和风险

执行命令

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

安装前确认

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

来源信息

继续浏览同类 Skills