Token导航 LogoToken导航TokenDH.com
运维和基础设施需要联网github未标认证来源可访问clear审计通过

commit提交

Agent Skill

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

总安装

306

周安装

13

GitHub Stars

公开资料未说明

下载量

107
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/pitzcarraldo/skills --skill commit

简介

commit 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。

  • 它标准化提交流程,确保代码变更可追溯且符合规范。
  • 可通过 npx skills add 命令从指定 GitHub 仓库安装,需结合原始 README 确认具体调用方式。
  • 安装前建议核实权限范围、维护状态,以及是否涉及联网、命令执行或文件读写操作。
  • commit 属于运维和基础设施类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Conventional Commit Skill

Overview

This skill automatically analyzes staged Git changes and creates commits following the Conventional Commits specification. It examines the changes, determines the appropriate commit type and scope, and generates a well-structured commit message without requiring user input.

Supported Commit Types

TypePurposeExample
featNew featureAdding user authentication
fixBug fixFixing null pointer exception
docsDocumentationUpdating README
styleFormatting changesCode style, whitespace
refactorCode restructuringExtract function to module
perfPerformanceOptimize database queries
testTestingAdd unit tests
buildBuild systemUpdate dependencies
ciCI/CDModify GitHub Actions
choreMaintenanceUpdate tooling

Commit Message Format

<type>(<scope>): <description>

[optional body explaining WHY the change was made]

[optional footer(s)]

Format Rules:

  • Type: Required, lowercase, from supported types table
  • Scope: Optional, component/module name in parentheses
  • Description: Required, imperative mood, lowercase, no period, under 72 chars
  • Body: Optional, wrapped at 72 characters, explains motivation
  • Footer: Optional, for references or metadata

Author Policy:

  • Do NOT add Co-Authored-By: Only the current user should be the author
  • Claude assistance should not be credited in commit metadata

Workflow

1. Verify Git Repository

Check if we're in a git repository:

git rev-parse --git-dir 2>&1

Expected output:

  • Success: .git or path to git directory
  • Failure: "not a git repository" error

Error message format:

Error: Not in a git repository
Please initialize git with: git init

2. Check Staged Changes

Run these commands in parallel to gather context:

git diff --cached --stat
git diff --cached
git log --oneline -5

Purpose:

  • --cached --stat: Summary of staged files
  • --cached: Detailed line-by-line changes
  • log --oneline -5: Recent commit messages for style consistency

If no staged changes:

No files are staged for commit.

Stage files with:
  git add <file>           # Stage specific file
  git add .                # Stage all changes
  git add -p               # Stage interactively

3. Analyze Changes

Determine commit type based on:

  1. File patterns:

- README.md, *.md in docs/ → docs - package.json, Gemfilebuild - .github/workflows/ci - *_test.js, *_spec.rbtest

  1. Change patterns:

- New files/functions → feat - Bug keywords (fix, bug, issue) → fix - Refactor keywords (extract, move, rename) → refactor - Performance keywords (optimize, cache) → perf - Style keywords (format, lint) → style

  1. Scope determination:

- Extract from file paths (e.g., src/auth/auth) - Use module/component names - Omit if changes span multiple components

  1. Description generation:

- Use imperative mood: "add", "fix", "update" - Start with verb, lowercase - Be specific but concise - No period at end - Keep under 72 characters

4. Generate Commit Message

Basic commit (no body needed):

git commit -m "$(cat <<'EOF'
<type>(<scope>): <description>
EOF
)"

Complex commit (with body):

git commit -m "$(cat <<'EOF'
<type>(<scope>): <description>

Detailed explanation of WHY this change was made.
Wrap at 72 characters for readability.
Use multiple paragraphs if needed.
EOF
)"

When to include body:

  • Complex refactoring that needs context
  • Bug fixes requiring explanation of root cause
  • Breaking changes that need migration notes
  • Non-obvious design decisions

5. Create and Verify Commit

Create the commit:

git commit -m "$(cat <<'EOF'
[generated message]
EOF
)"

Verify the commit:

git log -1 --pretty=format:"%h - %s%n%n%b"

Display to user:

✓ Commit created successfully

[short hash] - [commit subject]

[commit body if present]

Output Format

All commit operations follow this consistent format:

Analyzing staged changes...

Files changed:
  [file list from git diff --cached --stat]

Creating commit with message:
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
<type>(<scope>): <description>

[body]
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

✓ Commit created: [hash]

Examples

Example 1: Simple Feature Addition

Staged changes:

+ src/auth/passwordReset.ts (new file)
+ 45 lines

Generated commit:

feat(auth): add password reset functionality

Example 2: Bug Fix with Context

Staged changes:

M src/api/userProfile.ts
- return user.profile
+ return user.profile || defaultProfile

Generated commit:

fix(api): handle null values in user profile endpoint

Previously the endpoint would crash when users had incomplete profiles.
Added fallback to default profile object to prevent null reference errors.

Example 3: Documentation Update

Staged changes:

M README.md
+ Installation section
+ 20 lines added

Generated commit:

docs: add installation instructions to readme

Example 4: Refactoring

Staged changes:

M src/utils/validation.ts
M src/components/Form.tsx
+ src/utils/validators.ts (new file)

Generated commit:

refactor(utils): extract validation logic into separate module

Moved reusable validators to dedicated module for better code organization
and to enable reuse across multiple components.

Example 5: Multiple File Changes

Staged changes:

M src/components/Button.tsx
M src/components/Input.tsx
M src/styles/global.css

Generated commit:

style: apply consistent formatting to component files

Technical Requirements

Required Tools

ToolPurposeCheck Command
GitVersion controlgit --version
Git ConfigUser identitygit config user.name && git config user.email

Minimum Versions

  • Git: 2.0 or higher
  • Bash: 4.0 or higher (for HEREDOC support)

Best Practices

  1. Analyze recent commits to match repository's commit style
  2. Keep descriptions concise but meaningful
  3. Use scope consistently within a project
  4. Add body for complex changes to explain reasoning
  5. Group related changes in a single commit when logical
  6. Review the generated message before confirming

Limitations

  1. Single commit only: Creates one commit for all staged changes
  2. No interactive editing: Commit message is generated automatically
  3. English descriptions: Generates descriptions in English by default
  4. No push operation: Only creates local commit, does not push to remote
  5. No commit signing: Does not add GPG signatures automatically

Error Handling

Common Errors and Solutions

Error: Not a git repository

  • Cause: Current directory is not initialized with git
  • Solution: Run git init or navigate to a git repository

Error: No staged files

  • Cause: No files added to staging area
  • Solution: Stage files with git add <file> or git add.

Error: User identity unknown

  • Cause: Git user.name or user.email not configured
  • Solution: Configure with: git config --global user.name "Your Name" git config --global user.email "you@example.com"

Error: Empty commit message

  • Cause: Commit message generation failed
  • Solution: Ensure staged changes are readable with git diff --cached

Error: Hook failed

  • Cause: Pre-commit hook or commit-msg hook rejected the commit
  • Solution: Fix issues reported by hook or use --no-verify if appropriate

Advanced Usage

Breaking Changes

For breaking changes, add an exclamation mark after type/scope and include BREAKING CHANGE in footer.

Multiple Scopes

If changes affect multiple scopes but are tightly related, use comma-separated scopes.

Issue References

Include issue references in body or footer (e.g., Fixes #123 or Closes #456).

References

Notes

  • Commits are created locally only; use separate command to push
  • Only the current user is credited as the author (no Co-Authored-By)
  • Scope is optional but recommended for larger projects
  • Description must use imperative mood (not past tense)
  • Multi-line descriptions are not allowed (use body instead)
  • The skill operates autonomously without prompting for input

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Claude Code

29.89%
按下载量换算32

OpenCode

24.36%
按下载量换算26

Codex

18.68%
按下载量换算20

Antigravity

13.15%
按下载量换算14

Gemini CLI

7.76%
按下载量换算8

windsurf

3.16%
按下载量换算3

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills