Token导航 LogoToken导航TokenDH.com
运维和基础设施执行命令github未标认证来源可访问clear审计通过

create-pr创建公关

Agent Skill

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

总安装

261

周安装

11

GitHub Stars

公开资料未说明

下载量

92
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/takuan-osho/ccmarketplace --skill create-pr

简介

自动化创建符合规范的 Pull Request。

  • 填充标题、描述模板并关联相关 Issue。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。
  • 支持添加 reviewers 与里程碑标记。
  • 需配置正确的 Git 凭证与分支保护规则。
  • create-pr 属于运维和基础设施类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Create Pull Request

Overview

This skill analyzes the differences between the current branch and the main branch, generating an appropriate Pull Request title and description. It follows Conventional Commits format and provides reviewers with sufficient context to begin code review.

Workflow

1. Analyze Changes

First, analyze the differences between the current branch and the main branch in detail.

Performance Optimization (Parallel Fan-Out Pattern)

The following 4 git commands have no interdependencies and can be executed in parallel. By running them concurrently, latency can be reduced by approximately 75% compared to sequential execution.

CommandPurpose
git diff main...HEAD --name-onlyList of changed files
git diff main...HEAD --statChange statistics
git log main..HEAD --pretty=format:"- %s"Commit history
git diff main...HEAD --unified=3Detailed diff
Note for AI agents: These commands should be invoked as parallel tool calls in a single request, not sequentially. This follows the Google ADK Parallel Fan-Out pattern for optimal performance.
# The following commands can be run in PARALLEL (no dependencies between them):

# [Parallel 1] List of changed files
echo "=== Changed files ==="
CHANGED_FILES=$(git diff main...HEAD --name-only)
echo "$CHANGED_FILES"

# [Parallel 2] Change statistics
echo -e "\n=== Change statistics ==="
git diff main...HEAD --stat

# [Parallel 3] Commit history
echo -e "\n=== Commit history ==="
COMMIT_MESSAGES=$(git log main..HEAD --pretty=format:"- %s")
echo "$COMMIT_MESSAGES"

# [Parallel 4] Detailed diff (to understand the nature of changes)
echo -e "\n=== Analyzing detailed changes ==="
git diff main...HEAD --unified=3

2. Confirm Related Information (Claude Code only)

When running in Claude Code, use AskUserQuestion tool to confirm the following before generating PR content:

Related Issue:

  • Question: "Is there a related GitHub Issue for this PR?"
  • Header: "Issue"
  • Options:

- "Enter Issue number" - Specify the issue number to link (e.g., #123) - "No related issue" - This PR is not linked to any issue

  • If user selects "Enter Issue number", they can provide the number via the "Other" option
  • Use the provided number in "Closes #XXX" format in the PR description

Base Branch (only if the current branch name doesn't clearly indicate its target):

  • "Clearly indicates target" examples (skip the question): release/v1.2 → main, hotfix/auth-bug → main, develop/feature-x → develop
  • "Doesn't clearly indicate target" examples (ask the question): feat/oauth-google, fix/parsing, chore/upgrade-deps, ad-hoc topic branches
  • Question: "Which branch should this PR target?"
  • Header: "Base"
  • Options:

- "main (Recommended)" - Standard base branch - "develop" - For projects using gitflow

  • If user needs a different branch, they can specify via the "Other" option

Non-Claude-Code Environments: If AskUserQuestion is unavailable (Codex, Gemini CLI, plain terminal, etc.), do not block. Default to main as the base branch and skip Issue linking unless the user already provided an issue number; surface both choices in the final summary so the user can correct them.

3. Generate PR Title and Description

Analyze the changes and generate an appropriate PR title and description based on:

  • Pattern of changed files
  • Content of commit messages
  • Details of the diff

PR Title

Generate from the change content (determine from the essence of the changes, not the branch name).

Title format (Conventional Commits):

  • feat: - New feature addition
  • fix: - Bug fix
  • refactor: - Refactoring
  • test: - Test addition/modification
  • docs: - Documentation update
  • chore: - Build/configuration changes

PR Description

Generate a description that provides the minimum prerequisite knowledge for reviewers to begin code review.

Required sections:

Overview

  • Why this change is needed, what it resolves
  • Summary of changes and expected effects
  • Provide background information so reviewers understand the necessary context
  • Approximately 2-4 paragraphs

Related Issue

  • Reference issues in Closes #XXX format
  • Related external links (if applicable)

Changes

  • Bullet points of main changes (approximately 3-7 items)
  • Describe "what was changed and how" concisely
  • Specific function names or class names are generally unnecessary
  • Example: ` - Add endpoint /api/v1/xxx - Improve error handling logic - Strengthen validation `

Impact Scope (if applicable)

  • Which features are affected
  • Which environments are affected (if applicable)
  • Whether existing features are impacted

Checklist

- [ ] Code follows the style guidelines
- [ ] Tests have been added/updated
- [ ] Documentation has been updated (if relevant)
- [ ] Build is successful
- [ ] Ready for review

How to Test

  • Describe specific test execution methods
  • If automated tests are sufficient, indicate so
  • If special manual testing is required, describe the steps

Additional Information

  • Reasons for design decisions
  • Technical notes
  • Future improvement plans (if applicable)
  • If none, write "n/a"

4. Create PR

# Verify main branch is up to date
echo -e "\n=== Checking remote status ==="
git fetch origin main

# Check if branch exists on remote
CURRENT_BRANCH=$(git rev-parse --abbrev-ref HEAD)
if git ls-remote --heads origin "$CURRENT_BRANCH" | grep -q "$CURRENT_BRANCH"; then
    echo "Branch already pushed to remote"
else
    echo "Pushing branch to remote..."
    git push -u origin "$CURRENT_BRANCH"
fi

# Create PR
echo -e "\n=== Creating Pull Request ==="
gh pr create --base main --title "<generated title>" --body "$(cat <<'EOF'
<generated description>
EOF
)"

echo "Pull request created successfully!"

Important Notes

General Principles

  1. Balance conciseness and thoroughness

- Not too detailed, not too brief - Provide minimum+α information for reviewers to begin code review - Implementation details (specific function names, etc.) are generally unnecessary

  1. Clarify the intent of changes

- Explain not just "what" was changed, but "why" - Describe the background of technical decisions

  1. Reviewer's perspective

- Has basic knowledge of the project - However, not familiar with this specific change area - Provide necessary context and background

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Claude Code

27.77%
按下载量换算26

OpenCode

22.95%
按下载量换算21

Codex

21.02%
按下载量换算19

Antigravity

13.4%
按下载量换算12

windsurf

8.61%
按下载量换算8

trae

3.62%
按下载量换算3

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills