Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计通过

finishing-a-development-branch完成开发分支

Agent Skill

finishing-a-development-branch 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

724

周安装

29

GitHub Stars

1

下载量

234
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/pixel-process-ug/superkit-agents --skill finishing-a-development-branch

简介

finishing-a-development-branch 用于查找、检索和筛选相关信息,适合快速定位候选结果。

  • 适用于需要根据关键词或任务场景从来源线索中筛选信息的场景。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装并使用该技能。
  • 安装前需确认权限范围和维护状态,注意可能触发联网或文件读写操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Finishing a Development Branch

Overview

Provide a structured, safe process for completing work on a development branch, including verification, merge strategy selection, and cleanup. This skill ensures no branch is merged without passing tests, and every destructive operation requires explicit user confirmation.

When to Use

  • All planned work on a feature branch is complete
  • A branch is ready for code review or merge
  • Cleaning up after development work is finished
  • Preparing a pull request for team review

Phase 1: Verify All Tests Pass

[HARD-GATE] Do NOT proceed to any merge or PR activity without passing verification.

Before any merge or PR activity, invoke verification-before-completion to confirm:

  • All tests pass (unit, integration, e2e as applicable)
  • No lint errors or warnings
  • Build succeeds
  • No untracked files that should be committed
# Run the project's full verification suite
# Do NOT skip this step even if "tests were passing earlier"

If verification fails, STOP. Fix the failures before proceeding. Do NOT create PRs or merge branches with failing tests.

STOP — Verification must pass before continuing to Phase 2.

Phase 2: Determine Base Branch

Identify the branch to merge into, using this detection logic:

Auto-Detection

# Check for common base branch names
git branch -a | grep -E 'remotes/origin/(main|master|develop)$'

# Check what branch was the fork point
git log --oneline --decorate --graph HEAD...main --first-parent 2>/dev/null
git log --oneline --decorate --graph HEAD...master --first-parent 2>/dev/null

Base Branch Selection Decision Table

ConditionBase BranchConfidence
main existsmainHigh
Only master existsmasterHigh
develop exists and project uses GitFlowdevelopMedium
Multiple candidates foundAsk userRequired
None of the above existAsk userRequired

Verify Base Branch is Up to Date

git fetch origin
git log HEAD..<base-branch> --oneline

If the base branch has advanced since the feature branch was created, inform the user. They may want to rebase or merge base into the feature branch first.

Base Branch Divergence Decision Table

DivergenceAction
Base has 0 new commitsProceed normally
Base has 1-5 new commitsInform user, suggest rebase
Base has 6+ new commitsWarn user, recommend merge or rebase before proceeding
Merge conflicts detectedSTOP — resolve conflicts first

STOP — Confirm the base branch with the user before proceeding.

Phase 3: Present Merge Options

Present exactly these four options to the user. Do NOT add or remove options.

How would you like to finish this branch?

  A) Create PR    -- push and open a pull request for review
  B) Merge        -- merge into <base> with a merge commit
  C) Squash merge -- squash into one commit, merge into <base>
  D) Leave as-is  -- keep the branch, decide later

Option Selection Decision Table

ContextRecommended OptionWhy
Team project with code reviewA) Create PREnables review workflow
Solo project, clean historyB) MergePreserves full branch history
Many WIP commits, messy historyC) Squash mergeClean single commit on base
Work incomplete or uncertainD) Leave as-isNo risk, decide later

STOP — Wait for user to select an option. Do NOT assume a default.

Phase 4: Execute Chosen Option

Option A: Create Pull Request

# Push the branch
git push -u origin <branch-name>

# Generate PR title from branch name or recent commits
# Generate PR body from commit messages and diff summary
gh pr create --title "<title>" --body "<body>"

PR Title Generation:

  • Derive from branch name: feature/add-auth becomes Add authentication
  • Keep under 70 characters
  • Use imperative mood

PR Body Generation:

  • Summarize the changes (what and why)
  • List key modifications
  • Note any breaking changes
  • Include test plan

Option B: Merge Locally

# Switch to base branch
git checkout <base-branch>

# Merge feature branch
git merge <feature-branch>

# Delete the feature branch
git branch -d <feature-branch>

Confirmation required before executing the merge.

Option C: Squash Merge

# Switch to base branch
git checkout <base-branch>

# Squash merge
git merge --squash <feature-branch>

# Commit with a comprehensive message
git commit -m "<squash commit message>"

# Delete the feature branch
git branch -d <feature-branch>

Squash commit message should summarize all changes from the branch, not just the last commit.

Confirmation required before executing the squash merge.

Option D: Leave Branch As-Is

No action needed. Inform the user:

Branch <branch-name> left as-is.
You can return to it later with: git checkout <branch-name>

Phase 5: Cleanup

After executing options A, B, or C, perform cleanup:

Remove Worktree (if applicable)

If the branch was developed in a git worktree:

# Navigate out of the worktree first
git worktree remove <worktree-path>
git worktree prune

Clean Up Remote Tracking (Option B and C only)

If the branch was previously pushed:

# Delete remote branch after local merge
git push origin --delete <branch-name>

Confirmation required before deleting remote branches.

Verify Final State

git status
git log --oneline -5

Confirm the base branch is in the expected state.

Confirmation Requirements

[HARD-GATE] The following operations require explicit user confirmation before execution. Do NOT proceed on assumption. Always ask.

OperationWhy Confirmation Is Required
Merge into base branchChanges base branch history
Squash mergeLoses individual commit history
Delete local branchCannot be undone if not pushed
Delete remote branchAffects other collaborators
Force remove worktreeMay discard uncommitted changes
Rebase onto updated baseRewrites commit history

Anti-Patterns / Common Mistakes

Anti-PatternWhy It Is WrongWhat to Do Instead
Merging without running testsBroken code reaches base branchAlways run full verification first
Skipping base branch freshness checkMerge conflicts discovered lategit fetch and check divergence
Auto-selecting merge strategyUser may prefer different approachAlways present all four options
Deleting branch without confirmationData loss riskAsk before every deletion
Creating PR with failing CIWastes reviewer timeFix CI before creating PR
Squash message from last commit onlyLoses context of full branch workSummarize all changes in squash msg
Leaving stale remote branchesCluttered repositoryClean up remote after merge
Force-pushing after PR creationDestroys review commentsAvoid force-push on PR branches

Error Handling

ErrorAction
Merge conflictsReport conflicts, ask user to resolve, do NOT auto-resolve
Push rejectedFetch and check if rebase/merge is needed
PR creation failsCheck gh auth status, report error details
Branch already deletedSkip deletion, continue with remaining cleanup
Tests failSTOP immediately, do NOT merge or create PR
Base branch does not exist on remoteAsk user to confirm the correct base

Integration Points

SkillIntegration
verification-before-completionMust invoke in Phase 1 before any merge activity
using-git-worktreesCleanup includes worktree removal if applicable
git-commit-helperSquash commit message follows conventional commit format
code-reviewPR creation (Option A) feeds into code review workflow
planningBranch completion is the final step of plan execution
deploymentMerge to main/release may trigger deployment pipeline

Skill Type

RIGID — Follow this process exactly. Every phase must be completed in order. Do NOT skip verification. Do NOT merge without user confirmation. Do NOT assume a merge strategy. Do NOT delete branches without asking.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.38%
按下载量换算83

Claude

28.13%
按下载量换算66

Cursor

17.88%
按下载量换算42

Gemini CLI

9.58%
按下载量换算22

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills