Token导航 LogoToken导航TokenDH.com
开发敏感数据github未标认证来源可访问许可证需确认审计通过

git-commit-workflowgit 提交工作流程

Agent Skill

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

总安装

291

周安装

12

GitHub Stars

公开资料未说明

下载量

95
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/prulloac/agent-skills --skill git-commit-workflow

简介

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

  • 适合围绕仓库状态、代码变更或协作事项进行整理和分析。
  • 可在 Codex、Claude 等平台中协助跟踪项目进展和代码审查流程。
  • 安装方式:通过 npx 从 prulloac/agent-skills 仓库添加技能。
  • 注意:使用前请确认权限范围、维护状态及是否触发联网或文件读写操作。

SKILL.md

Git Commit Workflow

Overview

This skill provides a structured workflow for committing git changes that respects repository-specific guidelines and falls back to conventional commits when no guidelines exist. It ensures commits are logical, well-grouped, and follow established standards.

Workflow

Follow these steps to commit changes:

1. Read Repository Guidelines

  • Look for CONTRIBUTING, CONTRIBUTING.md, or similar files in the repository root
  • Extract commit message standards, guidelines, and any specific requirements
  • If no guidelines found, prepare to use conventional commits as fallback

2. Assess Current Changes

  • Run git status to see all modified, added, and untracked files
  • Note staged vs unstaged changes

3. Analyze Changes in Detail

  • Run git diff (and git diff --staged if needed) to understand what changes were made
  • Review the nature of changes: bug fixes, features, refactoring, documentation, etc.

4. Group Related Changes

  • Logically group files by related changes
  • See references/grouping_changes.md for guidance on grouping strategies
  • Avoid mixing unrelated changes in the same commit

5. Perform Commits

  • If CONTRIBUTING guidelines exist, follow their commit message format and grouping requirements
  • If no guidelines, use conventional commits standard: See references/conventional_commits.md
  • Stage appropriate files for each commit
  • Write descriptive commit messages
  • Run git commit with proper messages

Resources

references/

  • grouping_changes.md: Guidance on how to group related file changes into logical commits
  • conventional_commits.md: Reference for conventional commits specification

Quick Reference: Conventional Commit Format

<type>(<scope>): <subject>

<body>

<footer>

Common types:

  • feat: A new feature
  • fix: A bug fix
  • refactor: Code change that neither fixes a bug nor adds a feature
  • docs: Documentation-only changes
  • test: Adding tests or updating test logic
  • perf: Code change that improves performance
  • ci: CI/CD configuration changes
  • chore: Changes to build scripts, dependencies, or other non-source changes

Examples:

  • feat(api): add user authentication endpoints
  • fix(validation): handle null values in validation utility
  • docs: update installation instructions
  • refactor: simplify button component styling

Concrete Examples

Example 1: Multi-Step Commit with Conventional Format

Initial Repository State:

$ git status
On branch main
Your branch is ahead of 'origin/main' by 0 commits.

Changes not staged for commit:
  modified:   src/auth/login.ts
  modified:   src/auth/logout.ts
  modified:   tests/auth.test.ts
  modified:   docs/README.md
  modified:   .gitignore

Untracked files:
  src/auth/middleware.ts

Step 1: Analyze Changes

$ git diff src/auth/login.ts
  - Added password validation
  - Added JWT token generation
  - Added error handling

$ git diff src/auth/logout.ts
  - Added token cleanup
  - Added session invalidation

$ git diff tests/auth.test.ts
  - Added tests for login validation
  - Added tests for logout flow

$ git diff docs/README.md
  - Updated authentication section
  - Added examples

$ git diff .gitignore
  - Added .env.local to ignore rules

Step 2: Group Related Changes

Group 1 (Feature: Authentication):

  • src/auth/login.ts
  • src/auth/logout.ts
  • src/auth/middleware.ts

Group 2 (Tests):

  • tests/auth.test.ts

Group 3 (Documentation):

  • docs/README.md

Group 4 (Configuration):

  • .gitignore

Step 3-4: Create Commits

$ git add src/auth/login.ts src/auth/logout.ts src/auth/middleware.ts
$ git commit -m "feat(auth): implement user login and logout endpoints

- Add password validation with bcrypt hashing
- Implement JWT token generation and refresh
- Add logout handler for session cleanup
- Include middleware for authentication checks
- Improve error handling with specific error codes"

[main a1b2c3d] feat(auth): implement user login and logout endpoints
 3 files changed, 245 insertions(+), 12 deletions(-)

$ git add tests/auth.test.ts
$ git commit -m "test(auth): add comprehensive authentication tests

- Add tests for login validation
- Add tests for password requirements
- Add tests for JWT token generation
- Add tests for logout flow and cleanup
- Achieve 95% coverage for auth module"

[main d4e5f6g] test(auth): add comprehensive authentication tests
 1 file changed, 189 insertions(+)

$ git add docs/README.md
$ git commit -m "docs: update authentication documentation

- Add authentication setup guide
- Include usage examples for login endpoint
- Update API reference section
- Add troubleshooting for common auth errors"

[main h7i8j9k] docs: update authentication documentation
 1 file changed, 67 insertions(+)

$ git add .gitignore
$ git commit -m "chore: update .gitignore for environment files

- Add .env.local to ignore rules
- Add .env.*.local pattern for local overrides"

[main l0m1n2o] chore: update .gitignore for environment files
 1 file changed, 3 insertions(+)

Final Result:

$ git log --oneline -4
l0m1n2o chore: update .gitignore for environment files
h7i8j9k docs: update authentication documentation
d4e5f6g test(auth): add comprehensive authentication tests
a1b2c3d feat(auth): implement user login and logout endpoints

$ git status
On branch main
Your branch is ahead of 'origin/main' by 4 commits.
  (use "git push" to publish your local commits)

nothing to commit, working tree clean

Example 2: Bug Fix with Related Test Update

Initial State:

$ git status
On branch main
Changes not staged for commit:
  modified:   src/utils/date-parser.ts
  modified:   tests/utils/date-parser.test.ts

$ git diff src/utils/date-parser.ts
  - Fixed timezone handling for UTC offsets
  - Fixed leap year calculation
  - Added validation for invalid dates

Commit Process:

$ git add src/utils/date-parser.ts tests/utils/date-parser.test.ts
$ git commit -m "fix(utils): correct date parsing for timezone offsets

- Fix UTC offset parsing to correctly handle +/-HH:MM format
- Fix leap year calculation for years divisible by 400
- Add validation to reject invalid date strings
- Update tests with edge cases for timezone handling
- Fixes issue #456: Date parsing fails with +05:30 timezone"

[main p3q4r5s] fix(utils): correct date parsing for timezone offsets
 2 files changed, 45 insertions(+), 8 deletions(-)

Output Summary:

✅ COMMIT SUCCESSFUL

Commit: p3q4r5s
Type: fix (Bug Fix)
Scope: utils
Subject: correct date parsing for timezone offsets

Files Changed: 2
- src/utils/date-parser.ts (45 +, 8 -)
- tests/utils/date-parser.test.ts (8 +, 2 -)

Files Staged: 2/2
Working Directory: Clean

Example 3: Refactoring with Multiple Files

Initial State:

$ git status
On branch main
Changes not staged for commit:
  modified:   src/components/Button.tsx
  modified:   src/components/Form.tsx
  modified:   src/styles/colors.css
  modified:   tests/components/Button.test.tsx
  modified:   tests/components/Form.test.tsx

$ git diff --stat
 src/components/Button.tsx       | 42 ++++++++++++++
 src/components/Form.tsx         | 38 ++++++------
 src/styles/colors.css           | 15 +++--
 tests/components/Button.test.tsx | 22 +++++++
 tests/components/Form.test.tsx   | 18 +++---

Commit Process:

$ git add src/components/Button.tsx src/components/Form.tsx src/styles/colors.css
$ git commit -m "refactor: extract shared styling logic to utility functions

- Extract color constants to dedicated CSS module
- Simplify Button component styling with utility functions
- Reduce CSS duplication in Form component
- Improve maintainability and theme customization
- Maintains 100% backward compatibility"

[main t6u7v8w] refactor: extract shared styling logic to utility functions
 3 files changed, 95 insertions(+)

$ git add tests/components/Button.test.tsx tests/components/Form.test.tsx
$ git commit -m "test(components): update tests after styling refactor

- Update Button component tests for new structure
- Update Form component tests for utility functions
- Add tests for color utility functions
- Maintain 100% code coverage"

[main x9y0z1a] test(components): update tests after styling refactor
 2 files changed, 40 insertions(+)

Commit History View:

$ git log --oneline -2
x9y0z1a test(components): update tests after styling refactor
t6u7v8w refactor: extract shared styling logic to utility functions

$ git log --graph --oneline --all -5
* x9y0z1a test(components): update tests after styling refactor
* t6u7v8w refactor: extract shared styling logic to utility functions
* d4e5f6g Previous commit
* ...

Validation Checklist

After creating commits, verify:

  • ✅ All changes are committed (working tree is clean)
  • ✅ Each commit has a single, logical purpose
  • ✅ Commit messages follow the repository's guidelines (or conventional commits)
  • ✅ Related files are grouped together in commits
  • ✅ No unrelated changes are mixed in the same commit
  • ✅ Commit messages are clear and descriptive
  • ✅ Commit history is logical and easy to understand
  • ✅ No sensitive information (keys, passwords) in commits

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.65%
按下载量换算36

Claude

31.87%
按下载量换算30

Cursor

18.06%
按下载量换算17

Gemini CLI

9.86%
按下载量换算9

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills