Token导航 LogoToken导航TokenDH.com
前端设计external-servicegithub未标认证来源可访问许可证需确认审计通过

git-style-commitgit 风格提交

Agent Skill

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

总安装

256

周安装

11

GitHub Stars

公开资料未说明

下载量

90
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/agmangas/agent-skills --skill git-style-commit

简介

git-style-commit 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合围绕仓库状态和协作事项进行整理。

  • 适用于需要统一提交格式、提升日志可读性或适配自动化工具链的场景。
  • 通过 GitHub 仓库安装,使用 npx skills add 命令添加,需参考原始 README 获取详细用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Git Style-Aware Commit

This skill instructs the agent to autonomously analyze repository commit conventions, logically group pending changes into atomic commits, and generate matching commit messages.

🎯 Trigger Conditions

  • User asks to "commit changes", "save work", or "create a commit".
  • User provides specific files to commit.
  • User wants to ensure commit messages follow existing repository standards.

🛠️ Execution Steps

1. Analyze Commit Style

Run git log -n 15 --pretty=format:"%s" to detect the prevailing pattern:

  • Format: Conventional Commits (feat:, fix:), bracket prefixes ([API]), or plain text.
  • Capitalization & Tense: Sentence case, title case, lowercase; present vs. past tense.
  • Emoji Usage: Detect if Gitmoji or other emoji conventions are used.

2. Autonomously Stage Changes (Atomic Commits)

Review all pending changes (git diff and git diff --staged).

  • Logical Grouping: Do NOT blindly git add -A. Group changes into atomic, focused commits (e.g., separate bug fixes from new features).
  • Hunk-Level Staging: Simulate git add -p by staging specific files (git add <file>) or applying patch files for specific hunks.
  • Sequential Commits: Create multiple commits sequentially if changes encompass distinct logical units.

3. Generate Commit Message

Draft a concise message (subject < 72 chars) that perfectly matches the detected style.

  • Gitmoji Integration: If Gitmoji is detected, choose exactly one Gitmoji from the embedded guide below based on the dominant user-facing intent of the commit. Do not rotate emojis randomly for variety, and do not default to a small handful of familiar emojis unless they are genuinely the best fit.
  • Pick the dominant change: Prefer the primary reason the commit exists, not every file touched.
  • One emoji per atomic commit: Split unrelated work into separate commits instead of stacking multiple emojis into one subject.
  • Conventional Commits: Include appropriate scope if used in the repo (e.g., feat(auth):).

Gitmoji Quick Reference

Use this compact embedded set for the vast majority of commits:

  • Introduce new features.
  • 🐛 Fix a bug.
  • 🩹 Apply a simple fix for a non-critical issue.
  • 🚑️ Critical hotfix.
  • ♻️ Refactor code.
  • 🎨 Improve structure / format of the code.
  • ⚡️ Improve performance.
  • 🔥 Remove code or files.
  • 🚚 Move or rename resources such as files, paths, or routes.
  • 📝 Add or update documentation.
  • 💬 Add or update text and literals.
  • Add, update, or pass tests.
  • 🧪 Add a failing test.
  • 🔒️ Fix security or privacy issues.
  • 🔐 Add or update secrets.
  • 🔧 Add or update configuration files.
  • 🔨 Add or update development scripts.
  • 👷 Add or update CI build system.
  • 💚 Fix CI build.
  • 🚨 Fix compiler / linter warnings.
  • Add a dependency.
  • Remove a dependency.
  • ⬆️ Upgrade dependencies.
  • ⬇️ Downgrade dependencies.
  • 📌 Pin dependencies to specific versions.
  • 🏷️ Add or update types.
  • 🗃️ Perform database related changes.
  • 🌱 Add or update seed files.
  • 🏗️ Make architectural changes.
  • 💄 Add or update the UI and style files.
  • ♿️ Improve accessibility.
  • 📱 Work on responsive design.
  • 💥 Introduce breaking changes.
  • 🔖 Release / version tags.
  • 👽️ Update code due to external API changes.
  • 🧱 Infrastructure related changes.
  • 🧑‍💻 Improve developer experience.

For rarer commit types, use the closest semantic Gitmoji only if the repository clearly uses that broader Gitmoji vocabulary.

Gitmoji Selection Rules

  • Prefer 🐛 over 🩹 for normal bug fixes. Reserve 🩹 for very small, non-critical fixes.
  • Prefer ♻️ for behavior-preserving refactors. If behavior changes, pick the behavior change instead.
  • Prefer 🔧 for config changes and 🔨 for dev scripts/tooling. Do not use them interchangeably.
  • Prefer 👷 for CI workflow files, and 💚 when the point of the commit is fixing a broken CI run.
  • Prefer when the commit is mainly about tests. If tests only support a feature or bug fix, use or 🐛.
  • Prefer 📝 for docs-only commits. If docs accompany code, choose the code-related emoji.
  • Prefer 🚚 for renames and moves, even if imports or references also need small follow-up edits.
  • Prefer 🚨 for commits that mainly silence linter, compiler, or type-check warnings. If the same commit also fixes a real bug or adds behavior, use the bug or feature emoji instead.
  • Prefer ⬆️, ⬇️, and 📌 for dependency version changes. Use or only when the dependency itself is being added or removed.
  • Prefer 🏷️ for type-only changes. If the type update is only part of a bug fix, refactor, or feature, choose the higher-level intent instead.
  • Prefer 💬 for user-facing copy and string literal changes, and 💡 for source-code comments. Do not use 📝 unless the change is actual documentation.
  • Prefer 🗃️ for schema, migration, or database-layer changes, and 🌱 specifically for seed data. If the main change is business logic that happens to touch the database, use the business logic emoji.
  • Prefer 🏗️ for structural or architectural redesigns that reshape modules, boundaries, or system layout. Use ♻️ for smaller local refactors that stay within the existing architecture.

4. Execute Commit

Run the commit with the generated message:

git commit -m "YOUR_GENERATED_MESSAGE"

*(If multiple atomic commits were identified in Step 2, repeat Steps 3-4 for each logical group).*

⚠️ Constraints & Error Handling

  • NEVER PUSH: Stop immediately after creating the commit(s).
  • No History: If no commit history exists, default to Conventional Commits (feat:, fix:, etc.).
  • Staging/Commit Failures: If git status or git diff --staged shows issues, report the specific error to the user and halt. Do not retry automatically.
  • Verification: Print the final commit message(s) used with a success indicator (e.g., ✅ Committed: "...").

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.1%
按下载量换算31

Claude

31.6%
按下载量换算28

Cursor

16.73%
按下载量换算15

Gemini CLI

8.32%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

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

来源信息

继续浏览同类 Skills