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

pr公关

Agent Skill

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

总安装

1,317

周安装

56

GitHub Stars

4

下载量

461
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/derogab/agent-kit --skill pr

简介

pr 用于创建或更新当前分支的 Pull Request,自动匹配 main/master 基分支并填充标题和正文模板。

  • 它调用 gh pr view 检查是否存在关联 PR,若存在则更新内容,否则新建一个并返回 URL 供查看。
  • 遵循仓库约定模板 thoughts/shared/pr_description.md,未找到模板时将提示用户先行创建标准格式文件。
  • 安装前请确认 GitHub CLI 已安装并认证,该技能会执行网络请求和分支操作,需具备相应仓库写权限。
  • pr 属于待分类类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Context

  • Current branch:!git branch --show-current
  • Default branch candidates:!git branch -r | grep -E 'origin/(main|master)'
  • PR for this branch:!gh pr view --json number,title,url 2>/dev/null || echo "NO_PR"

Your task

Create or update a pull request for the current branch.

Pre-flight checks

  1. Detect the base branch by running: git rev-parse --verify origin/main >/dev/null 2>&1 && echo main || echo master. Use this as <base>.
  2. If the current branch is the base branch, stop and tell the user to switch to a feature branch first. Do nothing else.
  3. Run git log <base>..HEAD --oneline. If there are no commits ahead of the base branch, stop and tell the user to commit changes first. Do nothing else.
  4. Never run git add or git commit. Only manage the PR.

Analysis

  1. Run git diff <base>...HEAD to get the full diff of all changes on this branch.
  2. Run git log <base>..HEAD --format="%h %s" to get all commit messages.
  3. Identify the main topic, group specific changes logically.

Decide: create or update

  • If the PR context above shows NO_PRcreate a new PR.
  • If a PR is found for the current branch → update that PR.

PR title

Follow Conventional Commits format: <type>: <description>.

Types: feat, fix, docs, refactor, test, chore, build, perf, ci. Append ! for breaking changes.

When updating, keep the existing title unless it is generic (e.g. "Update"), outdated, or does not follow Conventional Commits.

PR body format

First, check if the repository has a PR template. Look for these files in order:

  1. pull_request_template.md in the repo root
  2. .github/pull_request_template.md
  3. .github/PULL_REQUEST_TEMPLATE/*.md

If multiple templates exist in .github/PULL_REQUEST_TEMPLATE/:

  • Read all template files in that directory
  • Analyze the current changes (types of files modified, nature of changes)
  • Select the template whose filename and content best match the changes (e.g., bugfix.md for bug fixes, feature.md for new features, docs.md for documentation changes)

If a template is found:

  • Use the template's content as the PR body
  • Replace any placeholder variables (e.g., {{description}}, {{summary}}) with actual content derived from the changes
  • If the template includes a checklist, only check items that are truly complete and verified. Leave items unchecked when the related work is not done, not validated yet, or failed.
  • If you can reasonably perform a check needed to validate a checklist item (for example by reading the diff, inspecting files, or running an available verification command), do it before deciding whether the item should be checked.

If no template is found, use this default format:

## Summary
<1-2 sentence high-level description of what this PR does and why>

## Changes
<bulleted list of all meaningful changes, grouped logically>

## Test plan
<bulleted checklist of how to verify these changes>

Execution

Create flow:

  1. Push the branch to origin: git push -u origin <branch>.
  2. Create the PR: gh pr create --title "<title>" --body "$(cat <<'EOF' <body> EOF)"

Update flow:

  1. Update the PR: gh pr edit --title "<title>" --body "$(cat <<'EOF' <body> EOF)"

Rules

  • Write the summary in plain English, focusing on the why and the what.
  • List changes as concise bullet points. Group related items under sub-headers if the PR touches multiple areas.
  • The test plan should contain actionable verification steps relevant to the changes. If a check was already run and passed, mark it as done.
  • If the PR body includes a checklist from a template, never auto-check every item. Each checked item must match work that is actually done and confirmed.
  • When a checklist item can be validated with available evidence or commands, verify it instead of guessing.
  • Do not send any text besides the tool calls.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.09%
按下载量换算162

Claude

29.82%
按下载量换算137

Cursor

17.71%
按下载量换算82

Gemini CLI

8.88%
按下载量换算41

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

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

安装前确认

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

来源信息

继续浏览同类 Skills