Token导航 LogoToken导航TokenDH.com
运维和基础设施只读github未标认证来源可访问许可证需确认审计提醒

gitGit 版本控制

Agent Skill

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

总安装

212

周安装

9

GitHub Stars

公开资料未说明

下载量

74
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

提供 Git 提交规范化指导,按逻辑单元拆分变更与格式化消息。

  • 支持 Conventional Commit 标准与选择性暂存,提升历史可读性。
  • 适用于团队协作与自动化 CI 检查,减少合并冲突与回滚困难。
  • 需结合 git add -p 等原生命令实践,不替代版本控制基本操作。
  • git 属于运维和基础设施类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Git

Commits

Grouping

  • Group changes into cohesive commits by unit of work: one commit per logical change that could be deployed, reverted, or cherry-picked independently.
  • When a diff spans multiple concerns (feature + refactor, fix + test, rename + behavior change), split into separate commits. Stage files selectively with git add <paths>.
  • Ask yourself: "if this commit were reverted, would exactly one coherent thing disappear?" If not, split it.

Conventional Commit Format

<type>[scope]: <description>

[body]

[footer]

Types: feat, fix, docs, style, refactor, perf, test, build, ci, chore, revert.

  • Derive type and scope from the diff, not from the user's words.
  • Description: imperative mood, present tense, under 72 chars. "add", not "added" or "adds".
  • Body: explain *why*, not *what*. The diff already shows the what.
  • Breaking changes: add ! after type/scope and a BREAKING CHANGE: footer.
  • Reference issues in the footer: Closes #123, Refs #456.

Authoring

  • Read author name and email from git config user.name and git config user.email before every commit. Use those values exclusively - never substitute another identity.
  • Commits are the user's work. Omit Co-Authored-By trailers for LLMs.
  • Honor the user's signing config (commit.gpgsign, user.signingkey). Never pass --no-gpg-sign or -c commit.gpgsign=false.

Safety

  • Read git diff --staged (or git diff when nothing is staged) and git status --porcelain before committing.
  • Stage files explicitly by path. Avoid git add -A or git add. to prevent leaking secrets or binaries.
  • Leave hooks enabled. When a hook fails, fix the issue and create a new commit - never amend the failed one.
  • Reserve destructive commands (--force, reset --hard, clean -f, branch -D) for explicit user requests.

Pull Requests

Title

  • Use conventional commit format: <type>[scope]: <description>.
  • Keep under 70 characters. Put detail in the body.

Body

## Summary
<1-3 bullet points explaining why this change exists>

## Changes
<Bullet list of what changed, grouped logically>

## Test plan
<How to verify correctness>
  • Write the summary from all commits on the branch, not just the latest one.
  • Link related issues: Closes #N, Refs #N.

gh CLI

  • Use gh pr create --title "..." --body "..." with a heredoc for multi-line bodies.
  • Use gh pr view, gh pr checks, gh pr merge for PR lifecycle management.
  • Use gh issue list, gh issue view for issue context before writing PR descriptions.
  • Push with git push -u origin HEAD before creating a PR when the remote branch is missing.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

38.86%
按下载量换算29

Claude

27.65%
按下载量换算20

Cursor

18.83%
按下载量换算14

Gemini CLI

8.99%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

只读

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

安装前确认

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

来源信息

继续浏览同类 Skills