Token导航 LogoToken导航TokenDH.com
开发只读github未标认证来源可访问许可证需确认审计通过

branch-split-and-pr分支拆分和 pr

Agent Skill

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

总安装

188

周安装

8

GitHub Stars

公开资料未说明

下载量

66
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/totto2727-dotfiles/agents --skill branch-split-and-pr

简介

branch-split-and-pr 将大型 monolithic 分支拆分为多个细粒度 PR,提升审查效率与合并安全性。

  • 适用于复杂功能交付、高风险变更管理与审计友好型发布流程,支持按文件依赖关系分组提交。
  • 严格遵循 plan-template.md 模板输出决策依据,包含文件依赖表与拓扑结构对比分析。
  • 执行过程中可能 stash/unstage 文件变更,需确保工作区干净并提前告知用户潜在数据丢失风险。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Branch Split and PR Workflow

A workflow for splitting changes into multiple branches and submitting PRs for each. The plan must strictly follow the plan-template.md included in this skill.

Referenced Skills

Phase 1: Create and Review the Plan

  1. Analyze changed files and their dependencies
  2. Apply rules:

- New additions (tests or target units) get separate branches - Existing modifications are included in the related new PR (but as separate commits)

  1. Document the following in the plan:

- File dependency table (group, type: new/existing modification) - List of branches to create (branch name, new/existing modification, dependencies) - "Preparation" and "Commit" steps for each branch (file paths and commit messages) - Excluded files list - Note that work should be halted and instructions requested on error

Edit the plan template from plan-template.md to match the project's changes.

Phase 2: Execute Per Branch (Strictly Follow)

Follow this order strictly for each branch. On conflicts or errors, halt immediately, report the state, and request instructions.

Common Workflow (Per Branch)

# 1. Stage all changes (required to include untracked files)
git add .

# 2. Stash (with a message identifying the work)
git stash push -m "wip: changes for <branch-name>"

# 3. Switch to base branch & create new branch
git switch -f <base-branch>
git switch -c <branch-name>

# 4. Restore stash
git stash apply stash@{0}

# 5. Unstage all
git unstage

# 6. Add only the relevant files per the plan and commit
git add <file1> <file2> ...
git commit -m "<commit-message>"
  • Use git switch instead of git checkout
  • Stash messages should clearly identify the work unit, e.g., wip: changes for <branch-name>
  • Restore using git stash apply stash@{0} to explicitly target the latest stash
  • Commits must follow Conventional Commits and granularity rules from git-commit

Notes

  • Deleted files must also be staged with git add <deleted-file-path>
  • Do not include files listed as "excluded" in the plan

Phase 3: Push and Create PRs

For each branch:

  1. git push -u origin <branch-name>
  2. gh pr create --base develop --title "<title>" --body "<body>" --assignee @me

PR body should follow the repository's PR template. Title should be a concise description of the changes.

Phase 4: Present PR URL List

After all PRs are created, present the following markdown format to the user (clickable links):

## Created PRs

- [PR #<number> - <branch-name>](PR-URL)
- [PR #<number> - <branch-name>](PR-URL)
  ...

On Error

  • If conflicts, push failures, or gh errors occur, halt work
  • Report the current branch, stash status, and error message
  • Do not attempt to resolve on your own

Plan Template

See plan-template.md for the detailed template and step examples. Structure includes:

  • Overview & rules (separate branches for new items, include existing modifications in related PRs, halt on error)
  • File dependency table (group, target files, dependent mocks, type)
  • Branch list table (#, branch name, new/existing modification, dependencies)
  • Git workflow (common workflow code block)
  • "Preparation" and "Commit" steps for each branch (command examples)
  • Excluded files & error handling

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.63%
按下载量换算23

Claude

31.08%
按下载量换算21

Cursor

20.81%
按下载量换算14

Gemini CLI

9.98%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills