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

decompose-branch分解分支

Agent Skill

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

总安装

225

周安装

9

GitHub Stars

公开资料未说明

下载量

73
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/corygabrielsen/skills --skill decompose-branch

简介

decompose-branch 将杂乱的本地分支拆分为一系列原子提交,便于审查和理解复杂变更。

  • 适用于分支存在未完成或临时提交、评审者反馈难以追踪逻辑的场景,帮助拆分大型改动为可管理单元。
  • 通过分析提交历史和差异,识别独立功能块,生成有序的提交序列以准备代码审查。
  • 安装前需确认 GitHub CLI 已部署,并验证目标仓库权限及是否允许执行 git 操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Decompose Branch

Turn a messy local branch into a sequence of atomic commits ready for review.

When to Use

  • Branch has messy/WIP commits before PR
  • Reviewer feedback says "hard to follow"
  • Splitting a large change into reviewable chunks

Note: Commands below use master as base branch. Replace with your actual base if different.

Phase 1: Analyze

Gather context and identify the distinct logical changes.

# See what commits exist on this branch vs base
git log --oneline master..HEAD

# See the full diff against base
git diff master...HEAD

# See changed files
git diff --stat master...HEAD

Read the diff and classify each modified section into one of these categories:

  1. Refactors — Renames, extractions, reorganizations (these go first)
  2. Structural changes — New types, new fields, new functions
  3. Behavioral changes — Modified control flow, new conditions
  4. Bug fixes — Isolated corrections
  5. Tests — Often map 1:1 to behavioral changes

Present to user:

## Identified Changes

| # | Change | Files | Depends On |
|---|--------|-------|------------|
| 1 | Extract helper for validation | utils.ts | - |
| 2 | Add retry logic to client | client.ts | 1 |
| 3 | Fix timeout handling | client.ts | 2 |
| 4 | Tests for retry and timeout | client.test.ts | 2, 3 |

Stop and ask: "Does this decomposition look correct, or would you like to reorder, combine, or split changes?" Wait for confirmation before proceeding.

Phase 2: Plan the Decomposition

Determine the commit order based on dependencies.

Dependency rules:

  • Refactors before features that depend on them
  • Types/interfaces before code that uses them
  • Core logic before tests
  • Changes to the same function ordered by logical progression

For each commit, define:

  • Subject line (imperative mood, max 50 chars)
  • Which files/sections to include (with line ranges if helpful)
  • Whether it should build/pass lint

Present the plan:

## Commit Plan

1. "Extract validation helper from handler"
   - utils.ts: new validateInput function
   - handler.ts: use new helper
   - Builds: Yes

2. "Add retry logic to client"
   - client.ts: retry wrapper, config
   - Builds: Yes

3. "Fix timeout handling in retry loop"
   - client.ts: timeout check in retry
   - Builds: Yes

4. "Add tests for retry and timeout"
   - client.test.ts: new test cases
   - Builds: Yes

Stop and ask: "Ready to execute this plan?" Wait for confirmation before proceeding.

On atomicity: Prefer commits that build and pass lint. Group inseparable changes (e.g., signature changes with caller updates).

Phase 3: Execute

Create a fresh branch and build commits incrementally.

# Save current branch name
ORIGINAL_BRANCH=$(git branch --show-current)

# Create working branch from base
git checkout -b ${ORIGINAL_BRANCH}-decomposed master

# Bring in all changes unstaged
git merge --squash ${ORIGINAL_BRANCH}
git reset HEAD

Now you have all changes as unstaged modifications. Build commits one at a time:

For each planned commit:

  1. Stage only the relevant files/sections
  2. Verify it builds (if plan says "Builds: Yes")
  3. Commit with the planned message
  4. Repeat
# Stage by file (for hunk-level control, edit files to isolate changes first)
git add <file>

# Verify build (required if plan says Builds: Yes)
# Ask user for build command if unknown

# Commit
git commit -m "<planned message>"

After all commits:

# Verify nothing left unstaged
git status

# If leftover changes exist:
# - Amend last commit if changes logically belong there
# - Create cleanup commit if unrelated to existing commits
# - Discard if debug/temp code (git checkout -- <file>)

Phase 4: Verify

Ensure the decomposed branch matches the original.

# Compare final state to original branch (should be empty or whitespace-only)
git diff ${ORIGINAL_BRANCH}..HEAD

If differences exist:

  • Acceptable: formatting, whitespace only
  • Not acceptable: missing changes — add a commit or amend to include them

Present summary:

## Decomposition Complete

Original: feature-branch (5 messy commits)
Result: feature-branch-decomposed (4 atomic commits)

| # | Commit | Summary |
|---|--------|---------|
| 1 | abc123 | Extract validation helper |
| 2 | def456 | Add retry logic |
| 3 | ghi789 | Fix timeout handling |
| 4 | jkl012 | Add tests |

**Next steps:**
git log --oneline master..HEAD    # Review commits
git diff master..HEAD             # Verify full change
git branch -m feature-branch feature-branch-old  # Backup original
git branch -m feature-branch-decomposed feature-branch  # Rename

HIL Pattern

  • Ask for branch name if not on a feature branch
  • Stop after Phase 1 and Phase 2 for user approval
  • Confirm before any destructive action

Guardrails

  • Never modify master
  • Never force push without approval
  • Keep original branch until user confirms
  • If build fails unexpectedly, stop and ask
  • Prefer cohesive commits over fragmentation

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.03%
按下载量换算26

Claude

29.59%
按下载量换算22

Cursor

17.75%
按下载量换算13

Gemini CLI

9.47%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

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

安装前确认

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

来源信息

继续浏览同类 Skills