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

pr公关

Agent Skill

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

总安装

364

周安装

15

GitHub Stars

2

下载量

119
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/benjaming/ai-skills --skill pr

简介

pr 自动化生成符合规范的 Pull Request,支持 Jira 与 Linear 工单关联与类型识别。

  • 适用于 Codex、Claude、Cursor、Gemini CLI,遵循固定流程确保提交质量与可追溯性。
  • 包含 diff 审查、变更说明撰写与平台特定要求检查,减少人为疏漏风险。
  • 使用前需确认 Git 工作流与 issue 追踪系统配置正确,避免格式错误导致合并失败。
  • pr 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Publish PR

!IMPORTANT: Follow this process, no matter what. Do not deviate from it.

Publish a pull request by following this automated workflow.

Arguments: $0 = [type] [ISSUE-ID] (both optional)

  • /pr — auto-detect type, no issue
  • /pr fix — fix PR, no issue
  • /pr fix ENG-1234 — fix PR with a Linear issue
  • /pr fix MITB-565 — fix PR with a Jira issue
  • /pr ENG-1234 — auto-detect type with an issue ID ([A-Z]+-\d+ matches both Linear and Jira; tracker is resolved in Step 1.6)

1. Review the Full Diff

For mk-copilot project:

git --no-pager diff develop   # Inspect everything that changed vs. develop

For all other projects:

First ensure you're in the right directory:

pwd

If not in the project directory:

cd <project-directory>

Then inspect the diff:

git --no-pager diff master   # Inspect everything that changed vs. master

or

git --no-pager diff main     # Inspect everything that changed vs. main

*If anything looks off, pause and ask for confirmation. Use AskUserQuestion tool to ask the user for confirmation.*

1.5. Determine PR Type (MANDATORY if not provided)

Skip this step only if:

  • PR type was explicitly provided via /pr [type] argument.
  • You are confident in the type based on the diff.

Analysis Approach:

  • Examine file paths changed (e.g., *.test.*, docs/, configuration files)
  • Analyze the diff content for patterns (new features, bug fixes, refactoring, etc.)
  • Review the scope and scale of changes
  • Check for conventional commit indicators in changes

Type Detection Rules:

  • feature (feat): New functionality, new files/directories, significant additions to existing files
  • fix: Bug fixes, error handling, small focused changes addressing issues
  • chore: Dependency updates, config changes, build files, maintenance tasks
  • refactor: Code restructuring, reorganization without changing behavior
  • docs: Documentation, README, or content-only changes
  • test: Test file additions or modifications
  • perf: Performance optimizations
  • style: Formatting, linting, or style-only changes

Mandatory Action Items:

  1. Analyze the diff output from Step 1
  2. Identify which files changed and what type of changes they represent
  3. Determine the most likely PR type based on rules above
  4. Present your analysis: "Based on the diff, I determined this is a [TYPE] PR because [specific reason from the changes]"
  5. Ask for confirmation if confidence < 100%: "Does this look correct, or would you prefer [alternative type]?"
  6. Use AskUserQuestion tool to ask the user for confirmation before proceeding to Step 2

1.6. Issue Tracker Detection (Optional)

Detect an issue ID (Linear or Jira) to include in branch name, PR title, and PR body. IDs from both trackers share the [A-Z]+-\d+ shape, so the tracker is resolved after the ID is found.

Detection Order (find the ID):

  1. Check if an ID was passed as argument (pattern: [A-Z]+-\d+)
  2. Search conversation context for issue references
  3. Check current branch name: git rev-parse --abbrev-ref HEAD | grep -oE '[A-Z]+-[0-9]+'
  4. Check recent commits: git log --oneline -5 | grep -oE '[A-Z]+-[0-9]+' | head -1

Resolve the tracker (if an ID was found):

Try Linear first, fall back to Jira:

if linear issue view <ID> >/dev/null 2>&1; then
  TRACKER=Linear
  ISSUE_URL=$(linear issue url <ID>)
else
  TRACKER=Jira
  ISSUE_URL="https://hgdata.atlassian.net/browse/<ID>"
fi
  • Store ID, TRACKER, and ISSUE_URL for use in branch naming (Step 2), PR title (Step 5), and PR body (Step 5).
  • Confirm: "Detected ** issue: ** — <ISSUE_URL>"

Requires the linear CLI on PATH (provided by the linear-cli skill). If linear is unavailable, treat the ID as Jira.

If no ID found:

  • Continue without an issue reference (it's optional)
  • Note: "No issue ID detected — proceeding without tracker reference"

2. Ensure on a Dedicated Branch

git rev-parse --abbrev-ref HEAD
  • If already on a suitable branch, continue.
  • Otherwise create one:
git checkout -b <branch-name>

Branch naming format:

  • With issue ID: {type}/{ID}-{description}feat/ENG-1234-add-auth or feat/MITB-565-add-auth
  • Without issue ID: {type}/{description}feat/add-auth

3. Stage and Commit All Pending Changes

git add .
git commit -m "<concise-imperative-summary (≤ 50 chars)>"

!IMPORTANT: NEVER commit changes to the main, master, or develop branch. Always create a new branch and commit your changes to that branch.

4. Push the Branch

git push -u origin HEAD

5. Open a Pull Request

Configuration:

  • Base branch: develop for mk-copilot projects, master for all other repos
  • PR title format:

- With issue ID: {type}({ID}): descriptionfeat(ENG-1234): add user auth or feat(MITB-565): add user auth - Without issue ID: {type}: descriptionfeat: add user auth

  • PR body: Use the appropriate template below based on the PR type

Fix PR Template (type = "fix"):

### Issue Description

<what the user experienced>

### Root Cause

<why it happened>

### Screenshots

<before / after>

### Related Issues

<linked issues or #numbers>

**{TRACKER} issue**: {ISSUE_URL}  <!-- Include only if an issue ID was detected in Step 1.6. {TRACKER} is "Linear" or "Jira". -->

Feature PR Template (type = "feature" or "feat"):

### Feature Description

<what the feature does and why>

### Screenshots

<UI shots, API examples or GIFs>

**{TRACKER} issue**: {ISSUE_URL}  <!-- Include only if an issue ID was detected in Step 1.6. {TRACKER} is "Linear" or "Jira". -->

Chore PR Template (type = "chore"):

### Description

<brief description of maintenance work or updates>

### Details

<what was updated and why>

### Related Dependencies

<any related updates or breaking changes>

**{TRACKER} issue**: {ISSUE_URL}  <!-- Include only if an issue ID was detected in Step 1.6. {TRACKER} is "Linear" or "Jira". -->

Refactor PR Template (type = "refactor"):

### Overview

<summary of code structure improvements>

### Changes

<what was reorganized or restructured>

### Impact

<any performance or maintainability improvements>

### Testing

<confirm no behavior changes>

**{TRACKER} issue**: {ISSUE_URL}  <!-- Include only if an issue ID was detected in Step 1.6. {TRACKER} is "Linear" or "Jira". -->

Docs PR Template (type = "docs"):

### Documentation Updated

<which docs were updated>

### Changes

<summary of content changes>

### Reason

<why these docs needed updating>

**{TRACKER} issue**: {ISSUE_URL}  <!-- Include only if an issue ID was detected in Step 1.6. {TRACKER} is "Linear" or "Jira". -->

Test PR Template (type = "test"):

### Test Coverage Added

<description of tests added>

### Coverage Improvement

<what scenarios are now tested>

### Related Code

<link to the code being tested>

**{TRACKER} issue**: {ISSUE_URL}  <!-- Include only if an issue ID was detected in Step 1.6. {TRACKER} is "Linear" or "Jira". -->

Performance PR Template (type = "perf"):

### Performance Improvement

<what was optimized>

### Metrics

<performance gains (before/after benchmarks)>

### Changes

<technical details of optimization>

### Impact

<affected components or users>

**{TRACKER} issue**: {ISSUE_URL}  <!-- Include only if an issue ID was detected in Step 1.6. {TRACKER} is "Linear" or "Jira". -->

Style PR Template (type = "style"):

### Style Updates

<what was changed (formatting, linting, etc.)>

### Tool/Config

<which linting or formatting tool was applied>

### Scope

<which files were affected>

**{TRACKER} issue**: {ISSUE_URL}  <!-- Include only if an issue ID was detected in Step 1.6. {TRACKER} is "Linear" or "Jira". -->

6. Request Review on Slack (MANDATORY)

Generate a brief, friendly message that includes the PR link using the template below based on the PR type:

Message Templates by Type:

PR TypeTemplate
fix:wrench: Fixed [issue summary] — would appreciate a review: [PR-URL]
feature:rocket: New feature: [feature name] ready for review! [PR-URL]
chore:broom: Maintenance update: [what was updated] needs review: [PR-URL]
refactor:recycle: Code refactor for [area/component] — feedback welcome: [PR-URL]
docs:books: Documentation updated: [what changed] [PR-URL]
test:test_tube: Added test coverage for [feature/area]: [PR-URL]
perf:zap: Performance improvement in [area] ready for review: [PR-URL]
style:art: Code style/formatting updates applied: [PR-URL]

Action:

  1. Select the appropriate template based on the PR type from the table
  2. Fill in the bracketed sections with actual details from the PR
  3. Output the complete Slack message for the user to copy and paste into Slack

Execution Notes

Critical Rules:

  • Execute each step sequentially in order (1 → 1.5 → 1.6 → 2 → 3 → 4 → 5 → 6)
  • Do not skip Step 1.5 unless PR type was explicitly provided via arguments
  • Step 1.6 is optional — proceed without a tracker reference if no ID is detected
  • Do not skip Step 6 — Slack message is mandatory before considering PR complete
  • Wait for user confirmation before proceeding if any diff looks unexpected

Type Argument Behavior:

  • If PR type ($0) is provided: Skip Step 1.5 and use the provided type directly
  • If PR type is NOT provided: Unless you are confident in the type, complete PR type analysis with user confirmation at Step 1.5 before proceeding

Standard Workflow:

  1. Execute Step 1 (diff review)
  2. MANDATORY: Complete Step 1.5 (type detection & confirmation) — unless type was provided as argument or you are confident in the type
  3. Execute Step 1.6 (issue tracker detection — Linear or Jira) — optional, use if found
  4. Execute Steps 2-5 (branch, commit, push, create PR)
  5. MANDATORY: Complete Step 6 (generate and output Slack message)
  6. Confirm PR is ready: all steps completed, Slack message generated

Optional Arguments: /pr [type] [ISSUE-ID]

  • /pr — Auto-detect PR type, no issue
  • /pr feature — Create feature PR, no issue
  • /pr fix — Create fix PR, no issue
  • /pr fix ENG-1234 — Create fix PR with a Linear ID
  • /pr fix MITB-565 — Create fix PR with a Jira ID
  • /pr ENG-1234 — Auto-detect type with an issue ID (tracker resolved in Step 1.6)

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

38.68%
按下载量换算46

Claude

29.37%
按下载量换算35

Cursor

19.57%
按下载量换算23

Gemini CLI

9.48%
按下载量换算11

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills