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

git-staginggit 暂存

Agent Skill

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

总安装

245

周安装

10

GitHub Stars

10

下载量

78
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/aspiers/ai-config --skill git-staging

简介

用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 适合在需要围绕仓库状态、代码变更或协作事项进行整理时使用。
  • 可结合来源仓库和原始 README 核验具体用法和功能细节。
  • 安装通过 npx skills add 命令从指定 GitHub 仓库获取,适用于 Codex、Claude、Cursor、Gemini CLI。
  • 建议确认权限范围、维护状态及是否触发联网、命令执行或文件读写。

SKILL.md

Non-interactive Git Staging

When to use this skill

Use this skill when you need to:

  • Stage only specific hunks from a file (not the entire file)
  • Stage only specific lines within a hunk
  • Avoid interactive git commands (git add -p, git add -i, etc.)
  • Programmatically control exactly what gets staged

Step 1: Assess the changes

Before choosing a staging method, determine what changes exist:

git status                    # See which files have changes
git diff --no-ext-diff        # See all unstaged changes
git diff --cached --no-ext-diff  # See already-staged changes

Decision tree:

  • If only ONE file has changes and you want ALL of them staged → use git add <file>
  • If ONE file has multiple unrelated hunks and you want only SOME → use Method 2 or 3
  • If MULTIPLE files need staging → stage per-file with git add for each, or selectively with patch method

Why not use git add -p?

Interactive git commands require a TTY and human input. AI agents cannot reliably fake interactive sessions - attempts using echo "y" or yes are fragile and often fail. Instead, construct patches programmatically and apply them directly to the index.

Core technique

The key insight is that git apply --cached applies a patch directly to the staging area (index) without modifying the working tree. This lets you stage precise changes non-interactively.

Temporary files

All temporary patch files should be written to tmp/ within the repository (not /tmp) to avoid permission prompts. Ensure the directory exists first:

mkdir -p tmp

Methods

Method 1: Stage entire file

When you want to stage all changes in a file:

git add <file>

Method 2: Stage specific hunks via patch

When you need to stage only certain hunks from a file:

  1. Generate the full diff for the file: git diff <file> > tmp/full.patch
  2. Edit the patch to keep only the hunks you want to stage (use the Edit tool or create a new file with only the desired hunks)
  3. Apply the edited patch to the index: git apply --cached tmp/selected.patch

Method 3: Stage specific lines within a hunk

When you need to stage only certain lines within a hunk, you must carefully edit the patch to maintain validity:

  1. Generate the diff: git diff <file> > tmp/full.patch
  2. Edit the patch, following these rules for the hunk you're modifying:

- Keep the @@ hunk header but adjust the line counts - To exclude an added line (+): remove the entire line from the patch - To exclude a removed line (-): change - to a space (`) to make it context - Adjust the line counts in the @@ -X,Y +X,Z @@` header to match

  1. Apply: git apply --cached tmp/selected.patch

Patch format reference

A unified diff patch has this structure:

diff --git a/file.txt b/file.txt
index abc123..def456 100644
--- a/file.txt
+++ b/file.txt
@@ -10,6 +10,8 @@ optional context label
 context line (unchanged)
-removed line
+added line
 context line (unchanged)

Hunk header format

@@ -START,COUNT +START,COUNT @@

  • First pair: original file (lines being removed or used as context)
  • Second pair: new file (lines being added or used as context)
  • COUNT = number of lines in that side of the hunk (context + changes)

Line prefixes

  • `` (space): context line (unchanged, appears in both versions)
  • -: line only in original (will be removed)
  • +: line only in new version (will be added)

Example: Staging only the second hunk

Given a file with two hunks of changes:

# Generate full diff
git diff --no-ext-diff myfile.py > tmp/full.patch

The patch might look like:

diff --git a/myfile.py b/myfile.py
index abc123..def456 100644
--- a/myfile.py
+++ b/myfile.py
@@ -5,6 +5,7 @@ import os
 def foo():
     pass
+    # Added comment in first hunk

 def bar():
@@ -20,6 +21,7 @@ def bar():
 def baz():
     pass
+    # Added comment in second hunk

To stage only the second hunk, create a new patch with just that hunk:

diff --git a/myfile.py b/myfile.py
index abc123..def456 100644
--- a/myfile.py
+++ b/myfile.py
@@ -20,6 +21,7 @@ def bar():
 def baz():
     pass
+    # Added comment in second hunk

Then apply:

git apply --cached tmp/second-hunk.patch

Example: Excluding specific added lines

If you have a hunk with multiple additions but only want to stage some:

Original hunk:

@@ -10,4 +10,7 @@
 existing line
+line I want to stage
+line I do NOT want to stage
+another line I want to stage
 more context

Edit to exclude the unwanted line (remove it entirely and adjust count):

@@ -10,4 +10,6 @@
 existing line
+line I want to stage
+another line I want to stage
 more context

Note: The +10,7 became +10,6 because we removed one added line.

Verification

After applying, verify what was staged:

git diff --cached          # Show staged changes
git diff                   # Show unstaged changes (should include excluded hunks)
git status                 # Overview of staged/unstaged state

Common pitfalls

  1. Invalid line counts: If the @@ header counts don't match the actual lines in the hunk, git apply will fail. Always recount after editing.
  2. Missing newline at EOF: Patches are sensitive to trailing newlines. Watch for \ No newline at end of file markers.
  3. Whitespace corruption: Ensure context lines start with a space, not an empty prefix. Some editors strip trailing spaces.
  4. Index mismatch: The index abc123..def456 line is optional for git apply --cached. If you have issues, try removing it.

Troubleshooting

If git apply --cached fails:

  1. Test the patch first without --cached: git apply --check tmp/selected.patch
  2. Use verbose mode to see what's happening: git apply --cached -v tmp/selected.patch
  3. Common error messages:

- "patch does not apply": Line counts are wrong or context doesn't match - "patch fragment without header": Missing the diff --git or ---/+++ lines

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.27%
按下载量换算26

Claude

32.65%
按下载量换算25

Cursor

18.24%
按下载量换算14

Gemini CLI

8.81%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

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

安装前确认

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

来源信息

继续浏览同类 Skills