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

github-pr-managerGitHub PR manager 自动化

Agent Skill

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

总安装

321

周安装

13

GitHub Stars

公开资料未说明

下载量

101
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

AgentSkills.tonpx skills
npx skills add edanstarfire/claudecode_webui --skill "github-pr-manager"

简介

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

  • 适用于多宿主环境技能扩展和生态集成场景。
  • 支持跨 Codex、Claude、Cursor、Gemini CLI 平台部署。
  • 通过 npx 命令直接添加第三方技能仓库。
  • 注意:需验证技能来源可靠性,避免引入安全风险。

SKILL.md

GitHub PR Manager

Instructions

When to Invoke This Skill

  • Creating a pull request after implementing changes
  • Checking status of an existing PR (mergeable, checks, reviews)
  • Merging an approved PR
  • Validating PR state before operations

Capabilities

  1. Create Pull Request

- Generate PR from current branch - Create descriptive title and body - Link to related issues - Add appropriate labels

  1. View PR Status

- Check if PR is open/closed/merged - Verify mergeable state - Review CI check status - Check review approvals

  1. Merge Pull Request

- Squash merge with single commit - Validate before merging - Branch cleanup handled externally

Standard Workflows

Creating a PR

  1. Verify Current Branch git branch --show-current Ensure you're on a feature branch, not main/master
  2. Push Branch (if not already pushed) git push -u origin HEAD
  3. Create PR gh pr create --title "<type>: <description>" --body "$(cat <<'EOF' ## Summary Resolves #<issue_number> <Brief description of changes> ## Changes Made - <List key changes> ## Testing - <How to test these changes> 🤖 Generated with [Claude Code](https://claude.com/claude-code) EOF)"

Checking PR Status

  1. Fetch PR Information gh pr view <pr_number> --json state,mergeable,statusCheckRollup,reviewDecision
  2. Interpret Results

- state: "OPEN", "CLOSED", "MERGED" - mergeable: "MERGEABLE", "CONFLICTING", "UNKNOWN" - reviewDecision: "APPROVED", "CHANGES_REQUESTED", "REVIEW_REQUIRED"

Merging a PR

  1. Validate PR State gh pr view <pr_number> --json headRefName,state,mergeable

- Verify state is "OPEN" - Verify mergeable is "MERGEABLE" - Extract branch name for cleanup

  1. Perform Squash Merge gh pr merge <pr_number> --squash This will: Important: Do NOT use --delete-branch flag and do NOT switch back to main. Branch cleanup and worktree disposal are handled by the orchestrator after the PR is merged.

- Squash all commits into one - Merge to main/master

Error Handling

Authentication Issues:

  • Run: gh auth status
  • If not authenticated: gh auth login

PR Not Mergeable:

  • Check for conflicts: Inform user to resolve merge conflicts
  • Check for failing CI: Wait for checks to pass
  • Check for required reviews: Request reviews from team

Worktree Environment:

  • Workers operate in isolated git worktrees
  • Do NOT attempt to delete branches or switch to main after merging
  • Worktree cleanup is handled by the orchestrator after PR merge
  • Focus only on the merge operation itself

PR Title and Body Standards

Title Format:

<type>: <brief description>

Types: feat, fix, chore, docs, refactor, test, perf

Body Format:

## Summary
Resolves #<issue>

<1-2 sentence description>

## Changes Made
- <Bullet list of key changes>

## Testing
- <How changes were tested>
- <Manual test steps if needed>

## Screenshots (if UI changes)
<Optional screenshots>

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

Examples

Example 1: Create PR from feature branch

User: "Create a PR for this feature"
Action:
1. Verify on feature branch
2. Push if needed
3. Create PR with structured body linking to issue
Output: PR URL and number

Example 2: Check PR status before merging

User: "Is PR #123 ready to merge?"
Action:
1. Fetch PR status
2. Check mergeable state, CI status, reviews
Output: "PR #123 is ready to merge" or list blockers

Example 3: Merge approved PR

User: "Merge PR #123"
Action:
1. Validate PR state (gh pr view 123 --json headRefName,state,mergeable)
2. Squash merge (gh pr merge 123 --squash)
Output: "PR #123 merged successfully. Worktree cleanup will be handled by orchestrator."

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

OpenCode

28.3%
按下载量换算29

Claude Code

21.07%
按下载量换算21

Antigravity

17.71%
按下载量换算18

Gemini CLI

11.79%
按下载量换算12

windsurf

7.41%
按下载量换算7

Codex

3.22%
按下载量换算3

安全审计

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

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills