Token导航 LogoToken导航TokenDH.com
待分类需要联网github未标认证来源可访问许可证需确认审计未展示

git%3aamendgit%3a 修改

Agent Skill

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

总安装

353

周安装

15

GitHub Stars

公开资料未说明

下载量

124
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/ikatsuba/skills --skill git:amend

简介

git%3aamend 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,辅助整理项目状态与变更。

  • 适用于需要围绕仓库状态或协作事项进行整理的场景。
  • 通过 npx skills add 命令从 GitHub 仓库安装,需确认权限与维护状态。
  • 使用前建议核实是否会触发联网、命令执行或文件读写操作。
  • 可结合原始 README 进一步验证具体用法和功能边界。

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

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

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

平台分布

Codex

38.03%
按下载量换算47

Claude

32%
按下载量换算40

Cursor

16.8%
按下载量换算21

Gemini CLI

9.59%
按下载量换算12

安全审计

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

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills