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

git-squashgit 南瓜

Agent Skill

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

总安装

1,947

周安装

78

GitHub Stars

51

下载量

630
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/paulrberg/agent-skills --skill git-squash

简介

用于查找、检索和筛选相关信息。

  • 适合根据关键词、任务场景或来源线索快速定位候选结果。
  • 可结合来源仓库和原始 README 核验具体用法和功能细节。
  • 安装通过 npx skills add 命令从指定 GitHub 仓库获取,适用于 Codex、Claude、Cursor、Gemini CLI。
  • 建议确认权限范围、维护状态及是否触发联网、命令执行或文件读写。

SKILL.md

Git Squash

Squash the current PR branch into one commit based on net branch changes relative to the default branch. Do not create or invoke a helper script. Run the Git commands directly.

Arguments

Parse $ARGUMENTS for optional flags:

  • --subject <line>: Override the generated commit subject line
  • --base <branch>: Override default-branch auto-detection

Defaults:

  • Subject: infer a conventional-commit subject from the squashed changes themselves; do not default to chore
  • Base detection order:

1. refs/remotes/origin/HEAD 2. git remote show origin 3. main, master, trunk

Workflow

1) Pre-flight

Start by confirming that history can be rewritten safely. Stop on the first failure.

  • Verify inside a Git worktree: git rev-parse --is-inside-work-tree
  • Verify not detached: git symbolic-ref --quiet --short HEAD
  • Verify working tree is clean: git status --porcelain
  • After base detection, stop if the current branch is the default branch
git rev-parse --is-inside-work-tree
git symbolic-ref --quiet --short HEAD
git status --porcelain

2) Resolve the Base Branch

If --base was provided, use that branch name directly. Otherwise, detect the default branch in this order:

  1. refs/remotes/origin/HEAD
  2. git remote show origin
  3. main, master, trunk

After the branch name is resolved, normalize it to a usable ref by preferring the local branch and falling back to origin/<branch>. Stop if neither exists. Also stop if the current branch is the default branch, because the skill should never squash the default branch into itself.

git symbolic-ref --quiet --short refs/remotes/origin/HEAD
git remote show origin
git show-ref --verify --quiet "refs/heads/$default_branch"
git show-ref --verify --quiet "refs/remotes/origin/$default_branch"

3) Find the Squash Boundary

Compute the merge-base between HEAD and the resolved default ref. That merge-base is the point where the branch diverged. Count how many commits are ahead of it. If the count is zero, there is nothing to squash.

merge_base="$(git merge-base HEAD "$default_ref")"
ahead_count="$(git rev-list --count "$merge_base..HEAD")"
original_head="$(git rev-parse HEAD)"

4) Collect Semantic Context Before Rewriting

Inspect the commits that will be squashed before mutating history. Use them to understand intent and distinct workstreams, but treat the staged net diff as the source of truth for what survives.

  • Read the commit list in chronological order: git log --reverse --format='%H%x09%s' "$merge_base..HEAD"
  • If subjects are vague or mixed, inspect the most important commits more deeply with git show --stat --summary --format=fuller <commit>
  • Identify the dominant user-visible or developer-visible outcomes
  • Ignore intermediate work that does not survive in the final diff
  • Collect all unique authors from the squashed commits and identify which are co-authors (anyone other than the committer of the squash commit). Use git log --format='%aN <%aE>' "$merge_base..HEAD" | sort -u to get the list, then exclude the current user (git config user.name / git config user.email). Each remaining author becomes a Co-authored-by trailer

You are not writing a changelog of every commit. You are deriving one accurate commit message for the final net change.

5) Rewrite the Branch into a Single Staged Diff

Soft-reset to the merge-base. This keeps the branch's net changes staged while removing the intermediate commits from history. If the staged diff is empty after the reset, restore the original head and stop with an error, because there is no net change to commit.

git reset --soft "$merge_base"
git diff --cached --quiet
git reset --soft "$original_head"

6) Build the Commit Message from Commits + Net Diff

Use --subject when provided. Otherwise, generate a conventional-commit subject by semantically analyzing:

  • all commits in "$merge_base..HEAD"
  • the staged net diff after the soft reset
  • targeted hunks from git diff --cached when the summary is ambiguous

Infer the commit type from the surviving change, not from the fact that a squash happened:

  • New functionality -> feat
  • Bug fix -> fix
  • Refactor without behavior change -> refactor
  • Docs only -> docs
  • Tests only -> test
  • Build or tooling -> build
  • CI workflow -> ci
  • Dependency updates -> chore(deps)
  • Formatting only -> style
  • Performance -> perf
  • AI agent/config updates -> ai
  • General maintenance -> chore

Do not default to chore unless the net change is actually maintenance work.

Subject requirements:

  • Format: type(scope): description or type: description
  • Imperative mood, lowercase, no trailing period
  • Describe what changed in English, not that commits were squashed
  • Keep it specific; feat(streaming): add batch cancel support is acceptable, chore: squash branch changes is not
  • Keep it short enough for a normal Git subject line

Body requirements:

  • Describe only net changes that still exist after the squash
  • Use 1-5 hyphen bullets for non-trivial changes
  • Summarize distinct behavior, API, data model, tooling, test, or documentation changes in natural language
  • Mention filenames or raw path lists only when a name is semantically necessary for clarity
  • Do not dump shortstat, name-status, or file inventories into the message
  • Skip the body entirely if the change is small and the subject fully captures it

Validation requirements before committing:

  • If the message reads like a file listing, stats dump, or "squash net changes" meta-commentary, rewrite it
  • If multiple commits were squashed but only one net concern remains, write one focused message for that concern
  • If several distinct net concerns remain, reflect them as concise bullets in the body
  • Make sure every bullet is supported by the staged diff

Helpful commands:

git log --reverse --format='%H%x09%s' "$merge_base..HEAD"
git diff --cached --stat
git diff --cached

If co-authors were collected in step 4, append a blank line followed by one Co-authored-by: Name <email> trailer per co-author at the end of the message. Do not add trailers for the current user.

Write the final message to a temporary file and commit with git commit -F.

7) Report the Result

After the commit succeeds:

  • Report how many commits were squashed
  • Report which default ref was used
  • If the branch already exists on remote, remind the user to force-push with lease
git commit -F "$message_file"
git push --force-with-lease

Behavior

  • Stop immediately if not inside a git repository.
  • Stop immediately if the current branch is the default branch.
  • Stop if the working tree is dirty, to avoid mixing unrelated local edits.
  • Inspect the commits being squashed before rewriting history.
  • Reset softly to the merge-base with the default branch.
  • Commit staged net changes as a single commit.
  • Generate a semantic commit message grounded in the net diff and informed by all commits being squashed.
  • Never use a fixed fallback like chore: squash <branch> net changes unless the user explicitly provided --subject.

Output

  • Prints how many commits were squashed.
  • Prints the resolved default branch reference.
  • Prints a reminder to force-push with lease when the branch already exists on remote.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.37%
按下载量换算217

Claude

32.34%
按下载量换算204

Cursor

17.51%
按下载量换算110

Gemini CLI

10.34%
按下载量换算65

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills