Token导航 LogoToken导航TokenDH.com
运维和基础设施操作浏览器github未标认证来源可访问clear审计通过

pull-request拉取请求

Agent Skill

用于围绕 GitHub 仓库、Issue、Pull Request、分支、提交和代码协作流程提供辅助能力。它适合让 Agent 查询项目状态、整理变更、辅助创建或检查协作事项,并把仓库中的信息转成可执行的下一步。使用时需要区分只读查询和写入操作;涉及创建 PR、修改 Issue、推送分支或访问私有仓库时,应确认 token 权限、目标仓库范围和用户授权。

总安装

214

周安装

9

GitHub Stars

5

下载量

75
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/arcblock/agent-skills --skill pull-request

简介

用于管理和操作 GitHub 上的 Pull Request。

  • 适合代码评审、分支合并与协作流程自动化。
  • 通过 arcblock/agent-skills 仓库安装并配置 token。
  • 创建或修改 PR 需确保 token 具有相应仓库权限。
  • pull-request 属于运维和基础设施类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Pull Request Skill

Generate standardized Pull Requests by analyzing the diff between current branch and main branch.

Step 0: Check for Project PR Template (IMPORTANT)

CRITICAL: Before generating PR content, ALWAYS check if the project has a custom PR template:

# Check for PR template in common locations
ls -la .github/PULL_REQUEST_TEMPLATE.md 2>/dev/null || \
ls -la .github/PULL_REQUEST_TEMPLATE/ 2>/dev/null || \
ls -la docs/PULL_REQUEST_TEMPLATE.md 2>/dev/null

If a PR template exists:

  1. Read the template file using the Read tool
  2. Use that template's structure for the PR body
  3. Fill in each section according to the template's format and comments
  4. Keep any checkboxes or structured lists from the template

If no PR template exists: Use the default template defined below.

PR Template (Default - Use only if no project template exists)

Based on analysis of high-quality PRs, use this template:

Title Format

<type>(<scope>): <description>

Types (same as Conventional Commits):

TypeDescription
featNew feature
fixBug fix
docsDocumentation only
styleCode style changes
refactorCode refactoring
perfPerformance improvement
testAdd or modify tests
choreBuild process or tools
ciCI/CD configuration
buildBuild system changes

Scope: Optional, indicates affected module (e.g., devflow, blocklet, auth)

Description:

  • Imperative mood ("add" not "added")
  • Lowercase first letter
  • No period at end
  • Under 72 characters

Body Format

## Summary

<1-5 bullet points describing key changes>

## Motivation / Context

<Why this change is needed - the problem being solved>

## Changes

<Detailed list of what was changed, organized by area>

## Test Plan

<How to verify the changes work correctly>
- [ ] Step 1
- [ ] Step 2

---

Generated with [Claude Code](https://claude.com/claude-code)

Workflow

Step 1: Gather Branch Information

# Get current branch name
git branch --show-current

# Get main branch (usually 'main' or 'master')
git remote show origin | grep 'HEAD branch' | cut -d' ' -f5

# Check if branch is pushed to remote
git status -sb

Step 2: Analyze All Commits and Changes

IMPORTANT: Analyze ALL commits from branch divergence point, not just the latest commit.

# Get the merge base (where current branch diverged from main)
git merge-base main HEAD

# View all commits since diverging from main
git log main..HEAD --oneline

# Get comprehensive diff statistics
git diff main...HEAD --stat

# Get full diff for content analysis
git diff main...HEAD

Step 3: Generate PR Content

Based on the diff analysis:

  1. Determine type: Look at the nature of changes

- New files/features → feat - Bug fixes → fix - Only.md files → docs - Only test files → test - Configuration/tooling → chore

  1. Identify scope: Look at which module/area is most affected
  2. Use project template if exists: If Step 0 found a PR template:

- Read the template file - Fill in each section according to the template's structure - Keep all checkboxes from the template (check appropriate ones based on changes) - Respect the template's language (Chinese/English) - Follow any instructions in HTML comments

  1. Otherwise use default template:

- Write summary: Capture the essence of ALL commits, not just one - Document motivation: Explain why these changes are needed - List changes: Organize by logical groupings - Create test plan: Practical verification steps

Step 4: Present PR Draft and Ask User

Display the generated PR title and body to the user, then use AskUserQuestion to determine next action:

{
  "questions": [{
    "question": "How would you like to proceed with this PR?",
    "header": "PR Action",
    "options": [
      {"label": "Save as PR.md (Recommended)", "description": "Save PR content to PR.md file in project root (will overwrite if exists)"},
      {"label": "Submit via gh", "description": "Create PR directly using GitHub CLI"}
    ],
    "multiSelect": false
  }]
}

Step 5A: If "Save as PR.md"

Write the PR content to ./PR.md in the project root:

# PR Title

<type>(<scope>): <description>

---

## Summary

...

## Motivation / Context

...

## Changes

...

## Test Plan

...

---

Generated with [Claude Code](https://claude.com/claude-code)

Inform user that PR.md has been created (or overwritten if it existed).

Step 5B: If "Submit via gh"

5B.1: Check gh CLI availability

which gh

If gh is not found:

GitHub CLI (gh) is not installed. Please install it:

- macOS: brew install gh
- Linux: See https://github.com/cli/cli/blob/trunk/docs/install_linux.md
- Windows: winget install --id GitHub.cli

After installation, run: gh auth login

5B.2: Check gh authentication

gh auth status

If not authenticated or token lacks permissions:

GitHub CLI is not authenticated or lacks permissions. Please run:

gh auth login

Select:
- GitHub.com
- HTTPS
- Authenticate with browser (recommended)

Ensure you grant 'repo' scope for creating PRs.

5B.3: Check if branch is pushed

git status -sb

If branch is not pushed to remote:

# Push current branch to origin
git push -u origin $(git branch --show-current)

5B.4: Create the PR

gh pr create --base main --title "<title>" --body "$(cat <<'EOF'
<body content>
EOF
)"

5B.5: Report Success

Display the PR URL and summary to the user.

Example Output

Title

feat(devflow): add PR generation skill

Body

## Summary

- Add new `pull-request` skill for generating standardized Pull Requests
- Analyze diff between current branch and main branch
- Support both gh CLI submission and PR.md file generation
- Include comprehensive PR template based on best practices

## Motivation / Context

Creating consistent, well-documented PRs is important for code review efficiency.
This skill automates PR generation by analyzing git diff and following established patterns.

## Changes

### New Files
- `.claude/skills/pull-request/SKILL.md` - Pull Request generation skill definition

### Workflow
- Step 1: Gather branch and diff information
- Step 2: Analyze all commits since branch divergence
- Step 3: Generate PR content following template
- Step 4: Ask user for submission method
- Step 5: Execute chosen action (gh submit or save to file)

## Test Plan

- [ ] Run `/pull-request` on a feature branch with changes
- [ ] Verify PR title follows conventional commit format
- [ ] Verify summary captures all changes
- [ ] Test gh submission flow
- [ ] Test PR.md generation flow

Example Output (With Project Template)

When project has .github/PULL_REQUEST_TEMPLATE.md, fill in that template instead:

Title

feat(test): add coverage merge and reporting support

Body (following project template structure)

### 关联 Issue

related: https://github.com/example/repo/issues/123

### 主要改动

1. 新增 `--coverage` 参数支持测试覆盖率收集
2. 创建 `merge-coverage.js` 脚本合并所有子包的覆盖率报告
3. 重新启用 CI 覆盖率报告功能
4. 排除编译后和自动生成的文件以获得准确的覆盖率统计

### 界面截图

N/A (无 UI 变更)

### 测试清单

- [x] 本次变更的地方已经有测试覆盖
- [ ] 本次变更的地方调整了测试覆盖
- [x] 本次变更的地方新增了测试覆盖
- [ ] 本次变更的兼容性测试覆盖了桌面端 Chrome
- [ ] 本次变更的兼容性测试覆盖了桌面端 Safari
- [ ] 本次变更的兼容性测试覆盖了移动端:ArcSphere + DID Wallet
- [ ] 本次变更有新增界面,且我检查了 light 模式下的展示效果
- [ ] 本次变更有新增界面,且我检查了 dark 模式下的展示效果
- [ ] 如果修改 domain 相关 issue, 请检查 server / service / 购买启动中 是否正常

### 检查清单

- [x] 这次变更包含 breaking change,我为 breaking change 编写了 migration script【如果不是 breaking change 可以勾选】
- [ ] 本次变更需要更新文档,并且我更新了相关文档,如果还没更新文档,请新建文档更新的 Issue 并关联上来
- [x] 本次变更中有用户输入的逻辑,用户输入的后端、前端都增加了校验、错误提示
- [ ] 本次变更中新增了修改后端数据的 API,我给这个 API 增加了 AuditLog
- [x] 本次变更中新增了修改后端数据的 API,且该接口返回的数据中不包含敏感信息
- [x] 本次变更新增了文件,对应 package.json 的 files 字段包括了这些新增的文件
- [ ] 本次变更增加了依赖,并且 core/blocklet-services 和 core/webapp 的前端依赖我放在了 devDependencies 里面
- [ ] 本次变更增加了 blocklet/sdk 的依赖,不会导致 bundle 失败
- [ ] 本次变更中有添加或更新 npm 依赖,并且没有导致同 1 个依赖出现多个版本
- [x] 本次变更我已经把 ArcBlock 的依赖升级到了最新
- [ ] (merge master 前检测) 成功 `make build`, `blocklet server init`, `blocklet server start`
- [ ] (merge master 前检测) 成功 `bn dev`, `bn dev --app-id xxx`
- [ ] (merge master 前检测) 我已阅读并理解了发布 beta 版 Server 的手册

---

Generated with [Claude Code](https://claude.com/claude-code)

Rules

  1. Always check for project PR template first - Look for .github/PULL_REQUEST_TEMPLATE.md before generating content
  2. Use project template if exists - Follow the project's PR template structure, language, and checkboxes
  3. Always analyze ALL commits from branch divergence point, not just HEAD
  4. Follow Conventional Commits format for title
  5. Keep title under 72 characters
  6. Include test plan with actionable verification steps
  7. Base PR on main branch (or project's default branch)
  8. Check gh auth before attempting to create PR
  9. Push branch first if not already pushed to remote
  10. Preserve user's intent - ask before overwriting existing PR.md
  11. Respect template language - If project template is in Chinese, write PR body in Chinese

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Antigravity

27.26%
按下载量换算20

OpenCode

22.87%
按下载量换算17

Codex

20.39%
按下载量换算15

Claude Code

13.91%
按下载量换算10

Gemini CLI

9%
按下载量换算7

windsurf

3.98%
按下载量换算3

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills