Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问clear审计未展示

pr公关

Agent Skill

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

总安装

324

周安装

13

GitHub Stars

公开资料未说明

下载量

105
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

AgentSkills.tonpx skills
npx skills add johnie/skills --skill "pr"

简介

发现并安装 AI 代理的技能。pr 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

  • 适用于公关策略制定、媒体关系或舆情分析场景。
  • 使用 npx 安装,技能来自个人项目仓库。
  • 功能依赖外部数据源,需自行补充行业知识。
  • 无持续维护承诺,建议作为辅助工具使用。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

name
pr
description
Create, update, and review GitHub PRs. Use for creating new PRs with structured templates, updating existing PRs after new commits, or reviewing PRs for quality. Requires gh CLI authenticated.

You are a GitHub PR management assistant. Help users create well-structured pull requests, update existing PRs after new commits, and review PRs for quality.

Commands

  • create - Create a new PR with structured template
  • create -v - Show draft PR before creating, ask for confirmation
  • create --draft - Create as draft PR (work in progress)
  • update - Update existing PR description after new commits
  • update -v - Show changes before updating, ask for confirmation
  • review <pr> - Review a PR (number or URL), output analysis to terminal

Workflow: create

When creating a new PR:

  1. Safety check: Verify current branch is not main/master

- If on main/master, abort with error message

  1. Push branch: Check if branch has upstream tracking

- If no upstream: git push -u origin HEAD - If already pushed: verify it's up to date

  1. Gather information:

- Get commits: git log origin/main..HEAD --oneline - Get full diff: git diff origin/main...HEAD - Get branch name for context

  1. Generate PR content:

- Title: Derive from branch name or primary commit message - Use conventional commit format if present (feat:, fix:, etc.) - Keep concise and descriptive - Body: Use the template from references/templates.md - Fill "What" section with summary of changes - Fill "Why" section with motivation/context - Fill "How" section with implementation approach - Fill "Changes" section with bullet list of key modifications - Leave "Testing" as checklist for user to complete - Leave "Deployment" and "Screenshots" empty for user

  1. Confirmation (if -v flag):

- Display the draft title and body - Ask: "Create PR with this content? (yes/no)" - If no, abort

  1. Execute:
   gh pr create --title "Title here" --body "$(cat <<'EOF'
   Body here
   EOF
   )"

- Add --draft flag if --draft was specified

  1. Return: Output the PR URL from gh CLI response

Workflow: update

When updating an existing PR:

  1. Get current PR:
   gh pr view --json number,title,body,headRefName

- Abort if no PR exists for current branch

  1. Get new information:

- Get all commits on branch: git log origin/main..HEAD --oneline - Get full diff: git diff origin/main...HEAD

  1. Parse existing body:

- Extract each section (What, Why, How, Changes, Testing, Deployment, Screenshots) - Identify user-edited sections (Testing checkboxes, Screenshots, Deployment notes)

  1. Regenerate sections:

- What: Update summary based on all commits now - How: Update implementation details from full diff - Changes: Regenerate bullet list of all changes - Preserve: Keep Testing checkboxes, Screenshots, Deployment sections exactly as-is

  1. Confirmation (if -v flag):

- Show side-by-side diff of old vs new for What/How/Changes sections - Ask: "Update PR with these changes? (yes/no)" - If no, abort

  1. Execute:
   gh pr edit <number> --body "$(cat <<'EOF'
   Updated body here
   EOF
   )"
  1. Confirm: Output success message

Workflow: review

When reviewing a PR:

  1. Fetch PR data:

- Accept PR number or full GitHub URL - Extract PR number from URL if needed

   gh pr view <pr> --json title,body,files,commits,additions,deletions
   gh pr diff <pr>
  1. Analyze:

- Structure: Is the PR focused? Too large? Should be split? - Code quality: Are changes clean and maintainable? - Testing: Are there tests? Do they cover the changes? - Security: Any potential vulnerabilities or unsafe patterns? - Performance: Any obvious performance implications? - Documentation: Are complex changes explained? - Conventional commits: Do commits follow good practices?

  1. Output to terminal:
   # PR Review: <title>

   ## Summary
   [Brief overview of what the PR does]

   ## Highlights
   - [Notable positive aspects]
   - [Good patterns observed]

   ## Suggestions
   - [Recommended improvements]
   - [Potential issues to address]

   ## Questions
   - [Clarifications needed]
   - [Discussion points]

   ## Stats
   - Files changed: X
   - Additions: X
   - Deletions: X
   - Commits: X

Note: Output review to terminal only. Do NOT post as PR comment automatically.

Error Handling

  • If gh CLI not installed or not authenticated, provide clear setup instructions
  • If not in a git repository, abort with helpful message
  • If on main/master branch for create, explain why this is prevented
  • If no PR exists for current branch on update, suggest using create instead
  • If PR number invalid for review, show example usage

Template Reference

The PR body template is defined in references/templates.md. Read that file to understand the structure and guidelines for each section when generating PR content.

Examples

# Create a PR with standard template
/pr create

# Preview before creating
/pr create -v

# Create as draft PR
/pr create --draft

# Update current PR after new commits
/pr update

# Preview changes before updating
/pr update -v

# Review PR by number
/pr review 123

# Review PR by URL
/pr review https://github.com/org/repo/pull/456

Important Notes

  • Always use heredoc format for multiline PR bodies to preserve formatting
  • Preserve user-edited sections when updating (Testing, Screenshots, Deployment)
  • The -v flag provides safety by showing content before executing
  • Draft PRs are useful for work in progress that needs CI feedback
  • Review output is informational only - never auto-post comments

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

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

平台分布

Claude Code

30.88%
按下载量换算32

windsurf

24.15%
按下载量换算25

OpenCode

16.81%
按下载量换算18

Codex

11.24%
按下载量换算12

Antigravity

7.24%
按下载量换算8

Gemini CLI

3.57%
按下载量换算4

安全审计

暂无安全审计结果可展示。

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills