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

pr-review公关审查

Agent Skill

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

总安装

624

周安装

26

GitHub Stars

128

下载量

208
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/dynatrace-oss/dtctl --skill pr-review

简介

PR 质量审查工具对 Pull Request 进行多维度生产就绪性评估与风险识别。

  • 覆盖代码质量、测试覆盖、文档完整性与安全合规七个核心检查项。
  • 输出带文件路径和行号的实质性反馈,而非笼统评价,便于快速定位问题。
  • 依赖 git diff 和本地仓库状态,需确保当前分支与基线正确关联后再执行分析。
  • pr-review 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

PR Quality Review

Perform a comprehensive quality review of a pull request or feature branch. This skill covers production readiness, code quality, UX, documentation, tests, and safety.

The review is structured as a checklist across seven dimensions. For each dimension, investigate the actual code and report specific findings -- not just "looks good" but concrete observations with file paths and line numbers.

Getting Started

First, understand the scope of the change:

# What branch are we on, what's the base?
git branch --show-current
git log main..HEAD --oneline

# What files changed?
git diff main...HEAD --stat

# Full diff for review
git diff main...HEAD

If reviewing a remote PR, fetch it first:

gh pr view <number> --json title,body,files
gh pr diff <number>

Read the PR description and all commits to understand the intent before diving into code.

Review Dimensions

Work through each dimension below. For each one, report a status:

  • Pass -- meets the bar, no issues
  • Needs work -- specific issues found (list them)
  • N/A -- not applicable to this change

1. Production Readiness

Does this code behave correctly and handle failure gracefully?

  • Error handling: Are all errors checked? Are they wrapped with context (fmt.Errorf("context: %w", err))? Do they surface actionable messages to users?
  • Edge cases: Empty inputs, nil values, missing config, network failures, API rate limits, large datasets, pagination boundaries
  • Safety checks: All mutating commands (create, edit, apply, delete, update) must include safety checks after LoadConfig() and before client operations. Pattern: checker, err:= NewSafetyChecker(cfg) if err:= checker.CheckError(safety.OperationXXX, safety.OwnershipUnknown); err!= nil {return err} Verify correct operation type. Skip only in dry-run paths.
  • No stdout in library code: pkg/ must return data, not print. Only cmd/ handles output.
  • No hardcoded secrets or customer data: No real names, env IDs, tokens, or emails in code or tests. Use @example.invalid for emails (RFC 2606).

2. Code Quality

Is the code clean, idiomatic, and maintainable?

  • Go idioms: Follows Effective Go and Go Code Review Comments
  • Naming: Descriptive names, Go conventions (camelCase unexported, PascalCase exported), -er suffix for interfaces
  • File size: Files should be under 500 lines. Large files should be split.
  • Imports: Standard library first, then third-party, then internal (github.com/dynatrace-oss/dtctl)
  • Duplication: Look for copy-pasted code that should be extracted into helpers
  • Comments: Exported functions/types documented. Comments explain "why" not "what".
  • Consistent patterns: New code should follow existing patterns in the codebase. Check similar resources in pkg/resources/ for reference implementations.

Run the linter to catch issues the eye might miss:

make lint-strict

3. User Experience

Does this feel right from the user's perspective?

  • Command naming: Follows the dtctl <verb> <resource> pattern. No custom query flags -- use DQL passthrough.
  • Output formatting: Table output is readable, columns make sense, no misalignment. JSON/YAML output is clean.
  • Error messages: Clear, actionable, suggest next steps. In agent mode (-A), errors are structured JSON with machine-readable codes.
  • Interactive behavior: Name resolution, disambiguation prompts work. --plain disables interactive behavior.
  • Help text: Command has a Short description, Long description, and Example field. Parent verb commands have examples.
  • Aliases: Resource has sensible aliases (e.g., wf for workflow, dash for dashboard).
  • Agent mode: Commands support --agent envelope with contextual suggestions. Test with -A -o json.
  • Color control: Respects NO_COLOR, FORCE_COLOR, --plain, and TTY detection.

Try running the actual commands to see how they feel:

# Does the help text look good?
dtctl <command> --help

# Does table output look right?
dtctl <command> --plain

# Does agent mode work?
dtctl <command> -A

4. Test Coverage

Are the changes well-tested?

  • Unit tests: New functions have tests. Table-driven tests preferred.
  • Coverage targets: 70% minimum overall, 80% for new packages, 90% for critical packages (pkg/client, pkg/config).
  • Edge case tests: Not just happy paths -- test error conditions, empty inputs, boundary values.
  • Mock server guards: Paginated mock servers must reject invalid parameter combinations (e.g., page-size + page-key). Settings API mocks must also reject schemaIds/scopes with nextPageKey.
  • Golden tests: If output formatting changed or a new resource was added, golden files must be updated. Check: go test./pkg/output/ -run TestGolden Golden tests use real production structs from pkg/resources/* -- never test-only duplicates.
  • E2E tests: Integration scenarios in test/e2e/ for new resources or complex workflows.
# Run full suite
go test ./...

# Check coverage
make test-coverage

5. Documentation

Is the change properly documented for users and contributors?

Always required:

  • CHANGELOG.md: Entry under [Unreleased] following Keep-a-Changelog format. Bold feature name with em dash and description.

Required for new features:

  • README.md: Updated if the feature is user-facing and significant (new resource type, new command category)
  • docs/QUICK_START.md: Usage examples for major new features
  • docs/dev/IMPLEMENTATION_STATUS.md: Feature matrix rows updated
  • docs/dev/API_DESIGN.md: Design patterns documented if introducing new conventions
  • docs/TOKEN_SCOPES.md: New scopes documented if the feature requires additional API permissions

Required for new resources:

  • Resource-specific doc page in docs/ or docs/site/_docs/
  • Command reference updated in docs/site/_docs/command-reference.md

Required for new AI agent support:

  • README.md, CHANGELOG.md, docs/QUICK_START.md, docs/dev/API_DESIGN.md, docs/dev/IMPLEMENTATION_STATUS.md (all five)

6. GitHub Pages

If the change adds a new user-facing feature, is the documentation site updated?

The site lives in docs/site/ and deploys via GitHub Actions on pushes to main that touch docs/site/**.

Check:

  • New doc page: Does the feature need a page in docs/site/_docs/? Use YAML frontmatter with title, layout: docs.
  • Navigation: Is the new page added to docs/site/_includes/docs-nav.html in the correct section (Getting Started / Resources / Reference)?
  • Landing page: Does docs/site/index.md need updating? (e.g., new resource in the feature table, new capability mentioned)
  • Existing pages: Are related pages updated to mention the new feature? (e.g., a new output format should appear on the output-formats page)
  • Links: All links work, relative paths are correct, no broken references.

7. PR Description

Is the PR itself well-described?

  • Title: Clear, follows conventional commit style (feat:..., fix:...)
  • Summary: Explains what changed and why (not just what files were touched)
  • Related issues: References issues with Closes #NNN or Fixes #NNN
  • Breaking changes: Called out explicitly if any
  • Testing section: Describes how the change was tested
  • UX examples: Before/after CLI output for user-facing changes

Review Output

After completing the review, provide a summary in this format:

## PR Review: <title>

| Dimension | Status | Notes |
|-----------|--------|-------|
| Production readiness | Pass/Needs work | ... |
| Code quality | Pass/Needs work | ... |
| User experience | Pass/Needs work | ... |
| Test coverage | Pass/Needs work | ... |
| Documentation | Pass/Needs work | ... |
| GitHub Pages | Pass/Needs work/N/A | ... |
| PR description | Pass/Needs work | ... |

### Issues Found
1. **[Dimension]** file:line -- description of issue
2. ...

### Suggestions (non-blocking)
1. ...

### Verdict
Ready to merge / Needs revisions (list blockers)

Be direct and specific. Reference exact file paths and line numbers. Distinguish between blocking issues (must fix) and suggestions (nice to have). Don't pad the review with praise -- focus on what needs attention.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

38.65%
按下载量换算80

Claude

27.54%
按下载量换算57

Cursor

20.78%
按下载量换算43

Gemini CLI

10.51%
按下载量换算22

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills