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

git-commitGit 提交

Agent Skill

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

总安装

238

周安装

10

GitHub Stars

公开资料未说明

下载量

83
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/totto2727-dotfiles/agents --skill git-commit

简介

git-commit 用于根据关键词、任务场景或来源线索查找、检索和筛选信息。

  • 它适用于 Codex、Claude、Cursor 等宿主环境中的信息定位需求。
  • 可通过 npx skills add 命令从 tottot2727-dotfiles/agents 仓库安装使用。
  • 使用前应确认权限范围、维护状态及是否触发联网或文件操作。
  • git-commit 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Git Commit Command

IMPORTANT: This skill MUST ALWAYS be applied when creating git commits, even if the user does not explicitly request it.

This skill analyzes git changes and creates appropriately granular commits with Conventional Commits format messages. It should be automatically invoked whenever you need to create commits, stage files, or handle git changes.

Workflow

This skill must be applied automatically whenever you create git commits, regardless of user instructions.

When creating commits:

  1. Gather Information: git status git diff --staged git diff git log --oneline -10
  2. Analyze Changes:

- Review staged and unstaged changes - Identify logically distinct change groups - Detect language pattern from recent commits (git log)

  1. Create Granular Commits:

- Group related changes logically - Create separate commits for each group - Use Conventional Commits format

Requirements

1. GPG Signing (CRITICAL)

Commits without GPG signatures are strictly prohibited. Never use --no-gpg-sign or disable signing.

If a GPG signing error or hang occurs:

  1. Stop all work immediately
  2. Report the error message and current state
  3. Do not attempt workarounds or unsigned commits

2. Granular Commits

Create separate commits for logically distinct changes. Do not combine unrelated modifications into a single commit.

3. Conventional Commits Format

Use format: type(scope): description

Types:

  • feat: New feature
  • fix: Bug fix
  • docs: Documentation changes
  • style: Code style changes (formatting, missing semicolons, etc.)
  • refactor: Code refactoring
  • test: Adding or updating tests
  • chore: Maintenance tasks
  • build: Build system changes
  • ci: CI/CD changes
  • perf: Performance improvements

Scope: Optional, indicates what is being modified (e.g., auth, cart, payment)

Description: Concise description in present tense, lowercase (except proper nouns)

4. Language Detection

Analyze recent commit messages from git log --oneline -10 to determine the language pattern used in the repository. Follow the same language for new commit messages.

5. Direct File Modification Prohibited

Do not use file editing tools (e.g., write, search_replace) to modify files directly. Always use git commands to stage and commit changes:

  • Use git add <file> or git add -p for staging
  • Use git apply --cached when staging specific hunks from diffs
  • Use git commit for creating commits

6. Process

  1. Analyze all changes (staged and unstaged)
  2. Group related changes logically
  3. Stage and commit each group separately using git commands
  4. Provide clear explanations for each commit

Tips

  • Use git diff to see changes
  • Use git apply --cached <patch-file> to stage only necessary changes
  • If git apply --cached fails, run git diff again and recreate the diff file
  • Use git add -p for interactive staging when needed
  • Review each commit message before finalizing

Examples

Example 1: Multiple unrelated changes

Changes detected:
- Added new authentication endpoint
- Fixed cart calculation bug
- Updated README documentation

Creates 3 separate commits:
1. feat(auth): add login endpoint
2. fix(cart): correct price calculation
3. docs: update README with setup instructions

Example 2: Related changes grouped together

Changes detected:
- Added product search function
- Added product search tests
- Updated product search documentation

Creates 1 commit:
feat(product): implement search functionality

Example 3: Language detection

Recent commits show Japanese messages:
- feat: add authentication feature
- fix: fix cart calculation bug

Follows detected pattern:
- feat: add product search functionality

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.08%
按下载量换算28

Claude

29.69%
按下载量换算25

Cursor

19.54%
按下载量换算16

Gemini CLI

8.98%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

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

安装前确认

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

来源信息

继续浏览同类 Skills