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

git-commitGit 提交

Agent Skill

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

总安装

212

周安装

9

GitHub Stars

公开资料未说明

下载量

74
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

AgentSkills.tonpx skills
npx skills add paulrberg/dot-claude --skill "git-commit"

简介

发现并安装 AI 代理的技能,优化 Git 提交消息生成流程。

  • 适用于 Codex、Claude、Cursor 和 Gemini CLI 中的版本控制辅助。
  • 根据变更内容自动生成清晰、规范的提交描述。
  • 安装命令:npx skills add paulrberg/dot-claude --skill "git-commit"。
  • 提交前建议人工复核,确保准确反映实际修改意图。

SKILL.md

Git Commit

Overview

Create atomic commits by staging the right files, analyzing the staged diff, composing a conventional commit message, and optionally pushing or using Graphite.

Workflow

0) Pre-flight checks

  • Verify inside a git worktree: git rev-parse --is-inside-work-tree
  • Verify not detached: git symbolic-ref HEAD
  • Verify not in rebase/merge/cherry-pick state: check for .git/rebase-merge, .git/MERGE_HEAD, .git/CHERRY_PICK_HEAD
  • If any check fails, stop with a clear error and suggested fix.

1) Collect context

  • Current branch: git branch --show-current
  • Git status: git status --short --branch
  • Initial staged diff: git diff --cached
  • Arguments: $ARGUMENTS

Note: The staged diff may become stale after staging changes; re-read git diff --cached after STEP 2.

2) Handle staging

  • If --all:

- If no changes at all: error "No changes to commit" - If unstaged changes exist: git add -A - If already staged: proceed - Log staged files with status (A/M/D)

  • Otherwise (atomic commits):

- Unstage all: git reset - Session-modified files = files edited in this Codex session - Stage only session-modified files that have actual changes - Log staged files with status (A/M/D) - If none: error "No files modified in this session"

  • Re-read staged diff: git diff --cached

3) Parse arguments

  • Flags:

- --all commit all changes - --deep deep analysis, breaking changes, concise body - --push push after commit - --stack use gt create instead of git commit (requires Graphite CLI)

  • Value arguments:

- Type keyword (any conventional type) overrides inferred type - Quoted text overrides inferred description

  • Precedence:

1. Explicit type keyword in arguments 2. Heuristic inference from diff 3. Quoted text in arguments 4. Heuristic inference from diff

4) Analyze changes

  • Default:

- Read the staged diff - Determine change type from behavior: - New functionality -> feat - Bug fix or error handling -> fix - Code reorganization without behavior change -> refactor - Documentation changes -> docs - Test additions/changes -> test - Build system (webpack, vite, esbuild configs) -> build - CI/CD pipelines (.github/workflows,.gitlab-ci) -> ci - Dependencies -> chore(deps) - Formatting/whitespace only -> style - Performance improvements -> perf - Reverting previous commit -> revert - Other maintenance -> chore - AI config (CLAUDE.md, AGENTS.md,.claude/,.gemini/,.codex/) -> ai - Infer scope only when path makes it obvious (lowercase) - Extract a specific description of what changed (not just which files)

  • If --deep:

- Deep semantic analysis; detect breaking changes - Infer scope from code structure even when path isn't clear - Check for GitHub issues in the chat transcript - Keep output concise

Conventional types: feat, fix, docs, style, refactor, test, chore, build, ci, perf, revert, ai

5) Compose message

  • Subject line (<= 50 chars): type(scope): description or type: description
  • Imperative mood ("add" not "added"), lowercase, no period
  • Describe what the change does, not which files changed
  • Default mode:

- Subject line required - Body: hyphenated lines for distinct changes - Skip body for trivial changes

  • If --deep:

- Body: 2-3 hyphenated lines max, focus on WHY - Breaking change: BREAKING CHANGE: + one-line migration note - GitHub issues: Closes #123

6) Commit

  • If --stack:

- Check command -v gt; if missing, error "Graphite CLI (gt) not found. Install: https://graphite.dev/docs/installing-the-cli" - Use gt create -m "subject" (add -m "body" only if body is non-empty)

  • Else:

- Use git commit -m "subject" (add -m "body" only if body is non-empty)

  • Output: commit hash + subject + file count summary
  • If failed: show error + suggest fix

7) Push (if --push)

  • If --stack: gt stack submit
  • Else:

- If upstream exists: git push - If no upstream: git push -u origin HEAD

  • If failed: show error + suggest fix (pull/rebase first, set upstream, check auth)

Examples

Trivial changes (subject only):

fix: correct typo in error message
style: format config file
chore(deps): bump lodash to 4.17.21

Default (subject + brief body):

feat(auth): add oauth2 login support

- Add Google and GitHub OAuth providers
- Integrate alongside existing password auth

Deep mode (concise, focused on WHY):

feat(webhooks): add retry mechanism for failed deliveries

- Prevent data loss when downstream services are temporarily unavailable

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

trae

68.54%
按下载量换算51

Claude Code

30.17%
按下载量换算22

安全审计

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

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills