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

git_amendgit 修改

Agent Skill

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

总安装

564

周安装

24

GitHub Stars

公开资料未说明

下载量

198
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

AgentSkills.tonpx skills
npx skills add ikatsuba/skills --skill "git:amend"

简介

修改最近一次 Git 提交内容而不改变提交历史。git_amend 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

  • 适用于修正错别字、补漏文件或小范围代码调整场景。
  • 支持 --amend 参数交互式操作,保持线性提交历史清晰。
  • 强制推送前应通知团队成员,避免破坏他人本地分支一致性。
  • 建议仅在私有分支使用,公共分支禁止直接 amend 操作。

SKILL.md

Amend Commit

Modifies the most recent commit by adding staged changes, updating the message, or both. Follows Conventional Commits specification for message formatting.

When to use

Use this skill when the user needs to:

  • Add forgotten files to the last commit
  • Fix a typo in the last commit message
  • Combine small fixes into the previous commit
  • Update commit message to follow conventions

Instructions

Step 1: Check Current State

  1. Run git log -1 --pretty=format:"%h %s" to show the last commit
  2. Run git diff --cached --stat to see if there are staged changes
  3. Run git diff --stat to see unstaged changes

Display to user:

Last commit: a1b2c3d feat(auth): add login form

Staged changes: 2 files
Unstaged changes: 1 file

Step 2: Determine Amend Type

Based on state and user intent:

ScenarioAction
Staged changes, no message providedAdd changes, keep message
No staged changes, message providedUpdate message only
Staged changes + message providedAdd changes + update message
No staged changes, no messageAsk what user wants to do

Step 3: Handle Staged Changes

If there are staged changes to add:

  1. Show the diff summary
  2. Confirm these should be added to the last commit
  3. Warn if changes seem unrelated to the original commit

Step 4: Handle Message Update

If updating the message:

  1. Parse current message - Extract type, scope, description
  2. Apply changes:

- If user provides full message → use it - If user provides partial (e.g., just type) → merge with existing

  1. Validate format - Ensure Conventional Commits compliance

Quick fixes:

  • git:amend fix → Change type to fix, keep rest
  • git:amend (api) → Change scope to api, keep rest
  • git:amend "better description" → Update description only

Step 5: Confirm and Execute

Show the planned changes:

Amending commit a1b2c3d

Current:  feat(auth): add login form
New:      fix(auth): add login form validation

Adding: 2 files (+15, -3 lines)

Proceed? [Y/n]

If approved, run:

# Message change only
git commit --amend -m "<new message>"

# Changes only (keep message)
git commit --amend --no-edit

# Both
git commit --amend -m "<new message>"

Important: Do NOT add Co-Authored-By, Signed-off-by, or any other trailers to the commit message.

Step 6: Safety Checks

Before amending, verify:

  1. Not pushed - Warn if commit exists on remote: ⚠️ Warning: This commit appears to be pushed to origin. Amending will require force push. Continue? [y/N]
  2. Not a merge commit - Refuse to amend merge commits: ❌ Cannot amend merge commits. Use git revert instead.
  3. Clean working tree - If there are unstaged changes, ask: You have unstaged changes. Options: 1. Stage all and include in amend 2. Amend with only currently staged changes 3. Cancel

Error Handling

  • If amend fails, show the error and suggest fixes
  • If there's nothing to amend (no changes, same message), inform user
  • If in rebase/merge state, refuse and explain

Arguments

  • $ARGUMENTS ($0) - Optional. Can include:

- New type: feat, fix, docs, etc. - New scope: (auth), (api) - New message: "full commit message" - --no-edit - Keep current message, just add staged changes

Examples:

  • git:amend - Interactive: ask what to change
  • git:amend --no-edit - Add staged changes, keep message
  • git:amend fix - Change commit type to fix
  • git:amend (api) - Change scope to api
  • git:amend "feat(auth): add login validation" - Replace entire message

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Claude Code

30.34%
按下载量换算60

windsurf

25.31%
按下载量换算50

OpenCode

19.21%
按下载量换算38

Codex

11.79%
按下载量换算23

Antigravity

8.64%
按下载量换算17

Gemini CLI

3.15%
按下载量换算6

安全审计

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

权限和风险

权限需确认

当前来源未能明确判断权限范围,默认进入异常复核队列。

安装前确认

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

来源信息

继续浏览同类 Skills