Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计提醒

git-commitGit 提交

Agent Skill

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

总安装

2,352

周安装

95

GitHub Stars

33

下载量

795
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/zapier/zapier-mcp --skill 'Git Commit'

简介

git-commit 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词快速获取候选结果。

  • 它支持基于任务场景或来源线索的信息聚合,适用于 Git 提交相关的信息整理场景。
  • 通过 npx skills add 命令从 GitHub 仓库安装,具体功能以原始 SKILL.md 为准。
  • 使用前请核实权限边界、项目维护状态及可能的系统调用风险。
  • git-commit 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Git Commit

Generate Conventional Commits messages that tell a complete story for future code archeology, with Jira ticket context integration.

When to Use This Skill

Activate this skill when:

  • The user types "commit" or "git commit" (with or without slash command)
  • The user says "commit this" or "let's commit"
  • The user asks to create a commit message
  • Work is complete and ready to commit
  • The user mentions committing or pushing changes

Critical Rules

IMPORTANT: NEVER EVER ADD CO-AUTHOR TO THE GIT COMMIT MESSAGE NEVER mention Claude Code in commit messages

Workflow

1. Gather Context

First, collect information about the current state:

# Current git status
git status

# Current git diff (staged changes)
git diff --staged

# Recent commits for context
git log --oneline -5

# Current branch
git branch --show-current

2. Extract Jira Ticket Context (if applicable)

Parse the current branch name to find Jira ticket IDs using these patterns:

  • PROJ-123-feature-name
  • feature/PROJ-123-description
  • PROJ-123

If a Jira ticket ID is found:

  • Use mcp__zapier__jira_software_cloud_find_issue_by_key to fetch ticket details
  • Get title, description, acceptance criteria, comments
  • Use this context to understand the broader purpose of the changes

3. Human-in-the-Loop - Ask for Context

ALWAYS use the AskUserQuestion tool to ask WHY the change was made.

Based on the diff and Jira context (if available), generate 3-4 plausible options for why the change was made. Present these as multiple choice options using AskUserQuestion.

Example:

Question: "Why did you make these changes?"
Options:
- "Fix bug where X was causing Y"
- "Add new feature for Z"
- "Refactor to improve maintainability"
- (User can always select "Other" to provide custom explanation)

The options should be specific to the actual changes observed in the diff, not generic. Analyze the code changes to infer likely motivations.

Wait for their response and incorporate their explanation into the commit message.

4. Analyze Technical Changes

Review the staged changes to understand WHAT changed technically:

  • Files modified
  • Functions added/updated
  • Dependencies changed
  • Configuration updates

5. Create Enhanced Commit Message

Generate a commit message that tells a complete story for future code archeology:

Format:

type(scope): concise subject line describing what changed

Why this change was needed:
[Incorporate the user's explanation and Jira ticket context]

What changed:
[Technical summary of the modifications]

Problem solved:
[Explain the business/technical problem this addresses]

[If Jira ticket found] Refs: PROJ-123

Conventional Commits Types:

  • feat: new features
  • fix: bug fixes
  • docs: documentation changes
  • style: formatting, missing semicolons, etc.
  • refactor: code restructuring without changing functionality
  • test: adding or updating tests
  • chore: maintenance tasks, dependencies, build process
  • perf: performance improvements
  • ci: continuous integration changes

6. Execute Commit and Push (Requires Confirmation)

IMPORTANT: Do not use git add -A or git add. Commit only the files that are already staged and understood.

CRITICAL: The user MUST confirm before executing git commit or git push. These commands are intentionally NOT in the allowed-tools list, so the user will be prompted for approval.

After receiving the user's approval of the commit message:

  1. Commit with heredoc (for multi-line messages):
git commit -m "$(cat <<'EOF'
type(scope): subject line

Why this change was needed:
[explanation]

What changed:
[technical summary]

Problem solved:
[problem description]

Refs: PROJ-123
EOF
)"
  1. Push:
git push

Storytelling Emphasis

Create commit messages that future developers will appreciate when doing code archeology months later. The message should answer:

  • What changed? (technical summary)
  • Why was this needed? (business context, user explanation)
  • What problem does it solve? (from Jira ticket and user input)
  • How does it relate to the larger feature/project? (Jira context)

Examples

Example 1: Feature with Jira Context

feat(mcp): add tool execution timeout handling

Why this change was needed:
Tools were hanging indefinitely when external APIs failed to respond,
blocking the entire MCP server. This was causing user-facing timeouts
in the chat interface.

What changed:
- Added configurable timeout wrapper around tool execution
- Implemented graceful timeout error messages
- Updated tool registry to support per-tool timeout configuration

Problem solved:
External API failures no longer block the MCP server. Users now receive
clear timeout errors instead of indefinite hanging.

Refs: AGP-582

Example 2: Bug Fix

fix(auth): prevent token refresh race condition

Why this change was needed:
Multiple simultaneous requests were triggering concurrent token refresh
attempts, causing some requests to fail with stale tokens.

What changed:
- Added mutex lock around token refresh logic
- Implemented token refresh deduplication
- Added retry logic for failed requests during refresh

Problem solved:
Concurrent requests no longer cause authentication failures due to
token refresh race conditions.

Example 3: Refactoring

refactor(api): extract validation logic to shared module

Why this change was needed:
Input validation was duplicated across 7 different API endpoints,
making it difficult to maintain consistent validation rules.

What changed:
- Created shared validation utilities in packages/validation
- Updated all API endpoints to use shared validators
- Removed 200+ lines of duplicated validation code

Problem solved:
Validation logic is now centralized and consistent across all endpoints.
Future validation changes only need to be made in one place.

Important Notes

  • Never skip the "why" question - User context is crucial
  • Use heredoc for multi-line commits - Ensures proper formatting
  • Reference Jira tickets when found in branch name
  • Be specific in technical summaries
  • Think about the reader - someone debugging this code in 6 months
  • No co-authors - Never add "Co-Authored-By" or mention Claude Code

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.09%
按下载量换算287

Claude

32.32%
按下载量换算257

Cursor

18.02%
按下载量换算143

Gemini CLI

10.49%
按下载量换算83

安全审计

Gen Agent Trust Hub

可疑

Socket

通过

Snyk

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills