git-conventions — community git-conventions, openspec-example-moneylog, community, ide skills, Claude Code, Cursor, Windsurf

v1.0

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

Идеально подходит для агентов контроля версий, требующих стандартизированного форматирования сообщений о фиксации и управления операциями Git. OpenSpecによる仕様駆動開発ハンズオン

ubnt-intrepid ubnt-intrepid
[0]
[0]
Updated: 3/19/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 9/11

This page remains useful for operators, but Killer-Skills treats it as reference material instead of a primary organic landing page.

Original recommendation layer Concrete use-case guidance Explicit limitations and caution Quality floor passed for review
Review Score
9/11
Quality Score
60
Canonical Locale
en
Detected Body Locale
en

Идеально подходит для агентов контроля версий, требующих стандартизированного форматирования сообщений о фиксации и управления операциями Git. OpenSpecによる仕様駆動開発ハンズオン

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

Наделяет агентов возможностью поддерживать последовательные и ясные истории фиксации с использованием формата Conventional Commits, обеспечивая эффективное управление проектом и сотрудничество посредством стандартизированных аннотаций типа, таких как 'feat' и 'fix'.

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

Идеально подходит для агентов контроля версий, требующих стандартизированного форматирования сообщений о фиксации и управления операциями Git.

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

Стандартизация сообщений о фиксации с использованием синтаксиса Conventional Commits
Автоматизация аудита операций Git для обеспечения соответствия проектным конвенциям
Генерация отчетов о фиксации на основе аннотаций типа и области

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

  • Требует соблюдения спецификации Conventional Commits
  • Ограничен системой контроля версий Git

Why this page is reference-only

  • - Current locale does not satisfy the locale-governance contract.

Source Boundary

The section below is supporting source material from the upstream repository. Use the Killer-Skills review above as the primary decision layer.

Labs Demo

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 & Installation Steps

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

? Frequently Asked Questions

What is git-conventions?

Идеально подходит для агентов контроля версий, требующих стандартизированного форматирования сообщений о фиксации и управления операциями Git. OpenSpecによる仕様駆動開発ハンズオン

How do I install git-conventions?

Run the command: npx killer-skills add ubnt-intrepid/openspec-example-moneylog/git-conventions. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for git-conventions?

Key use cases include: Стандартизация сообщений о фиксации с использованием синтаксиса Conventional Commits, Автоматизация аудита операций Git для обеспечения соответствия проектным конвенциям, Генерация отчетов о фиксации на основе аннотаций типа и области.

Which IDEs are compatible with git-conventions?

This skill is compatible with 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. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for git-conventions?

Требует соблюдения спецификации Conventional Commits. Ограничен системой контроля версий Git.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add ubnt-intrepid/openspec-example-moneylog/git-conventions. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use git-conventions immediately in the current project.

! Reference-Only Mode

This page remains useful for installation and reference, but Killer-Skills no longer treats it as a primary indexable landing page. Read the review above before relying on the upstream repository instructions.

Imported Repository Instructions

The section below is supporting source material from the upstream repository. Use the Killer-Skills review above as the primary decision layer.

Supporting Evidence

git-conventions

Install git-conventions, an AI agent skill for AI agent workflows and automation. Works with Claude Code, Cursor, and Windsurf with one-command setup.

SKILL.md
Readonly
Imported Repository Instructions
The section below is supporting source material from the upstream repository. Use the Killer-Skills review above as the primary decision layer.
Supporting Evidence

Git Conventions

These conventions MUST be followed when performing any Git operations in this project.


Commit Messages

Use Conventional Commits format:

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

[optional body]

[optional footer(s)]

Types

TypeWhen to use
featA new feature
fixA bug fix
docsDocumentation only changes
styleFormatting, missing semicolons, etc (no logic)
refactorCode change that neither fixes a bug nor adds a feature
testAdding or updating tests
choreBuild process, dependencies, tooling changes
ciCI/CD configuration changes
perfPerformance improvements

Rules

  • Write commit messages in English
  • Use the imperative mood in the description (e.g., "add feature" not "added feature")
  • Keep the first line under 72 characters
  • Minimize use of the optional body — most commits should be a single subject line
  • When a body is used, describe only why the change was made, not what was changed. The "what" is already visible in the diff — do not repeat it
  • When an AI agent authors or co-authors the commit, include a Co-Authored-By footer with the agent's name and model identifier (e.g., Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>)

Command

Stage specific files and commit using a HEREDOC for the message:

bash
1git add <file1> <file2> ... 2git commit -m "$(cat <<'EOF' 3<type>(<optional scope>): <description> 4 5[optional body] 6 7Co-Authored-By: <Agent Name> <email> 8EOF 9)"

Examples

feat: add monthly expense summary view

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
fix: handle empty input gracefully

Co-Authored-By: GPT-4o <noreply@openai.com>
fix: correct date parsing for transaction import
refactor: extract validation logic into shared module

Previous approach duplicated validation across three endpoints,
making it easy to introduce inconsistent behavior when rules change.

Branch Naming

Use the format: <type>/<description>

  • Use kebab-case for the description
  • Keep it concise but descriptive
  • Use the same type prefixes as commit messages

Examples

feat/add-expense-categories
fix/date-parsing-error
docs/update-api-reference
chore/upgrade-dependencies
refactor/simplify-transaction-model

Pull Requests

Merge Strategy

Use merge commits (not squash or rebase). This preserves the full commit history of the branch.

PR Guidelines

  • PR title should follow Conventional Commits format
  • PR description should summarize what changed and why
  • Keep PRs focused on a single concern
  • Do not include information that is already visible elsewhere on the PR or that becomes stale when the branch is updated. Specifically:
    • CI-verifiable facts (e.g., "all tests pass", "no clippy warnings") — visible in CI status checks
    • Lists of changed files — visible in the "Files changed" tab
    • Task checklists or test plans — tracked in CI

Command

Push and create PR using gh:

bash
1git push -u origin <branch-name> 2gh pr create --title "<type>(<optional scope>): <description>" --body "$(cat <<'EOF' 3<summary of what changed and why> 4 5🤖 Generated with <agent name and link> 6EOF 7)"

Protected Operations

  • NEVER force push (git push --force or --force-with-lease) to main or master
  • NEVER use git reset --hard on shared branches
  • Always confirm with the user before performing destructive Git operations

References

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

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

Показать все

openclaw-release-maintainer

Logo of openclaw
openclaw

Your own personal AI assistant. Any OS. Any Platform. The lobster way. 🦞

widget-generator

Logo of f
f

Создание настраиваемых плагинов виджетов для системы ленты новостей prompts.chat

flags

Logo of vercel
vercel

Фреймворк React

138.4k
0
Браузер

pr-review

Logo of pytorch
pytorch

Tensors and Dynamic neural networks in Python with strong GPU acceleration

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