git-commit — for Claude Code git-commit, forklift-documentation, community, for Claude Code, ide skills, forklift, upstream, git diff --staged, git status, The title line is

v1.0.0

Об этом навыке

Подходящий сценарий: Ideal for AI agents that need git commit message skill. Локализованное описание: Forklift documentation # Git Commit Message Skill Workflow Run git diff --staged (and git status) to understand the changes. It covers forklift, forklift-documentation, upstream workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

Возможности

Git Commit Message Skill
Run git diff --staged (and git status) to understand the changes.
Determine whether an MTV Jira issue applies. Ask the user for the MTV issue number if not already
Always ask the user : "Was AI used as a co-author for these changes?" If yes, append the AI
Compose the commit message using the appropriate template below.

# Ключевые темы

kubev2v kubev2v
[20]
[29]
Обновлено: 4/23/2026

Skill Overview

Start with fit, limitations, and setup before diving into the repository.

Подходящий сценарий: Ideal for AI agents that need git commit message skill. Локализованное описание: Forklift documentation # Git Commit Message Skill Workflow Run git diff --staged (and git status) to understand the changes. It covers forklift, forklift-documentation, upstream workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

Зачем использовать этот навык

Рекомендация: git-commit helps agents git commit message skill. Forklift documentation # Git Commit Message Skill Workflow Run git diff --staged (and git status) to understand the changes. This AI agent skill supports

Подходит лучше всего

Подходящий сценарий: Ideal for AI agents that need git commit message skill.

Реализуемые кейсы использования for git-commit

Сценарий использования: Applying Git Commit Message Skill
Сценарий использования: Applying Run git diff --staged (and git status) to understand the changes
Сценарий использования: Applying Determine whether an MTV Jira issue applies. Ask the user for the MTV issue number if not already

! Безопасность и ограничения

  • Ограничение: Requires repository-specific context from the skill documentation
  • Ограничение: Works best when the underlying tools and dependencies are already configured

About The Source

The section below comes from the upstream repository. Use it as supporting material alongside the fit, use-case, and installation summary on this page.

Labs-демо

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

FAQ и шаги установки

These questions and steps mirror the structured data on this page for better search understanding.

? Частые вопросы

Что такое git-commit?

Подходящий сценарий: Ideal for AI agents that need git commit message skill. Локализованное описание: Forklift documentation # Git Commit Message Skill Workflow Run git diff --staged (and git status) to understand the changes. It covers forklift, forklift-documentation, upstream workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

Как установить git-commit?

Выполните команду: npx killer-skills add kubev2v/forklift-documentation. Она работает с Cursor, Windsurf, VS Code, Claude Code и более чем 19 другими IDE.

Для чего можно использовать git-commit?

Ключевые сценарии использования: Сценарий использования: Applying Git Commit Message Skill, Сценарий использования: Applying Run git diff --staged (and git status) to understand the changes, Сценарий использования: Applying Determine whether an MTV Jira issue applies. Ask the user for the MTV issue number if not already.

Какие IDE совместимы с git-commit?

Этот навык совместим с Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Для единой установки используйте CLI Killer-Skills.

Есть ли ограничения у git-commit?

Ограничение: Requires repository-specific context from the skill documentation. Ограничение: Works best when the underlying tools and dependencies are already configured.

Как установить этот skill

  1. 1. Откройте терминал

    Откройте терминал или командную строку в директории проекта.

  2. 2. Запустите команду установки

    Выполните: npx killer-skills add kubev2v/forklift-documentation. CLI автоматически определит вашу IDE или агента и настроит навык.

  3. 3. Начните использовать skill

    Skill уже активен. Ваш AI-агент может сразу использовать git-commit в текущем проекте.

! Source Notes

This page is still useful for installation and source reference. Before using it, compare the fit, limitations, and upstream repository notes above.

Upstream Repository Material

The section below comes from the upstream repository. Use it as supporting material alongside the fit, use-case, and installation summary on this page.

Upstream Source

git-commit

Install git-commit, an AI agent skill for AI agent workflows and automation. Explore features, use cases, limitations, and setup guidance.

SKILL.md
Readonly
Upstream Repository Material
The section below comes from the upstream repository. Use it as supporting material alongside the fit, use-case, and installation summary on this page.
Upstream Source

Git Commit Message Skill

Workflow

  1. Run git diff --staged (and git status) to understand the changes.
  2. Determine whether an MTV Jira issue applies. Ask the user for the MTV issue number if not already known.
  3. Always ask the user: "Was AI used as a co-author for these changes?" If yes, append the AI co-author trailer.
  4. Compose the commit message using the appropriate template below.
  5. Commit using a HEREDOC so the multi-line message is preserved.

Template A — With MTV Issue

Use when an MTV-xxx Jira issue is associated with the change.

MTV-xxx | short description of the change

Explain why this change is needed. Focus on intent, not mechanics.

Resolves: MTV-xxx
Ref: https://issues.redhat.com/browse/MTV-xxx

Co-authored-by: AI Assistant <ai-assistant@noreply.redhat.com>

Signed-off-by: {name} <{email}>
  • The title line is: MTV-xxx | short description (imperative mood, lowercase after the pipe).
  • The body paragraph explains why, not what.
  • Resolves and Ref reference the same MTV issue.
  • Omit the Co-authored-by line if AI was not a co-author.

Template B — Without MTV Issue

Use for housekeeping work that has no Jira ticket (docs cleanup, CI tweaks, dependency bumps, etc.).

chore(type): short description of the change

Explain why this change is needed.

Resolves: none

Co-authored-by: AI Assistant <ai-assistant@noreply.redhat.com>

Signed-off-by: {name} <{email}>
  • The title follows conventional-commit style: chore(type): description. Common types: docs, ci, deps, lint, test, config.
  • Resolves: none — no Jira reference.
  • Ref line is omitted entirely.
  • Omit the Co-authored-by line if AI was not a co-author.

Commit Command

Always use a HEREDOC to preserve formatting:

bash
1git commit -m "$(cat <<'EOF' 2MTV-123 | add migration network performance guidance 3 4Document the impact of dedicated migration networks on transfer 5throughput so users can make informed network topology decisions. 6 7Resolves: MTV-123 8Ref: https://issues.redhat.com/browse/MTV-123 9 10Signed-off-by: yaacov <kobi.zamir@gmail.com> 11Co-authored-by: AI Assistant <ai-assistant@noreply.redhat.com> 12EOF 13)"

Rules

  • Get the signer identity from git config user.name / git config user.email.
  • Never fabricate an MTV issue number — ask the user.
  • Always ask whether AI co-authored before composing the message.
  • Keep the title line under 72 characters.
  • Use imperative mood in the title ("add", "fix", "update", not "added", "fixes").

Связанные навыки

Looking for an alternative to git-commit or another community skill for your workflow? Explore these related open-source skills.

Показать все

openclaw-release-maintainer

Logo of openclaw
openclaw

Локализованное описание: 🦞 # OpenClaw Release Maintainer Use this skill for release and publish-time workflow. It covers ai, assistant, crustacean workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

widget-generator

Logo of f
f

Локализованное описание: Generate customizable widget plugins for the prompts.chat feed system # Widget Generator Skill This skill guides creation of widget plugins for prompts.chat . It covers ai, artificial-intelligence, awesome-list workflows. This AI agent skill supports Claude Code, Cursor

flags

Logo of vercel
vercel

Локализованное описание: The React Framework # Feature Flags Use this skill when adding or changing framework feature flags in Next.js internals. It covers blog, browser, compiler workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

138.4k
0
Браузер

pr-review

Logo of pytorch
pytorch

Локализованное описание: Usage Modes No Argument If the user invokes /pr-review with no arguments, do not perform a review . It covers autograd, deep-learning, gpu workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

98.6k
0
Разработчик